/* Import Switzer Variable font */
@import url("https://fonts.cdnfonts.com/css/switzer");

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: "Switzer", sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility resets */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos].aos-animate {
    opacity: 1;
}

/* Base hidden state */
.fade-up,
.fade-down,
.fade-left,
.fade-right {
    opacity: 0;
    transition: all 1.2s ease;
    will-change: transform, opacity;
}

/* Fade Up (comes from bottom → up) */
.fade-up {
    transform: translateY(40px);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Down (comes from top → down) */
.fade-down {
    transform: translateY(-40px);
}
.fade-down.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left (comes from right → left) */
.fade-left {
    transform: translateX(40px);
}
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right (comes from left → right) */
.fade-right {
    transform: translateX(-40px);
}
.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.container {
    width: 100vw !important;
    min-width: none;
    max-width: none;
    margin: 0px !important;
    padding: 0px !important;
}

.btn-primary,
.btn-primary:hover {
    border-radius: 14px;
    background: #1e83db;
    padding: 16px 22px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    height: 46px;
}

.btn-black,
.btn-black:hover {
    border-radius: 14px;
    background: #000;
    padding: 16px 22px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    height: 46px;
}

.btn-light-grey,
.btn-light-grey:hover {
    border-radius: 14px;
    /* background: #ffffff; */
    padding: 16px 22px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.05);
    height: 46px;
}

.btn-grey,
.btn-grey:hover {
    border-radius: 14px;
    /* background: #ffffff; */
    padding: 16px 22px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    backdrop-filter: blur(15px);
    background: #B0B0B0;
    height: 46px;
}

.btn-transparent,
.btn-transparent:hover {
    border-radius: 14px;
    /* border: 1px solid #ffffff67; */
    padding: 16px 22px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    height: 46px;
}

.btn-animate {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.btn-text-static {
    display: block;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s linear;
}

.btn-text-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(70%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-animate:hover .btn-text-static {
    opacity: 0;
    transform: translateY(-70%);
}

.btn-animate:hover .btn-text-hover {
    opacity: 1;
    transform: translateY(0);
}

.section {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
}

.top-bar {
    /* Noti Bar */
    height: 42px;
    width: 0px;
    background: #1c1c1c;
    font-weight: 600;
    font-style: Semibold;
    font-size: 14px;
    color: #ffffff;
    display: none !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 80px;
}

.header-section {
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 35.55%,
            #fff 100%
        ),
        url("../images/section-top-bg.png") no-repeat center / cover;
    width: 100%;
    height: 100%;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Header base */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0px;
    max-width: 1280px;
    position: relative;
    margin: auto;
    /* border: 1px solid; */
}

header .logo {
    width: 260px;
}

.logo img {
    height: auto;
    width: auto;
}

.navbar {
    display: flex;
    padding: 16px 21px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(9px);
    height: 51px;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
}
.navbar ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

/* Hamburger menu button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 3px;
}

/* Sidebar nav (hidden by default) */
.sidenav {
    position: fixed;
    top: 65px;
    left: -250px;
    width: 250px;
    height: auto;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(9px);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    padding: 50px 20px;
    transition: left 0.3s ease;
    z-index: 1000;
}

.sidenav.active {
    left: 0; /* slide in */
}

.sidenav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.sidenav ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

/* Close button inside sidebar */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

/* Overlay background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 920px) {
    header {
        justify-content: space-between;
        width: 100%;
    }

    .hamburger {
        display: flex; /* visible on small screens */
    }

    .logo {
        /* position: absolute;
        left: 50%;
        transform: translateX(-50%); */
        display: none;
    }

    .action-btns {
        display: flex;
        gap: 10px;
    }

    .navbar {
        display: none;
    }
}

.hero-section {
    width: 100%;
    height: auto;
    padding: 100px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    max-width: 1280px;
    /* gap: 30px; */
    /* border: 1px solid; */
}

.hero-section .left,
.hero-section .right {
    /* flex: 1; */ /* makes both take equal width */
}

.hero-section .right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .right img {
    width: 100%;
    height: auto;
}

.hero-section .left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    width: 546px !important;
}

.hero-section .left .title {
    font-weight: 450;
    font-size: 80px;
    line-height: 90px;
    letter-spacing: -3%;
    color: #000;
}

.text-brand {
    color: #1e83db;
}

.hero-section .sub-title {
    font-weight: 400;
    font-size: 21px;
    line-height: 34px;
    letter-spacing: -3%;
    color: #00000080;
}

.header-section .action-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hero-section .rating {
    display: flex;
    flex-direction: row;
    gap: 35px;
}

.header-section .rating .text {
    font-weight: 400;
    font-size: 16px;
}

.companies {
    padding: 82px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1280px;
    width: 100%;
    gap: 42px;
    margin: auto;
    /* border: 1px solid; */
}

.companies .text {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -3%;
    text-align: center;
    color: #000;
}

.companies .logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
}

.about-section {
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1280px;
    width: 100%;
    margin: auto;
    /* border: 1px solid black; */
}

.tag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    border: 1.5px solid rgba(28, 28, 28, 0.1);
    border-radius: 7px;
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    letter-spacing: -0.03em;
    color: rgba(28, 28, 28, 0.5);
    width: fit-content;
    height: 32px;
}

.about-section .title {
    font-weight: 400;
    font-size: 52px;
    line-height: 100%;
    letter-spacing: -1%;
    max-width: 711px;
    text-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 40px;
}

.about-section .text {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;
    font-weight: 400;
    font-size: 20px;
    color: rgba(28, 28, 28, 0.5);
    margin-bottom: 10px;
}

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

.stats-section {
    padding: 64px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1280px;
    margin: auto;
    /* border: 1px solid black; */
}

.stats-section .stat-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    width: 290.02px;
}

.stat-box .top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.stat-box .title {
    font-weight: 600;
    font-size: 30px;
    display: flex;
    align-items: center;
    color: #313131;
}

.stat-box .bottom {
    font-weight: 400;
    font-size: 20px;
    display: flex;
    align-items: center;
    color: #52525b;
}

.pricing-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 80px;
    gap: 30px;
    /* background: rgba(196, 225, 247, 0.1); */
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 35.55%,
            #fff 100%
        ),
        url("../images/section-top-bg.png") no-repeat center / cover;
}

.pricing-section .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pricing-section .title {
    font-weight: 400;
    font-size: 52px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.01em;
    color: #1c1c1c;
}

.pricing-section .sub-title {
    font-weight: 400;
    font-size: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.02px;
    color: #7a7a7b;
}

.pricing-section .table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    height: 506px;
    border-radius: 24px;
    padding: 1px;
    border-width: stroke weight/1;
    /* border: 1px solid; */
}

.pricing-table {
    border-collapse: collapse;
    border: 1px solid white;
    width: 100%;
    max-width: 1280px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 16px 20px;
    text-align: center;
    border: none;
    height: 72px;
    font-weight: 400;
    font-size: 16px;
    align-items: center;
    color: #1c1c1c;
}

.pricing-table th {
    background: #f9f9f9;
    font-weight: 700;
    font-size: 15.75px;
    align-items: center;
    color: #1c1c1c;
}

.pricing-table td {
    background: #fff;
}

.pricing-table td:first-child,
.pricing-table th:first-child {
    text-align: left;
}

.highlight {
    background: #1e83db26 !important;
}

.checkmark {
    font-size: 18px;
    color: black;
}

.cross {
    font-size: 18px;
    color: #555;
}

.unlock-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 0px;
    gap: 94px;
    max-width: 1280px;
    margin: auto;
    /* border: 1px solid; */
}

.unlock-section .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18.98px 0px 0px;
    gap: 20px;
}

.unlock-section .top .title {
    width: 592px;
    text-wrap: wrap;
    font-weight: 400;
    font-size: 52px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.01em;
    color: #1c1c1c;
    line-height: 70px;
}

.unlock-section .bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 94px;
    width: 100%;
}

.unlock-section .sub-sec {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 50px 0px;
    width: 100%;
    margin: auto;
}

.sub-sec .left,
.sub-sec .right {
    flex: 1; /* makes both take equal width */
}

.sub-sec .left {
    gap: 12px;
    width: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 150px;
}

.sub-sec .left .title {
    font-weight: 400;
    font-size: 52px;
    line-height: 69px;
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
    color: #1c1c1c;
}

.sub-sec .left .text {
    font-weight: 400;
    font-size: 20.1797px;
    line-height: 28px;
    display: flex;
    align-items: center;
    letter-spacing: -0.021px;
    color: #7a7a7b;
    margin-bottom: 18px;
}

.sub-sec .right {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.sub-sec .right.one {
    background: url("../images/sub1-bg.jpg") no-repeat center / cover;
}

.sub-sec .right.two {
    background: url("../images/sub2-bg.jpg") no-repeat center / cover;
}

.sub-sec .right.three {
    background: url("../images/sub3-bg.jpg") no-repeat center / cover;
}

.sub-sec .right img {
    width: 591px;
}

.getst-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 90px 0px;
    gap: 40px;
    max-width: 1280px;
    margin: auto;
    /* border: 1px solid; */
}

.getst-section .title {
    font-weight: 400;
    font-size: 52px;
    line-height: 57px;
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
    color: #1c1c1c;
}

.getst-section .action-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 0px 0px;
    gap: 14px;
}

.getst-section .steps {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 0px;
    gap: 8px;
    flex-wrap: nowrap;
}

.getst-section .steps .step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 20px 40px 0px;
    gap: 16px;
}

.getst-section .steps .step .num {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    width: 62px;
    height: 62px;
    background: #e9f4fb;
    border-radius: 14px;
    font-weight: 600;
    font-size: 30.1484px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #1c1c1c;
}

.getst-section .steps .step .title {
    font-weight: 400;
    font-size: 26px;
    line-height: 26px;
    display: flex;
    align-items: center;
    letter-spacing: -0.23px;
    color: #1c1c1c;
}

.getst-section .steps .step .text {
    /* width: 400.7px; */
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    display: flex;
    align-items: center;
    letter-spacing: -0.02px;
    color: #7a7a7b;
}

.feedback-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0px;
    gap: 0px;
    /* border: 1px solid; */
    max-width: 1280px;
    width: 100%;
    margin: auto;
}

.feedback-section .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.feedback-section .title {
    font-weight: 400;
    font-size: 52px;
    line-height: 60px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.01em;
    color: #1c1c1c;
}

.testimonial-grid {
    display: flex;
    gap: 20px;
    max-width: 1280px;
    margin: auto;
    padding-top: 40px;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* .testimonial-grid .column {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    width: auto;
    gap: 24px;
} */

.testimonial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    gap: 24px;
    width: 355px;
    height: 300px;
    background: rgba(216, 227, 238, 0.3);
    border-radius: 24px;
}

.testimonial .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    display: flex;
    align-items: center;
    letter-spacing: -0.02px;
    color: #1c1c1c;
    width: 100%;
}

.testimonial .credit {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px;
    width: 100%;
    gap: 8px;
}

.credit .img img {
    width: 42px;
    height: 42px;
    border-radius: 42px;
}

.credit .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    display: flex;
    align-items: flex-start;
    letter-spacing: -0.02px;
    color: #1c1c1c;
    display: flex;
    flex-direction: column;
}

.bottom-section {
    background: url("../images/bg.png") no-repeat center / cover;
}

.try-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0px;
    gap: 40px;
    max-width: 1280px;
    margin: auto;
    /* border: 1px solid; */
    width: 100%;
}

.try-section .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 150px;
    gap: 20px;
}

.try-section .top .title {
    font-weight: 400;
    font-size: 52px;
    line-height: 60px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.01em;
    color: #1c1c1c;
}

.try-section .top .sub-title {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.02px;
    color: #7a7a7b;
}

.try-section .cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    flex-wrap: wrap;
}

.try-section .card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 24px;
    width: 336px;
    /* height: 226px; */
    background: linear-gradient(
        206.24deg,
        rgba(196, 222, 254, 0.7) 3.73%,
        rgba(250, 250, 250, 0.7) 69.77%
    );
    border: 1px solid rgba(28, 28, 28, 0.1);
    border-radius: 16px;
}

.try-section .card .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
}

.try-section .card .title {
    font-weight: 400;
    font-size: 20.7969px;
    line-height: 26px;
    display: flex;
    align-items: center;
    letter-spacing: -0.22px;
    color: #1c1c1c;
}

.try-section .card .sub-title {
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    display: flex;
    align-items: center;
    color: #1c1c1c;
}

.try-section .action-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 0px 0px;
    gap: 14px;
}

.footer {
    padding: 98px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    max-width: 1280px;
    width: 100%;
    margin: auto;
    /* border: 1px solid; */
}

.footer .col-three {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    margin: 0 auto;
}

.footer .col-three .news {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #313131;
}

.footer .col-three .text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #52525b;
}

.footer .col-three .socials {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
}

.subscribe-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 5px 10px;
    width: 280px;
    height: 40px;
    box-shadow: 0px 2px 4px 0px #0000000a;
    box-shadow: 0px 1px 2px -1px #00000014;
    box-shadow: 0px 0px 0px 1px #00000014;
}

.subscribe-box input {
    border: none;
    outline: none;
    flex: 1;
    padding: 8px 2px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #71717a;
}

.subscribe-box button {
    background: transparent;
    border: none;
    color: #000;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #1c1c1c;
}

.col-two {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.col-two .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 130px;
}

.dark {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #1c1c1c;
}

.mute {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #52525b;
}

.copy-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 25px 0px;
    gap: 10px;
    border-top: 1px solid rgba(28, 28, 28, 0.1);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1c1c1c;
}
/* Keyframe Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* General animation class */
.animate-fade {
    animation: fadeIn 1.5s ease-out forwards;
}

.animate-slide-bottom {
    animation: slideFromBottom 1.5s ease-out forwards;
}

.animate-slide-left {
    animation: slideFromLeft 1.5s ease-out forwards;
}

.animate-slide-right {
    animation: slideFromRight 1.5s ease-out forwards;
}

/*-----------------------------------------------------------------------*/

@media (min-width: 1220px) and (max-width: 1420px) {
    .hero-section {
        gap: 70px;
    }

    .stats-section {
        padding: 64px 80px;
        /* gap: 14px; */
    }

    .about-section {
        padding: 100px 80px;
    }

    .unlock-section {
        padding: 150px 80px;
    }

    .getst-section {
        padding: 90px 80px;
    }

    .footer {
        padding: 98px 80px;
        gap: 40px;
    }

    .pricing-section .table {
        width: 100%;
    }

    .unlock-section .sub-sec {
        width: 100%;
    }

    .getst-section .steps .step {
        padding: 10px 0px;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .hero-section {
        gap: 30px;
    }

    .header-section {
        padding: 0px 60px;
    }

    .hero-section .left .title {
        font-size: 60px;
        line-height: 65px;
    }

    .about-section {
        padding: 100px 80px;
    }

    .about-section img {
        width: 100%;
    }

    .stats-section {
        padding: 64px 50px;
        gap: 30px;
        flex-wrap: wrap;
    }

    .unlock-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 80px;
        gap: 30px;
        /* max-width: 1440px; */
        margin: auto;
    }

    .unlock-section .sub-sec {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        padding: 50px 0px;
        width: 100%;
        margin: auto;
        gap: 30px;
    }

    .sub-sec .left {
        gap: 12px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-right: 0px !important;
        padding-left: 0px !important;
        text-align: center;
    }

    .unlock-section .bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 30px;
        width: 100%;
    }

    .sub-sec.rev {
        flex-direction: column-reverse;
    }

    .getst-section {
        padding: 90px 80px;
    }

    .getst-section .steps {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
        padding: 0px;
        gap: 8px;
    }

    .footer {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 50px;
    }

    .footer .col-three {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 16px;
        margin: 0 auto;
        text-align: center;
    }

    .footer .col-three .text {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: #52525b;
        width: 70%;
    }

    .pricing-section .table {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 920px;
        max-width: 1200px;
        height: 506px;
        border-radius: 24px;
        padding: 1px;
        border-width: stroke weight/1;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px 0px;
        max-width: 1440px;
        position: relative;
    }

    .header-section .action-btns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        align-items: center;
        gap: 20px;
        list-style: none;
    }
}

@media (min-width: 920px) and (max-width: 1014px) {
    .hero-section {
        gap: 30px;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .header-section {
        padding: 0px 60px;
    }

    .hero-section .left {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 26px;
        width: 80% !important;
    }

    .hero-section .left .title {
        font-size: 60px;
        line-height: 65px;
    }

    .hero-section .right img {
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: cover;
        margin: auto;
    }

    .about-section {
        padding: 100px 80px;
    }

    .about-section img {
        width: 100%;
    }

    .companies .logos {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
        max-width: 1280px;
        /* border: 1px solid; */
        width: 100%;
        padding: 0px 80px;
    }

    .pricing-table {
        border-collapse: separate;
        border: none;
        width: 80%;
        border-radius: 24px;
        overflow: scroll;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin: auto;
    }

    .stats-section {
        padding: 64px 50px;
        gap: 30px;
        flex-wrap: wrap;
    }

    .unlock-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px;
        gap: 30px;
        /* max-width: 1440px; */
        margin: auto;
    }

    .unlock-section .sub-sec {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        padding: 50px 0px;
        width: 100%;
        margin: auto;
        gap: 30px;
    }

    .sub-sec .left {
        gap: 12px;
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-right: 0px !important;
        padding-left: 0px !important;
        text-align: center;
    }

    .unlock-section .bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 30px;
        width: 100%;
    }

    .sub-sec.rev {
        flex-direction: column-reverse;
    }

    .getst-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 90px 80px;
        gap: 40px;
        max-width: 1440px;
        margin: auto;
        text-align: center;
    }

    .getst-section .steps {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        padding: 0px;
        gap: 8px;
    }

    .getst-section .steps {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 50%;
        padding: 0px;
        gap: 8px;
    }

    .getst-section .steps .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0px;
        gap: 16px;
    }

    .getst-section .title {
        font-weight: 400;
        font-size: 52px;
        line-height: 57px;
        display: flex;
        align-items: center;
        letter-spacing: -0.01em;
        color: #1c1c1c;
        text-align: center;
    }

    .footer {
        padding: 50px 80px !important;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 50px !important;
        max-width: 1440px;
        flex-wrap: wrap;
        margin: auto;
    }

    .footer .col-three {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 16px;
        margin: 0 auto;
        text-align: center;
    }

    .footer .col-three .text {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: #52525b;
        width: 70%;
    }

    .pricing-section .table {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 920px;
        max-width: 1200px;
        height: 506px;
        border-radius: 24px;
        padding: 1px;
        border-width: stroke weight/1;
    }

    .header-section .action-btns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        align-items: center;
        gap: 20px;
        list-style: none;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .hero-section {
        gap: 30px;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .header-section {
        padding: 0px 60px;
    }

    .hero-section .left {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 26px;
    }

    .hero-section .left .title {
        font-size: 60px;
        line-height: 65px;
    }

    .hero-section .right img {
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: cover;
        margin: auto;
    }

    .about-section {
        padding: 100px 80px;
    }

    .about-section img {
        width: 100%;
    }

    .companies .logos {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .pricing-table {
        border-collapse: separate;
        border: none;
        width: 80%;
        border-radius: 24px;
        overflow: scroll;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin: auto;
    }

    .stats-section {
        padding: 64px 50px;
        gap: 30px;
        flex-wrap: wrap;
    }

    .unlock-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px;
        gap: 30px;
        /* max-width: 1440px; */
        margin: auto;
    }

    .unlock-section .sub-sec {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        padding: 50px 0px;
        width: 100%;
        margin: auto;
        gap: 30px;
    }

    .sub-sec .left {
        gap: 12px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-right: 0px !important;
        padding-left: 0px !important;
        text-align: center;
    }

    .unlock-section .bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 30px;
        width: 100%;
    }

    .sub-sec.rev {
        flex-direction: column-reverse;
    }

    .getst-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 90px 80px;
        gap: 40px;
        max-width: 1440px;
        margin: auto;
        text-align: center;
    }

    .getst-section .steps {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        padding: 0px;
        gap: 8px;
    }

    .getst-section .steps {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        padding: 0px;
        gap: 8px;
    }

    .getst-section .steps .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0px;
        gap: 16px;
    }

    .getst-section .title {
        font-weight: 400;
        font-size: 52px;
        line-height: 57px;
        display: flex;
        align-items: center;
        letter-spacing: -0.01em;
        color: #1c1c1c;
        text-align: center;
    }

    .footer {
        padding: 50px 80px !important;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 50px !important;
        max-width: 1440px;
        flex-wrap: wrap;
        margin: auto;
    }

    .footer .col-three {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 16px;
        margin: 0 auto;
        text-align: center;
    }

    .footer .col-three .text {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: #52525b;
        width: 70%;
    }

    .pricing-section .table {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 920px;
        max-width: 1200px;
        height: 506px;
        border-radius: 24px;
        padding: 0px 80px;
        border-width: stroke weight/1;
        height: auto;
    }
}

@media (min-width: 425px) and (max-width: 748px) {
    .hero-section {
        gap: 30px;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .header-section {
        padding: 0px 10px;
    }

    .hero-section .left {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 26px;
        width: 100% !important;
    }

    .hero-section .rating {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .title {
        font-size: 46px !important;
        line-height: 52px !important;
    }

    .sub-title {
        font-size: 18px !important;
        line-height: 28px !important;
    }

    .hero-section .right img {
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: cover;
        margin: auto;
    }

    .about-section {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 1440px;
        width: 100%;
        margin: auto;
        text-align: center;
    }

    .about-section img {
        width: 100%;
    }

    .about-section .text {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 20px;
        font-weight: 400;
        font-size: 18px;
        color: rgba(28, 28, 28, 0.5);
        margin-bottom: 10px;
    }

    .companies {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 26px;
    }

    .companies .logos {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 17px;
    }

    .pricing-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        gap: 30px;
        /* background: rgba(196, 225, 247, 0.1); */
        background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0) 35.55%,
                #fff 100%
            ),
            url("../images/section-top-bg.png") no-repeat center / cover;
    }

    .pricing-section .table {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        height: 100%;
        border-radius: 24px;
        padding: 0px;
        border-width: stroke weight/1;
        overflow: scroll;
    }

    .pricing-table {
        border-collapse: separate;
        border: none;
        width: 100%;
        border-radius: 24px;
        overflow: scroll;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin: auto;
    }

    .stats-section {
        padding: 20px;
        gap: 20px;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .stats-section .stat-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 0px;
        width: 100%;
    }

    .stat-box .title {
        font-weight: 600;
        font-size: 24px !important;
        display: flex;
        align-items: center;
        color: #313131;
    }

    .unlock-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        gap: 10px;
        /* max-width: 1440px; */
        margin: auto;
        text-align: center;
    }

    .unlock-section .top .title {
        width: 100%;
    }

    .unlock-section .sub-sec {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* flex-wrap: wrap; */
        padding: 20px;
        width: 100%;
        margin: auto;
        gap: 30px;
    }

    .sub-sec .left .text {
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        display: flex;
        align-items: center;
        letter-spacing: -0.021px;
        color: #7a7a7b;
        margin-bottom: 18px;
    }

    .sub-sec .left {
        gap: 12px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-right: 0px !important;
        padding-left: 0px !important;
        text-align: center;
    }

    .sub-sec .right img {
        width: 100%;
    }

    .unlock-section .bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 30px;
        width: 100%;
    }

    .sub-sec.rev {
        flex-direction: column-reverse;
    }

    .getst-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 40px;
        gap: 20px;
        max-width: 1440px;
        margin: auto;
        width: 100%;
    }

    .getst-section .steps {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        padding: 0px;
        gap: 8px;
    }

    .getst-section .steps {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        padding: 0px;
        gap: 8px;
    }

    .getst-section .steps .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 0px;
        gap: 16px;
        text-align: center;
    }

    .getst-section .title {
        font-weight: 400;
        font-size: 52px;
        line-height: 57px;
        display: flex;
        align-items: center;
        letter-spacing: -0.01em;
        color: #1c1c1c;
        text-align: center;
    }

    .try-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 40px;
    }

    .try-section .top {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 10px;
    }

    .try-section .action-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 8px 0px 0px;
        gap: 14px;
    }

    .feedback-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        gap: 0px;
    }

    .footer {
        padding: 20px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px !important;
        /* max-width: 1440px; */
        /* flex-wrap: wrap; */
        margin: auto;
        width: 100%;
    }

    .footer .col-three {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 16px;
        margin: 0 auto;
        text-align: center;
    }

    .footer .col-three .text {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: #52525b;
        width: 100%;
    }

    .top-bar {
        height: auto;
        width: 100% !important;
        background: #1c1c1c;
        font-weight: 600;
        font-style: Semibold;
        font-size: 14px;
        color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }
}

@media (min-width: 320px) and (max-width: 420px) {
    .hero-section {
        gap: 30px;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .header-section {
        padding: 0px 10px;
    }

    .hero-section .left {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 26px;
        width: 100% !important;
    }

    .hero-section .rating {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .title {
        font-size: 40px !important;
        line-height: 40px !important;
    }

    .sub-title {
        font-size: 18px !important;
        line-height: 28px !important;
    }

    .hero-section .right img {
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: cover;
        margin: auto;
    }

    .about-section {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 1440px;
        width: 100%;
        margin: auto;
        text-align: center;
    }

    .about-section img {
        width: 100%;
    }

    .about-section .text {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 20px;
        font-weight: 400;
        font-size: 18px;
        color: rgba(28, 28, 28, 0.5);
        margin-bottom: 10px;
    }

    .companies {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 26px;
    }

    .companies .logos {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 17px;
    }

    .pricing-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        gap: 30px;
        /* background: rgba(196, 225, 247, 0.1); */
        background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0) 35.55%,
                #fff 100%
            ),
            url("../images/section-top-bg.png") no-repeat center / cover;
    }

    .pricing-section .table {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        height: 100%;
        border-radius: 24px;
        padding: 0px;
        border-width: stroke weight/1;
        overflow: scroll;
    }

    .pricing-table {
        border-collapse: separate;
        border: none;
        width: 100%;
        border-radius: 24px;
        overflow: scroll;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin: auto;
    }

    .stats-section {
        padding: 20px;
        gap: 20px;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .stats-section .stat-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 0px;
        width: 100%;
    }

    .stat-box .title {
        font-weight: 600;
        font-size: 24px !important;
        display: flex;
        align-items: center;
        color: #313131;
    }

    .unlock-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        gap: 10px;
        /* max-width: 1440px; */
        margin: auto;
        text-align: center;
    }

    .unlock-section .top .title {
        width: 100%;
    }

    .unlock-section .sub-sec {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* flex-wrap: wrap; */
        padding: 20px;
        width: 100%;
        margin: auto;
        gap: 30px;
    }

    .sub-sec .left .text {
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        display: flex;
        align-items: center;
        letter-spacing: -0.021px;
        color: #7a7a7b;
        margin-bottom: 18px;
    }

    .sub-sec .left {
        gap: 12px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-right: 0px !important;
        padding-left: 0px !important;
        text-align: center;
    }

    .sub-sec .right img {
        width: 100%;
    }

    .unlock-section .bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 30px;
        width: 100%;
    }

    .sub-sec.rev {
        flex-direction: column-reverse;
    }

    .getst-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 40px;
        gap: 20px;
        max-width: 1440px;
        margin: auto;
        width: 100%;
    }

    .getst-section .steps {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        padding: 0px;
        gap: 8px;
    }

    .getst-section .steps {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        padding: 0px;
        gap: 8px;
    }

    .getst-section .steps .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 0px;
        gap: 16px;
        text-align: center;
    }

    .getst-section .title {
        font-weight: 400;
        font-size: 52px;
        line-height: 57px;
        display: flex;
        align-items: center;
        letter-spacing: -0.01em;
        color: #1c1c1c;
        text-align: center;
    }

    .try-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 40px;
    }

    .try-section .top {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 10px;
    }

    .try-section .action-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 8px 0px 0px;
        gap: 14px;
    }

    .feedback-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        gap: 0px;
    }

    .footer {
        padding: 20px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px !important;
        /* max-width: 1440px; */
        /* flex-wrap: wrap; */
        margin: auto;
        width: 100%;
    }

    .footer .col-three {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 16px;
        margin: 0 auto;
        text-align: center;
    }

    .footer .col-three .text {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: #52525b;
        width: 100%;
    }

    .top-bar {
        height: auto;
        width: 100% !important;
        background: #1c1c1c;
        font-weight: 600;
        font-style: Semibold;
        font-size: 14px;
        color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .testimonial {
        width: 100%;
        height: auto;
    }

    .try-section .cards {
        width: 100%;
    }

    .try-section .card {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .try-section .card .title {
        font-size: 32px !important;
        line-height: normal !important;
    }

    .getst-section .action-btns {
        flex-direction: column;
    }

    .hero-section .action-btns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        flex-direction: column;
    }

    .col-two {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0px;
        gap: 40px;
        flex-wrap: wrap;
        margin: 0 auto;
    }
}
