@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poetsen+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
}

.container {
    max-width: 78.125rem;
    padding: 0px 2.8rem;
}

/* ===================== HEADER STYLES ===================== */
.a3d-header {
    padding: 0.375rem 1rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1050;
}

.a3d-header img {
    width: 10rem;
    height: auto;
    transition: transform 0.3s ease;
}

/* ===================== NAVIGATION LINK STYLES ===================== */
.a3d-nav-link {
    color: #374151;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.975rem;
    position: relative;
    padding: 0.5rem 0;
    margin: 0 0.8rem;
    transition: all 0.3s ease;
}

/* Underline image for desktop links */
.desktop-nav .a3d-nav-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0.50rem;
    background-image: url('/assets/images/landing-page/line.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    transition: all 0.3s ease;
}

.desktop-nav .a3d-nav-link:hover::after,
.desktop-nav .a3d-nav-link.active::after {
    color: darkblue !important;
    width: 80px;
    opacity: 1;
}

/* Underline image for mobile/sidebar links */
.sidebar-nav .a3d-nav-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-image: url('/assets/images/landing-page/line.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 80px 3px;
    opacity: 0;
    transition: all 0.3s ease;
}

.sidebar-nav .a3d-nav-link:hover::after,
.sidebar-nav .a3d-nav-link.active::after {color: darkblue !important;
    width: 100%;
    opacity: 1;
}

/* Color change on hover/active */
.a3d-nav-link:hover,
.a3d-nav-link.active {
    color: #343C6A !important;
}

/* ===================== BUTTON STYLES ===================== */
.a3d-join-btn {
    background: #8CD9FE;
    color: white;
    border: none;
    font-size: 0.725rem;
    padding: 0.5rem 0.3rem;
    border-radius: 5px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.a3d-join-btn:hover {
    background: #6ec1f0;
    transform: translateY(-2px);
}

/* ===================== SIDEBAR STYLES ===================== */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: white;
    transition: all 0.4s ease;
    z-index: 1060;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar.show {
    left: 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem 1.5rem;
}

.sidebar-nav .a3d-nav-link {
    padding: 0.8rem 0;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

.close-sidebar {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
}


:root {
    --base-font-size: 16px;
}

.hero-section {
    background-color: #f1faff;
    font-family: 'Poppins', sans-serif;
    padding: 3.75rem 1rem;
}

.hero-section .hero-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #343C6A;
    font-family: "Poetsen One", sans-serif;
}

.hero-section .hero-subtext {
    font-size: 1.094rem;
    color: #343C6A;
    margin-top: 1.25rem;
    font-weight: 500;
}

.hero-section .btn-windows,
.hero-section .btn-macos {
    padding: 0.738rem 1.675rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    margin-right: 0.625rem;
    font-weight: 500;
    margin-top: 0.625rem;
}

.hero-section .btn-windows {
    background-color: #87d8ff;
    color: #fff;
    border: none;
}

.hero-section .btn-windows:hover {
    background-color: #6ec8f3;
}

.hero-section .btn-macos {
    background-color: #2b2f5f;
    color: #fff;
    border: none;
}

.hero-section .btn-macos:hover {
    background-color: #1e2348;
}

.hero-section .thumb {
    position: relative;
    width: 3.125rem;
    height: 12.813rem;
    border-radius: 1.875rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
}

.hero-section .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(178.03deg, rgba(0, 0, 0, 0) 1.57%, rgba(0, 0, 0, 0.85) 85.18%);
    pointer-events: none;
    z-index: 1;
}

.hero-section .thumb .icon-circle {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.75rem;
    height: 1.75rem;
    background: white;
    color: #2b2f5f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    z-index: 2;
}

.hero-section .thumb:hover {
    transform: scale(1.05);
    transition: 0.3s;
    box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.2);
}

.hero-section .main-slide {
    width: 18.75rem;
    height: 12.5rem;
    border-radius: 2.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.15);
}

.hero-section .main-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(178.03deg, rgba(0, 0, 0, 0) 1.57%, rgba(0, 0, 0, 0.85) 85.18%);
    pointer-events: none;
    z-index: 1;
}

.hero-section .main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .main-slide .icon-circle {
    position: absolute;
    bottom: 0.375rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    background: white;
    color: #2b2f5f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    z-index: 2;
}


.hero-section .play-button {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.25rem 0.625rem #8CD9FE;
    margin-top: 0.938rem;
    border: 0.063rem solid #8CD9FE;
}

.hero-section .learn-btn {
    background: #87d8ff;
    border: none;
    color: white;
    border-radius: 1.563rem;
    padding: 0.375rem 0.625rem;
    margin-top: 0.938rem;
    font-size: 0.625rem;
    width: 4.813rem;
}

.hero-section .learn-btn:hover {
    background: #6ec8f3;
}

.hero-section .social-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.938rem 0;
}

.hero-section .social-track span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #2b2f5f;
    font-size: 0.75rem;
    margin-right: 0.188rem;
}

.hero-section .social-track .links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.438rem;
    height: 1.438rem;
    border-radius: 50%;
    background-color: #343C6A;
    border: 0.063rem solid #8CD9FE;
    margin: 0.188rem 0;
}

.hero-section .social-track .links img {
    width: 0.813rem;
    height: 0.813rem;
}


@media(max-width: 1200px) {
    .hero-section .hero-heading {
        width: 100%;
        justify-content: center;
    }

    .hero-section .hero-slider {
        margin-top: 28px;
        width: 100%;
        justify-content: center !important;
    }
}

@media(max-width: 500px) {
    .hero-section .hero-title {
        font-size: 1.7rem;
    }
}



@media (max-width: 670px) {
    .hero-section .hero-slider {
        zoom: 0.85;
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .hero-section .hero-slider {
        zoom: 0.75;
    }
}

@media (max-width: 510px) {
    .hero-section .hero-slider {
        zoom: 0.60;
    }
}

@media (max-width: 420px) {
    .hero-section .hero-slider {
        zoom: 0.50;
    }
}

@media (max-width: 360px) {
    .hero-section .hero-slider {
        zoom: 0.40;
    }
}





/* ===================== RESPONSIVE STYLES ===================== */
@media (max-width: 991.98px) {

    .desktop-nav,
    .desktop-auth {
        display: none !important;
    }

    .navbar-toggler {
        display: block !important;
        font-size: 1.5rem;
        color: #374151;
    }
}

@media (max-width: 576px) {
    .sidebar {
        width: 85%;
    }

    .a3d-header img {
        width: 8rem;
    }
}

/* ========================= header-end */
.logo_static {
    width: 100%;
    padding: 0.625rem 0;
}

.logo_row {
    flex-wrap: wrap;
}

.logo_static img {
    height: 6.875rem;
    vertical-align: middle;
}

.logo_static img[alt="logo1"] {
    height: 1.875rem !important;
}

.logo_static img[alt="logo2"] {
    height: 7.5rem !important;
}

.video_section .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    z-index: 3;
}

.pause-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    display: none;
    z-index: 2;
    cursor: pointer;
    overflow: hidden;
    width: 8.125rem;
    height: 8.125rem;
    transform: translate(-50%, -50%);
    font-size: 4.375rem;
    text-align: center;
    line-height: 8.125rem;
    transition: opacity 0.3s ease;
}

.video-wrapper.playing:hover .pause-icon {
    display: block;
}

video {
    border-radius: 0.3125rem;
    width: 100%;
    height: 100%;
}

/* =============================== how it work section ============== */
.how-it-work {
    background: #FFFFFF;
}

.custom-card {
    border: 0.0625rem solid #343C6A;
    background: #FFFFFF;
    border-radius: 0.625rem;
    padding: 1.25rem 1rem 0 1rem;
    transition: all 0.3s ease-in-out;
    text-align: center;
    height: 100%;
    box-shadow: 0 0 0.1875rem 0 #00000040;
    margin: 0 0.25rem;
}

.custom-card:hover {
    background-color: #8CD9FE;
    border: 0.0625rem solid #8CD9FE;
}

.card-icon {
    background-color: #eef2ff;
    height: 5rem;
    width: 5rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    margin: 0 auto;
}

.card-icon img {
    height: 3.75rem;
    width: 3.75rem;
    object-fit: contain;
    transition: filter 0.3s ease-in-out;
}

.custom-card:hover {
    background-color: #8CD9FE;
}

.custom-card:hover .card-icon {
    background-color: #343C6A;
}

.custom-card:hover .card-icon img {
    filter: brightness(0) invert(1);
}

.custom-card h5 {
    font-weight: 600;
    font-size: 1.25rem;
    color: #1e2d5c;
    margin-top: 2rem;
}

.custom-card p {
    font-size: 0.85rem;
    color: #555;
    margin-top: 0.625rem;
    font-family: Poppins;
    font-weight: 400;
}

.how-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #2D3561;
    position: relative;
    z-index: 1;
}

.curve-line {
    top: -1rem;
    left: 51%;
    transform: translateX(-50%);
    width: 9.50rem;
    z-index: 0;
}

.curve-line-2 {
    top: -1.70rem;
    left: 63%;
    transform: translateX(-50%);
    width: 12.50rem;
    z-index: 0;
}

.subheading {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 1rem;
    line-height: 1.75rem;
    letter-spacing: 0%;
}

/* =============================== how it work section end ============== */

/* =============================== subscription  ============== */
.subscription {
    background-color: #EDF9FF;
    border-top: 0.125rem solid #8CD9FE;
}

.subscription h4 {
    font-family: "Poetsen One", sans-serif;
    font-weight: 400;
    font-style: Regular;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    font-size: 18px;
    margin-right: 6px;
}

.subscription .form-control {
    border-radius: 0.25rem;
    border: 0.0625rem solid #ced4da;
    padding: 0.75rem;
    margin: 0 0.625rem;
    width: 18.75rem;
    border-radius: 0.3125rem;
    background-color: #343C6A14;
}

.subscription .form-control:focus {
    outline: none;
    box-shadow: none;
}

.subscription .btn-subscribe {
    background-color: #8CD9FE;
    color: white;
    border: none;
    border-radius: 0.3125rem;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    white-space: nowrap;
}

.subscription .btn-subscribe:hover {
    background-color: white !important;
    color: #4EF0F0;
    transition: all 0.3s ease;
}

@media (max-width: 48rem) {
    .subscription .row>div {
        width: 100%;
        justify-content: center !important;
        margin-bottom: 0.625rem;
    }

    .subscription .d-flex {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        margin-top: 20px;
    }

    .subscription .form-control {
        width: auto;
        flex-grow: 1;
        margin: 0;
        min-width: 0;
        font-size: 15px;
    }

    .subscription .btn-subscribe {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 15px;
        padding: 0.75rem 0.5rem;
    }
}


/* =============================== subscription  ============== */
/* =============================== Footer ============== */
.footer {
    background-color: #343C6A;
    color: #fff;
    padding: 4rem 0 1rem 0;
    font-size: 0.775rem;
}

.footer .logo {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 1.40rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
}

.footer .desc {
    color: #fff;
    margin-bottom: 1.25rem;
    margin-right: 2rem;
}

.footer h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}

.footer ul li img {
    margin-bottom: 0.0625rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-family: 'Poppins';
    text-decoration: none !important;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .contact a {
    display: block;
    margin-bottom: 0.3125rem;
    font-size: 0.8125rem;
}

.footer .social-icons {
    margin-top: 0.625rem;
    display: flex;
    gap: 0.5rem;
}

.footer .social-icon {
    color: #fff !important;
    font-size: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    line-height: 2.25rem;
    text-align: center;
    border-radius: 50%;
    background-color: #4EF0F0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.footer .social-icon:hover {
    background-color: #fff;
    color: black !important;
    transform: translateY(-0.1875rem);
}

.footer .social-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    padding: 0.3125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.footer .social-icon:hover::after {
    opacity: 1;
}

.footer .copyright {
    text-align: center;
    margin-top: 0.9375rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer .btn-windows,
.btn-macos {
    padding: 10px 25px;
    font-size: 13px;
    border-radius: 8px;
    margin-right: 10px;
    font-weight: 500;
    margin-top: 10px;
}

.footer .btn-windows {
    background-color: #87d8ff;
    color: #fff;
    border: none;
}

.footer .btn-windows:hover {
    background-color: #6ec8f3;
}

.footer .btn-macos {
    background-color: #EAF8FFA8;
    color: #fff;
    border: none;
}

.footer .btn-macos:hover {
    background-color: gray;
    color: white;
}

.colorc {
    color: rgba(222, 57, 150, 1);
    font-size: 0.9375rem;
}

.world {
    border: 0.0625rem solid rgba(222, 57, 150, 1);
    padding: 0.375rem 1.25rem;
    border-radius: 0.25rem;
    color: rgba(222, 57, 150, 1);
    align-items: center;
    display: flex;
}

.relative {
    position: relative;
}

.posotion {
    position: absolute;
    top: 0.4375rem;
}

@media (max-width: 61.99875rem) {
    .footer .social-icons.desktop-icons {
        display: none !important;
    }

    .footer .mobile-social-icons {
        display: flex !important;
    }
}

@media (min-width: 62rem) {
    .footer .mobile-social-icons {
        display: none !important;
    }
}

/* =============================== Footer ============== */
.subscription-heading {
    font-family: "Inter", sans-serif;
    font-weight: 600 !important;
    font-style: Semi Bold !important;

}

.dark-card {
    background-color: #343C6A;
    border-radius: 0.75rem;
    padding: 1.375rem 0.9375rem;
    color: white !important;
}

.dark-card .upgrade {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: Regular;
    line-height: 2.4375rem;
    letter-spacing: 0%;
}

.dark-card p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.25rem;
    letter-spacing: 0%;
}

.starter-card {
    background-color: #343C6A;
    border-radius: 0.75rem;
    padding: 1.375rem 0.9375rem;
    color: white !important;
    transition: all 0.3s ease;
}

.starter-card:hover {
    background-color: #8CD9FE80;
    color: black !important;
}

.starter-card:hover h3 span.border-bottom {
    border-color: black !important;
    transition: border-color 0.3s ease;
}

.starter-card a {
    background-color: #e0e0e0;
    color: black;
    transition: all 0.3s ease;
}

.starter-card:hover a {
    background-color: #343C6A;
    color: white;
}

.starter-card .feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    font-size: 12px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.starter-card:hover .feature-list li::before {
    color: black;
}

.dark-cards {
    background-color: #343C6A;
    border-radius: 0.75rem;
    padding: 1.375rem 0.9375rem;
    color: white !important;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dark-cards:hover {
    background-color: #8CD9FE80;
    color: black !important;
}

.dark-cards:hover h3 span.border-bottom {
    border-color: black !important;
    transition: border-color 0.3s ease;
}

.dark-cards .feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    font-size: 12px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.dark-cards:hover .feature-list li::before {
    color: black;
}

.dark-cards a {
    background-color: #e0e0e0;
    color: black;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    border: none;
}

.dark-cards:hover a {
    background-color: #343C6A;
    color: white;
}


.price-text {
    font-family: "Merriweather", serif;
}

.pro-card {
    background-color: #2c3e50;
    border-radius: 0.9375rem;
    height: 100%;
    color: white;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.875rem;
}

.feature-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.70rem;
    font-family: "Open Sans";
    font-weight: 400;
}

.feature-list li span {
    position: absolute;
    left: 0;
    color: #28a745;
}

.custom-tabs {
    background-color: #8CD9FE3B;
    border-radius: 1.5625rem;
    padding: 0.125rem 0rem;
    display: inline-flex;
}

.custom-tabs .nav-link {
    border-radius: 1.25rem;
    padding: 0.5rem 1.25rem;
    border: none;
    font-size: 0.875rem;
}

.custom-tabs .nav-link.active {
    background-color: #2c3e50;
    color: white;
}

.icon-box {
    width: 7.5rem;
    height: 7.5rem;
    background-color: #34495e;
    border-radius: 0.9375rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.inner-box {
    width: 5rem;
    height: 3.75rem;
    background-color: #17a2b8;
    border-radius: 0.5rem;
    position: relative;
}

.circle {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    width: 0.9375rem;
    height: 0.9375rem;
    background-color: white;
    border-radius: 50%;
}

.rectangle {
    position: absolute;
    bottom: 0.3125rem;
    right: 0.3125rem;
    width: 1.25rem;
    height: 0.5rem;
    background-color: #007bff;
    border-radius: 0.25rem;
}

.margin {
    margin-left: 1.25rem;
    margin-right: 0.6875rem;
}

.every {
    font-size: 1.80rem;
    margin-bottom: 0rem;
    margin-top: 3.5rem;
}

.cleaner {
    color: #18b2fa80;
    font-size: 1.6875rem;
    line-height: 1.4375rem;
}

.upgrade {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: white;
}

.free {
    width: auto;
    padding: 0.625rem 1.75rem;
    background-color: #343C6A;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.animate {
    border-bottom: 0.125rem solid white;
    font-size: 1.6875rem;
}

.animater {
    font-size: 1.6875rem;
}

@media(min-width:75rem) {
    .upgrade {
        font-size: 1.75rem;
    }
}

@media (min-width: 26.3125rem) and (max-width: 36rem) {
    .custom-tabs {
        padding: 0.0625rem 0rem;
    }

    .margin {
        margin-left: 0.625rem;
        margin-right: 0.5rem;
    }

    .font {
        font-size: 2.375rem;
        font-weight: 500;
    }

    .upgrade {
        font-size: 2rem;
    }

    .every {
        font-size: 1.5rem;
    }

    .cleaner {
        font-size: 1.25rem;
    }

    .starter-card {
        padding: 1.25rem;
    }

    .starter {
        padding: 1.25rem;
    }

    .free {
        padding: 0.5625rem 1.1875rem;
    }

    .animate,
    .animater {
        font-size: 1.625rem;
    }
}

@media (max-width: 26.25rem) {
    .custom-tabs {
        padding: 0.0625rem 0rem;
    }

    .margin {
        margin-left: 0.625rem;
        margin-right: 0.5rem;
    }

    .font {
        font-size: 2.375rem;
        font-weight: 500;
    }

    .upgrade {
        font-size: 2rem;
    }

    .every {
        font-size: 1.5rem;
    }

    .cleaner {
        font-size: 1.25rem;
    }

    .starter-card {
        padding: 1.25rem;
    }

    .starter {
        padding: 1.25rem;
    }

    .free {
        padding: 0.5625rem 1.1875rem;
    }

    .animate,
    .animater {
        font-size: 1.625rem;
    }
}

@media (min-width: 62rem) and (max-width: 75rem) {
    .gamer-img {
        margin-top: 125% !important;
    }
}

@media (max-width: 61.999rem),
(min-width: 75rem) {
    .gamer-img {
        margin-top: 30px !important;
    }
}


.faq-section {
    padding-top: 70px;
    padding-bottom: 25px;
    background-color: white;
}

.faq-section .faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #343C6A;
    margin-bottom: 40px;
    position: relative;
    font-family: Poppins;
}

.faq-section .faq-title::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 45%;
    transform: translateX(-50%);
    background: url(/assets/images/landing-page/line.png) no-repeat center;
    background-size: contain;
    width: 100%;
    height: 32px;
}

.faq-section .accordion-item {
    border: none;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-section .accordion-item .questions {
    font-size: 1rem;
    margin-left: 0.5rem;
    color: #343C6A;
    font-family: Inter;
}

.faq-section .accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 1.25rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #343C6A;
    box-shadow: none;
    border: none;
    position: relative;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    background-color: #ceebf9;
}

.faq-section .accordion-button::after {
    display: none;
}

.faq-section .left-icon {
    font-size: 1.6875rem;
    color: #000;
    margin-right: 0.75rem;
}

.faq-section .right-icon {
    background-color: #87cefa;
    color: white;
    border-radius: 50%;
    width: 1.4375rem;
    height: 1.4375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    margin-left: auto;
}

.faq-section .accordion-body {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #343C6A;
    background-color: white;
    font-family: Inter;
}

.faq-section .question-section {
    text-align: center;
    padding: 1.875rem 0;
}

.faq-section .question-image-wrapper {
    position: relative;
    width: 10rem;
    height: 10rem;
    margin: 0 auto 1.875rem;
}

.faq-section .question-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-section .question-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    font-weight: bold;
    z-index: 2;
}

.faq-section .question-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #343C6A;
    margin-bottom: 0.625rem;
    font-family: Poppins;
}

.faq-section .question-subtitle {
    font-size: 0.75rem;
    color: #343C6A;
    margin-bottom: 1.6875rem;
    line-height: 1;
    font-family: Poppins;
    font-weight: 600;
}

.faq-section .feedback-label {
    font-size: 0.75rem;
    color: #343C6A;
    margin-bottom: 0.625rem;
    font-weight: 600;
    text-align: start;
    font-family: Poppins;
}

.faq-section .feedback-input-group {
    position: relative;
}

.faq-section .feedback-input {
    width: 100%;
    padding: 0.75rem 0.125rem 0.75rem 0.625rem;
    border: 0.0625rem solid #8CD9FE;
    font-size: 0.95rem;
    outline: none;
    font-weight: 600;
    font-family: Poppins;
    padding-right: 30px;
}

.faq-section .feedback-input:focus {
    border-color: #8CD9FE;
    box-shadow: 0 0 0 0.125rem rgba(135, 206, 250, 0.3);
}

.faq-section .feedback-input::placeholder {
    color: #343C6A;
    font-size: 0.75rem;
}

.faq-section .close-btn {
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1rem;
    color: #2c3e50;
    cursor: pointer;
    font-weight: bold;
    margin-left: 8px;
}

@media (max-width: 991px) {
    .faq-section .question-image-wrapper {
        width: 8.75rem;
        height: 8.75rem;
    }
}

@media (max-width: 575px) {
    .how-heading {
        font-size: 1.7rem;
    }

    .faq-section .faq-title {
        font-size: 1.7rem;
    }

    .faq-section .question-title {
        font-size: 1.25rem;
    }

    .faq-section .question-mark {
        font-size: 3rem;
    }

    .faq-section .question-subtitle {
        font-size: 0.6875rem;
    }

    .faq-section .question-section {
        padding: 0;
    }
}

@media (max-width: 320px) {
    .faq-section .question-image-wrapper {
        width: 7.5rem;
        height: 7.5rem;
    }

    .faq-section .question-mark {
        font-size: 2.25rem;
    }
}
