* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Barlow", sans-serif;
    background: #FFF;
    min-height: 100vh;
}

img {
    user-select: none;
}

::selection {
    color: #000000;
    background: #41b0e1;
}

/* Header Start */

header {
    padding: 20px;
    background: #F7FBFB;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    max-width: 200px;
    height: auto;
}

.logo img {
    width: 100%;
    height: 100%;
}

.header-download-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E1ECEF;
    border-radius: 8px;
    width: 100%;
    max-width: 182px;
    height: 46px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-download-button span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1em;
    color: #002a3c;
}

.header-download-button:hover {
    background: #c1dce0;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 132px;
        height: auto;
    }

    .header-download-button {
        display: none;
    }
}

/* Header End */

/* ATF Start */

.atf-section {
    background: #F7FBFB;
    position: relative;
}

.atf-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(180deg, #F7FBFB3B 91%, #6DCAD53B 100%);
}

.atf-inner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px 60px;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
}

.left-content {
    max-width: 484px;
    width: 100%;
}

.left-content h1 {
    font-size: 70px;
    font-weight: 800;
    color: #212121;
    line-height: 1.0;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.left-content .atf-description {
    font-size: 22px;
    color: #212121;
    line-height: 1.2em;
    margin-bottom: 40px;
    max-width: 404px;
    transition: all 0.3s ease;
}

.download-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: #00B2E3;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    width: 100%;
    max-width: 254px;
    height: 56px;
    transition: all 0.3s ease;
}

.download-button span {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
    color: #FFFFFF;
}

.download-button svg {
    width: 18px;
    height: auto;
}

.download-button:hover {
    background: #6DCAD5;
}

.atf-disclaimer {
    font-size: 11px;
    color: #212121;
    line-height: 1.2em;
    margin-top: 20px;
}

.atf-disclaimer-link {
    color: #00B2E3;
    transition: all 0.3s ease;
}

.atf-disclaimer-link:hover {
    color: #002a3c;
}

.right-content {
    position: relative;
    background-color: #FFFFFF;
    padding: 8px 8px 8px 8px;
    border-style: dashed;
    border-width: 1px 1px 1px 1px;
    border-color: #00B2E3;
    border-radius: 8px 8px 8px 8px;
    margin-top: 10px;
    overflow: hidden;
}

.browser-image {
    width: 100%;
    border-radius: 6px;
}

.sidebar {
    background-color: #F5F5F5;
    padding: 20px 0px 0px 0px;
    border-radius: 0px 0px 0px 5px;
    max-width: 42px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    top: 12.7%;
    left: 8px;
    height: 85%;
    animation: slideInLeft 0.8s ease-out 1;
}

.sidebar img {
    width: 20px;
    height: auto;
}

.searchbar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-46%, -4%);
    max-width: 414px;
    width: 70%;
    max-width: 414px;
}

.searchbar-inner {
    animation: slideInBottom 0.8s ease-out 1;
}

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

/* Responsive */
@media (max-width: 1200px) {

    .atf-inner-wrapper {
        padding: 0 20px 60px;
    }
}

@media (max-width: 1023px) {
    .atf-inner-wrapper {
        flex-wrap: nowrap;
        flex-direction: column;
        gap: 40px;
        padding: 30px 20px;
    }

    .left-content {
        text-align: center;
    }

    .left-content h1 {
        font-size: 70px;
    }

    .left-content .atf-description {
        margin: 0 auto 20px;
    }

    .download-button {
        margin: 0 auto;
    }

    .sidebar {
        top: 12.4%;
        height: 85.9%;
    }
}

@media (max-width: 768px) {
    .left-content h1 {
        font-size: 44px;
        margin-bottom: 20px;
    }

    .left-content .atf-description {
        font-size: 20px;
    }

    .download-button {
        max-width: 230px;
        height: 54px;
    }

    .download-button span {
        font-size: 16px;
    }

    .download-button svg {
        width: 16px;
    }
}

@media (max-width: 432px) {
    .sidebar {
        max-width: 30px;
        height: 81.5%;
        top: 14%;
    }

    .sidebar img {
        width: 14px;
    }
}

/* Animation for sliding in from the left */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation for sliding in from the bottom */
@keyframes slideInBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ATF End */

/* Smart Digital Start */

.smart-digital-section {
    padding: 90px 20px 110px;
}

.smart-digital-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 20px;
    line-height: 1.1em;
    text-align: center;
}

.section-subtitle {
    font-size: 22px;
    color: #212121;
    margin-bottom: 60px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2em;
    text-align: center;
}

.smart-digital-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.smart-digital-card {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.smart-digital-icon {
    width: 126px;
    height: 126px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smart-digital-card:nth-child(2) .smart-digital-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 26px;
}

.smart-digital-card:nth-child(3) .smart-digital-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
}

.smart-digital-card:nth-child(4) .smart-digital-icon {
    width: 105px;
    height: 105px;
    margin-bottom: 25px;
}

.smart-digital-icon svg {
    width: 100%;
    height: 100%;
}

.smart-digital-card-title {
    font-size: 16px;
    font-weight: 400;
    color: #212121;
    line-height: normal;
    max-width: 218px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .smart-digital-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 43px;
    }

    .section-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .smart-digital-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .smart-digital-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }

    .smart-digital-card {
        justify-content: flex-start;
    }

    .smart-digital-card:nth-child(1) .smart-digital-icon {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 10px !important;
    }

    .smart-digital-card-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .smart-digital-grid {
        gap: 20px;
    }
}

/* Start Digital End */

/* All-in-One Feature Start */

.all-in-one-section {
    padding: 0px 20px;
}

.all-in-one-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #f7fbfb;
    border-radius: 20px;
    padding: 50px;
    width: 100%;
}

.all-in-one-container .section-subtitle {
    max-width: 700px;
}

.all-in-one-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 91px;
    margin-bottom: 101px;
}

.all-in-one-row.all-in-one-row-reverse {
    margin-bottom: 40px;
    align-items: flex-start;
}

.all-in-one-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin-right: 50px;
}

.all-in-one-row.all-in-one-row-reverse .all-in-one-content {
    margin-right: 0;
    margin-left: 50px;
}

.all-in-one-feature {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.all-in-one-feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.all-in-one-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.all-in-one-icon svg {
    width: 100%;
    height: 100%;
}

.all-in-one-feature-title {
    font-size: 28px;
    line-height: 1.2em;
    font-weight: 400;
    color: #212121;
}

.all-in-one-feature-subtitle {
    font-size: 16px;
    line-height: 1em;
    font-weight: 700;
    color: #212121;
    margin-bottom: 10px;
}

.all-in-one-feature-text {
    font-size: 16px;
    line-height: 21px;
    color: #212121;
}

.all-in-one-visual {
    border: 1px dashed #00B2E3;
    border-radius: 15px;
    max-width: 549px;
    width: 100%;
    position: relative;
}

.chat-background {
    max-width: 549px;
    width: 100%;
    height: auto;
}

.chat-search-area {
    position: absolute;
    top: 0;
    max-width: 549px;
    height: 100%;
}

.chat-heading-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-87%);
}

.chat-heading-wrapper .chat-heading-inner {
    animation: slideInSlowBottom 0.8s ease-out 1;
}

.chat-search-area,
.chat-section {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.chat-section ul li {
    list-style: none;
    background: #ffffff;
    margin: 5px 0px;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    -webkit-box-shadow: -1px 0px 25px -18px #000000;
    -moz-box-shadow: -1px 0px 25px -18px #000000;
    box-shadow: -1px 0px 25px -18px #000000;
    font-size: 15px;
}

.chat-bubbles {
    max-width: 336px;
    left: 7%;
    position: absolute;
    top: 7%;
}

/* Animation for fade + slide in/out */
@keyframes fadeCycle {

    0%,
    45% {
        opacity: 1;
        transform: translateY(0);
    }

    50%,
    95% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat search area starts first */
.chat-search-area {
    animation: fadeCycle 12s ease-in-out infinite;
}

/* Chat section appears after chat search fades */
.chat-section {
    animation: fadeCycle 12s ease-in-out infinite;
    animation-delay: 6s;
}


.chat-heading-wrapper .chat-heading {
    color: #002A3C;
    font-size: 22px;
    line-height: 1;
    white-space: nowrap;
    font-weight: 700;
}

.input-wrapper {
    position: relative;
}

.chat-search-area img {
    width: 100%;
    height: auto;
}

.all-in-one-row.all-in-one-row-reverse .all-in-one-visual {
    max-width: 545px;
    max-height: 490px;
    width: 100%;
    height: 100%;
    min-height: 490px;
}

.fade-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.fade-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeImage 18s ease-in-out infinite;
}

/* Animate opacity in sequence */
.fade-slider img:nth-child(1) {
    animation-delay: 0s;
}

.fade-slider img:nth-child(2) {
    animation-delay: 6s;
}

.fade-slider img:nth-child(3) {
    animation-delay: 12s;
}

/* Animation: fade in, stay, fade out */
@keyframes fadeImage {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    43% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.all-in-one-down-container {
    margin-top: 30px;
}

.social-integrations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.social-integrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Responsive */
@media (max-width: 1200px) {
    .chat-section ul li {
        font-size: 14px;
        padding: 8px 10px;
    }
}

@media (max-width: 968px) {
    .social-integrations-grid {
        grid-template-columns: 1fr;
    }

    .all-in-one-container {
        padding: 20px;
    }

    .all-in-one-row,
    .all-in-one-row-reverse {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .all-in-one-row.all-in-one-row-reverse {
        flex-direction: column-reverse;
        align-items: center;
    }

    .all-in-one-row.all-in-one-row-reverse .all-in-one-visual {
        min-height: auto;
    }

    .all-in-one-row-reverse .all-in-one-visual {
        width: 100% !important;
        height: 490px !important;
    }

    .all-in-one-content, .all-in-one-row.all-in-one-row-reverse .all-in-one-content {
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .all-in-one-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .social-integrations-section {
        padding: 60px 20px;
    }

    .all-in-one-section {
        padding: 60px 20px;
    }

    .all-in-one-title {
        font-size: 36px;
    }

    .all-in-one-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .all-in-one-feature-title {
        font-size: 26px;
        text-align: center;
    }

    .chat-section ul li {
        font-size: 13px;
        padding: 6px 10px;
        margin: 2px 0;
    }

    .all-in-one-row-reverse .all-in-one-visual {
        width: 100% !important;
        height: 390px !important;
    }

    .all-in-one-feature-header {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .chat-section ul li {
        font-size: 8px;
    }

    .chat-bubbles {
        max-width: 200px;
    }

    .chat-heading-wrapper .chat-heading {
        font-size: 16px;
    }

    .chat-heading-wrapper {
        transform: translateX(-70%);
    }

    .all-in-one-row-reverse .all-in-one-visual {
        width: 100% !important;
        height: 290px !important;

    }

    .all-in-one-visual {
        border-radius: 8px;
    }
}

@media (max-width: 375px) {
    .all-in-one-row-reverse .all-in-one-visual {
        width: 100% !important;
        height: 200px !important;

    }
}

/* Animation for sliding in from the bottom */
@keyframes slideInSlowBottom {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* All-in-One Feature End */

/* Browse Securely Start */

.browse-securely-section {
    padding: 90px 20px;
}

.browse-securely-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.browse-securely-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.browse-securely-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.browse-securely-visual img {
    max-width: 336px;
    height: auto;
}

.browse-securely-features {
    text-align: left;
}

.browse-securely-features-title {
    font-size: 28px;
    font-weight: 400;
    color: #212121;
    margin-bottom: 40px;
}

.browse-securely-list {
    list-style: none;
    padding: 0;
}

.browse-securely-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.browse-securely-item:first-child {
    padding-top: 0;
}

.browse-securely-item svg {
    width: 14px;
    height: 14px;
    fill: #89B0BE;
}

.browse-securely-text {
    font-size: 16px;
    color: #212121;
    font-weight: 400;
}

.browse-securely-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #002A3C;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    width: 100%;
    max-width: 247px;
    height: 48px;
    margin-top: 32px;
    transition: all 0.3s ease;
}

.browse-securely-button span {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
    color: #FFFFFF;
}

.browse-securely-button:hover {
    background: #013f5a;
}

/* Responsive */
@media (max-width: 1200px) {
    .browse-securely-visual img {
        max-width: 290px;
    }
}

@media (max-width: 968px) {
    .browse-securely-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .browse-securely-features {
        max-width: 400px;
        margin: 0 auto;
    }

    .browse-securely-button {
        margin: 32px auto 0;
    }

}

@media (max-width: 768px) {
    .browse-securely-section {
        padding: 60px 20px;
    }

    .browse-securely-title {
        font-size: 36px;
    }

    .browse-securely-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .browse-securely-features-title {
        font-size: 24px;
    }

    .browse-securely-text {
        font-size: 16px;
    }

    .browse-securely-visual img {
        max-width: 201px;
    }

    .browse-securely-button {
        max-width: 230px;
        height: 46px;
    }

    .browse-securely-button span {
        font-size: 16px;
    }
}

/* Browse Securely End */

/* Get More Section Start */

.get-more-section {
    padding: 100px 20px;
    background: #002A3C;
}

.get-more-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.get-more-container h2 {
    font-size: 48px;
    line-height: 1.1em;
    color: #FFFFFF;
    font-weight: 800;
}

.get-more-container .download-button {
    margin: 20px auto 0;
}

/* Responsive */
@media (max-width: 768px) {
    .get-more-container h2 {
        font-size: 43px;
    }
}

/* Get More Section End */

/* Footer Start */

.footer-section {
    padding: 20px 20px 62px;
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-disclaimer {
    font-size: 12px;
    color: #212121;
    line-height: 16px;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.footer-link {
    font-size: 14px;
    color: #002A3C;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.footer-link:hover {
    color: #00b2e3;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 30px 20px;
    }

    .footer-disclaimer {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .footer-link {
        font-size: 13px;
    }
}

/* Footer End */

/* Scroll To Top Start */

.scroll-to-top {
    position: fixed;
    bottom: 46px;
    right: 22px;
    width: 32px;
    height: 32px;
    background: #00B2E3;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    box-shadow: 0 3px 10px #0ea5e966;
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top svg {
    transform: translate(0, -20%) rotate(180deg);
    width: 24px;
    height: 9px;
    fill: #FFFFFF;
}

/* Scroll To Top End */