:root {
    --primary: #2563eb;
    --accent: #111827;
    --gray: #6b7280;
    --bg: #fff;
    --section: #f5f5f7;
    --border: #e5e7eb;
    --primary-hover: #1d4ed8;
    --text: #22223b;
    --text-dark: #22223b;
    --text-white: #fff;
}

body {
    margin: 0;
    /* font-family: "Inter", Arial, sans-serif; */
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    /* background: var(--bg); */
    background: var(--section);
    color: var(--accent);
    font-size: 18px;
    line-height: 1.6;
}

#accounting-container-v1 {
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0;
    backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.04);
    transition: background 0.3s;
}

header {
    margin: 0 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 70px;
    background: transparent;
    padding: 0;
    z-index: 20;
}

header .logo {
    font-size: 2rem;
    font-weight: bold;
    color: #5e2ed6;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(94, 46, 214, 0.08);
}

header nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

header nav a {
    text-decoration: none;
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

header nav a:hover,
header nav a.active {
    background: linear-gradient(90deg, #e3e7fa 0%, #e6e6ff 100%);
    color: #5e2ed6;
}

.branding-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
    /* Adjust as needed */
}

.pt-login {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.login-tabs {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tab-btn {
    padding: 8px 16px;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    background: #ffffff;
    color: #5e2ed6;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-logins.active {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 6px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta .btn {
    padding: 10px 22px;
    font-size: 1rem;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.04);
}

.header-cta .btn-login {
    background: #f3f4f8;
    color: #5e2ed6;
    border: 1px solid #e0e0e0;
}

.header-cta .btn-login:hover {
    background: #e6e6ff;
    color: #4821b2;
}

.btn-primary {
    background: linear-gradient(90deg, #5e2ed6 0%, #3a3a5a 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.08);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #4821b2 0%, #22223b 100%);
    color: #fff;
}

.trail-input-primary {
    padding: 10px 22px;
    font-size: 1rem;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    background: linear-gradient(90deg, #5e2ed6 0%, #3a3a5a 100%);
    color: #fff;
    font-weight: 600;
    transition: background 0.2s;
}

.trail-input-primary:hover {
    background: linear-gradient(90deg, #4821b2 0%, #22223b 100%);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 16px;
}

.menu-toggle span {
    background: #5e2ed6;
    height: 3px;
    width: 26px;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 16px rgba(94, 46, 214, 0.08);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 100;
}

.mobile-menu a.nav-menu {
    text-decoration: none;
    font-size: 1.1rem;
    color: #333;
    text-align: start;
    padding: 12px 24px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: #e6e6ff;
    color: #5e2ed6;
}

/* Ensure spacing between header and hero-section */
.hero-section {
    /* background: linear-gradient(120deg, #e3f0ff 0%, #f8f9fa 100%); */
    padding: 0;
    min-height: 480px;
    margin-top: 90px; /* Space below fixed header */
}

@media (max-width: 1100px) {
    header {
        margin: 0 3%;
    }
    .hero-section {
        margin-top: 80px;
    }
}

@media (max-width: 900px) {
    header {
        margin: 0 1.5%;
    }
    header nav {
        gap: 18px;
    }
    .hero-section {
        margin-top: 70px;
    }
}

@media (max-width: 768px) {
    header {
        margin: 0 2%;
        min-height: 60px;
    }
    header nav {
        display: none;
    }
    .header-cta {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .mobile-menu {
        display: none;
    }
    .mobile-menu.active {
        display: flex;
    }
    .hero-section {
        min-height: 320px;
        padding: 0;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    header {
        margin: 0 0.5%;
        min-height: 56px;
    }
    header .logo {
        font-size: 1.3rem;
    }
    .mobile-menu a.nav-menu {
        font-size: 1rem;
        padding: 10px 16px;
    }
    .hero-section {
        margin-top: 56px;
    }
}

/* Hero Section - Modern, Simple, Visually Appealing */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 50px;
    margin: 2% 10% 0;
    gap: 40px;
}

.hero-content {
    max-width: 54%;
    background: transparent;
    color: #23223a;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-weight: 800;
    color: #3a3a5a;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(94, 46, 214, 0.06);
}

.hero-content p {
    font-size: 1.22rem;
    margin-bottom: 32px;
    color: #5a5a7a;
    line-height: 1.6;
}

.hero-content .btn {
    padding: 15px 32px;
    font-size: 1.08rem;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    font-weight: 600;
    background: linear-gradient(90deg, #5e2ed6 0%, #3a8dde 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-right: 16px;
}

.hero-content .btn:hover {
    background: linear-gradient(90deg, #4821b2 0%, #22223b 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(94, 46, 214, 0.12);
}

.hero-content .btn-secondary {
    border: 2px solid #23223a;
    background: #f3f4f8;
    color: #23223a;
    box-shadow: none;
    margin-right: 0;
}

.hero-content .btn-secondary:hover {
    background: #e3f0ff;
    color: #5e2ed6;
    border-color: #5e2ed6;
}

.hero-image {
    max-width: 38%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    border-radius: 18px;
    bottom: -100px;
}

/* Rating styles */
.rating {
    margin-top: 38px;
    width: 15%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f3f4f8;
    padding: 10px 22px;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.04);
    font-size: 1.1rem;
}

.rating i.fa-google-play {
    color: #3a8dde;
    font-size: 1.3rem;
    margin-right: 8px;
    transition: color 0.4s;
}

.rating i.fa-star {
    color: #8686b8;
    font-size: 1.2rem;
    margin-right: 2px;
    transition: color 0.4s;
}

.rating span {
    font-size: 1.15rem;
    margin-left: 6px;
    color: #868686;
    transition: color 0.4s;
}

/* Hover effects for rating */
.rating:hover .fa-google-play {
    color: #5e2ed6;
}
.rating:hover span {
    color: #23223a;
}
.rating:hover i.fa-star {
    color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-container {
        margin: 2% 3% 0;
        padding: 40px 20px;
        gap: 24px;
    }
    .hero-content {
        max-width: 60%;
    }
    .hero-image {
        max-width: 36%;
    }
}

@media (max-width: 900px) {
    .hero-container {
        /* flex-direction: column-reverse; */
        /* align-items: flex-start; */
        padding: 32px 10px;
        margin: 2% 1.5% 0;
        gap: 32px;
    }
    .hero-content {
        max-width: 100%;
        text-align: left;
    }
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    .hero-image {
        max-width: 100%;
        width: 100%;
        margin-bottom: 18px;
    }

    .rating {
        width: 20%;
    }
}

@media (max-width: 768px) {
    .hero-container {
        /* flex-direction: column-reverse;
        align-items: flex-start; */
        padding: 24px 0;
        margin: 0 2% 0;
        gap: 20px;
        border-radius: 14px;
    }
    .hero-content {
        max-width: 100%;
        text-align: left;
    }
    .hero-content h1 {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    .hero-content .btn {
        padding: 10px 18px;
        font-size: 0.98rem;
        border-radius: 28px;
        margin-bottom: 10px;
    }
    .hero-image {
        max-width: 100%;
        width: 100%;
        margin-bottom: 10px;
    }
    .hero-image img {
        border-radius: 10px;
    }
    .rating {
        width: 30%;
        margin-top: 18px;
        padding: 8px 14px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 10px 0;
        margin: 0 0.5% 0;
        gap: 10px;
        border-radius: 8px;
    }
    .hero-content h1 {
        font-size: 1.1rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .hero-content .btn {
        padding: 8px 12px;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    .hero-image img {
        border-radius: 6px;
    }
    .rating {
        margin-top: 10px;
        padding: 6px 8px;
        font-size: 0.95rem;
    }
}
/* Print section */
.print-section {
    margin: 2% 10% 0;
    padding: 50px 50px 40px 50px;
}

@media (max-width: 1100px) {
    .print-section {
        margin: 2% 3% 0;
        padding: 40px 20px 30px 20px;
    }
}

@media (max-width: 768px) {
    .print-section {
        margin: 0 2% 0;
        padding: 24px 8px 18px 8px;
        border-radius: 12px;
    }
}

.print-container {
    margin: 0 0;
    text-align: start;
    padding: 0;
}

.print-heading {
    padding: 18px 0 18px 0;
    border-radius: 10px;
    color: #23223a;
    font-weight: 700;
    font-size: 1.5rem;
}

.print-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #4821b2;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.print-section p {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: #5a5a7a;
    line-height: 1.6;
}

.print-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    padding: 10px 20px;
    min-width: 220px;
    max-width: 350px;
    height: 40px;
}

@media (max-width: 900px) {
    .print-buttons {
        width: 60%;
        min-width: 160px;
        max-width: 100%;
        gap: 10px;
        padding: 8px 10px;
        height: 36px;
    }
}

@media (max-width: 600px) {
    .print-buttons {
        width: 100%;
        min-width: 0;
        gap: 6px;
        padding: 6px 4px;
        height: 32px;
    }
}

.print-buttons button {
    border: 1px solid #e0e0e0;
    background: var(--bg);
    font-size: 1rem;
    color: #23223a;
    font-weight: 600;
    padding: 16px;
    border-radius: 22px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.print-buttons .print-btn.active,
.print-buttons button:hover {
    color: var(--text);
    border-radius: 22px;
    border: 1px solid var(--primary);
}

.print-preview {
    display: flex;
    justify-content: center;
    gap: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 24px 0;
    margin-top: 18px;
}

.print-preview img {
    max-width: 60%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(30, 34, 90, 0.08);
    background: linear-gradient(120deg, #e3f0ff 0%, #f8f9fa 100%);
}

@media (max-width: 900px) {
    .print-preview {
        gap: 10px;
        padding: 12px 0;
    }
    .print-preview img {
        width: 220px;
        border-radius: 6px;
    }
}

@media (max-width: 600px) {
    .print-preview {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 8px 0;
    }
    .print-preview img {
        width: 90vw;
        min-width: 0;
        border-radius: 4px;
    }
}

.print-preview-layout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    margin-top: 30px;
    padding: 20px;
    flex-wrap: wrap;
}

.main-preview {
    max-width: 520px;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(30, 30, 90, 0.15);
}

.overlay-preview {
    position: absolute;
    width: 200px;
    top: -20px;
    z-index: 1;
    opacity: 0.9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(30, 30, 90, 0.1);
    background: #fff;
    transition: transform 0.3s;
}

.overlay-preview.left {
    left: 100px;
    transform: rotate(-3deg);
}

.overlay-preview.right {
    right: 100px;
    transform: rotate(3deg);
}

@media (max-width: 768px) {
    .print-preview-layout {
        flex-direction: column;
        gap: 16px;
    }

    .overlay-preview {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 70%;
        margin-top: 16px;
    }
}

/* Slider section */
/* .slider-section {
    font-family: "Poppins", "Source Sans 3", Arial, sans-serif;
    margin: 2% 10% 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 56px 36px;
    background: linear-gradient(120deg, #e3f0ff 0%, #b6c7f7 40%, #5e2ed6 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(94, 46, 214, 0.1),
        0 1.5px 8px rgba(30, 34, 90, 0.06);
    gap: 40px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1100px) {
    .slider-section {
        margin: 2% 3% 0;
        padding: 36px 12px;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .slider-section {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 28px 6px;
        margin: 2% 1.5% 0;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .slider-section {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 12px 0;
        margin: 0 2% 0;
        gap: 12px;
        border-radius: 12px;
    }
}

.slider-content {
    max-width: 44%;
    color: #23223a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.slider-content h2 {
    font-size: 2.1rem;
    margin-bottom: 16px;
    color: #23223a;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(94, 46, 214, 0.08);
}

.slider-content p {
    font-size: 1.13rem;
    color: #4c4c6d;
    margin-bottom: 24px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .slider-content {
        max-width: 100%;
        text-align: left;
    }
    .slider-content h2 {
        font-size: 1.3rem;
    }
    .slider-content p {
        font-size: 0.98rem;
    }
}

.slider {
    max-width: 52%;
    max-height: 420px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(120deg, #e3f0ff 0%, #b6c7f7 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(94, 46, 214, 0.08),
        0 1.5px 8px rgba(30, 34, 90, 0.04);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

@media (max-width: 900px) {
    .slider {
        max-width: 100%;
        max-height: 260px;
        padding: 6px;
    }
}

@media (max-width: 600px) {
    .slider {
        max-width: 100%;
        max-height: 160px;
        padding: 2px;
    }
}

.slider-wrapper {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
}

.slide img {
    width: 90%;
    max-width: 340px;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 2px 12px rgba(30, 34, 90, 0.1);
    background: linear-gradient(120deg, #e3f0ff 0%, #f8f9fa 100%);
    border: 1.5px solid #e0e0e0;
    transition: box-shadow 0.3s, transform 0.3s;
}

.slide img:hover {
    box-shadow: 0 6px 24px rgba(94, 46, 214, 0.18);
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .slide img {
        width: 100%;
        max-width: 180px;
        border-radius: 8px;
    }
}

@media (max-width: 600px) {
    .slide img {
        width: 100%;
        max-width: 90vw;
        border-radius: 5px;
    }
} */

.btn {
    text-decoration: none;
    padding: 10px 28px;
    font-size: 1rem;
    border: none;
    border-radius: 28px;
    cursor: pointer;
    font-weight: 600;
    background: linear-gradient(90deg, #5e2ed6 0%, #3a8dde 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.1);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-right: 12px;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: linear-gradient(90deg, #23223a 0%, #5e2ed6 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(94, 46, 214, 0.16);
}

@media (max-width: 900px) {
    .btn {
        padding: 7px 14px;
        font-size: 0.95rem;
        border-radius: 22px;
        margin-bottom: 8px;
    }
}

@media (max-width: 600px) {
    .btn {
        padding: 5px 10px;
        font-size: 0.88rem;
        border-radius: 16px;
    }
}

/* Wrapper to isolate styles */
.bizMitraSliderWrapper {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

/* Center slider with margins */
.bizMitraSlider {
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* Slider container */
.bizMitraSliderContainer {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual slides */
.bizMitraSlide {
    min-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
}

/* Slide content */
.bizMitraContent {
    padding: 28px;
    background: linear-gradient(120deg, #f8f9fa 60%, #e3f0ff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.04);
}

.bizMitraContent p {
    text-align: start;
    padding: 0 10px;
    color: #23223a;
    font-size: 1.08rem;
}

.bizMitraContent h3 {
    color: #5e2ed6;
    font-size: 1.18rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.bizMitraContent small {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Navigation buttons */
.bizMitraNavButton {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #5e2ed6 0%, #23223a 100%);
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 1000;
    font-size: 18px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.1);
    transition: background 0.2s, color 0.2s;
    opacity: 0.85;
}

.bizMitraNavButton:hover {
    background: linear-gradient(135deg, #3a8dde 0%, #5e2ed6 100%);
    color: #fff;
    opacity: 1;
}

.bizMitraLeft {
    left: 10px;
}

.bizMitraRight {
    right: 10px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .bizMitraContent {
        padding: 14px;
        font-size: 0.98rem;
    }
    .bizMitraSlide {
        min-width: 100%;
        padding: 4px;
    }
    .bizMitraNavButton {
        font-size: 16px;
        padding: 6px 10px;
    }
}

@media (max-width: 600px) {
    .slider-section {
        margin: 0 1% 0;
        padding: 8px 0;
    }
    .slider-content h2 {
        font-size: 1.05rem;
    }
    .slider-content p {
        font-size: 0.92rem;
    }
    .bizMitraContent {
        padding: 6px;
        font-size: 0.92rem;
    }
    .bizMitraNavButton {
        font-size: 14px;
        padding: 4px 7px;
    }
}

.features-section {
    margin: 1% 10%;
    padding: 40px 20px;
    /* background: #f8faff; */
    text-align: center;
    font-family: "Segoe UI", sans-serif;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.features-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 900px;
    margin-inline: auto;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    margin: 0 auto 16px;
    /* max-width: 180px; */
    height: auto;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #6b46c1;
}

.card p {
    font-size: 0.95rem;
    color: #444;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background-color: #e4e4ff;
}

.slider-nav.left {
    left: 10px;
}

.slider-nav.right {
    right: 10px;
}

/* Responsive styles */
@media (max-width: 1100px) {
    .features-section {
        margin: 1% 3%;
        padding: 32px 8px;
    }
    .slider-wrapper {
        padding: 0 10px;
    }
    .card {
        flex: 0 0 260px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .features-section {
        margin: 1% 1.5%;
        padding: 24px 0;
    }
    .features-title {
        font-size: 1.3rem;
    }
    .features-subtitle {
        font-size: 0.98rem;
        margin-bottom: 18px;
    }
    .slider-wrapper {
        padding: 0 2px;
    }
    .slider-container {
        gap: 12px;
        padding-bottom: 10px;
    }
    .card {
        flex: 0 0 80vw;
        min-width: 220px;
        max-width: 90vw;
        padding: 12px;
        border-radius: 10px;
    }
    .card img {
        max-width: 200px;
        margin-bottom: 10px;
    }
    .card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .card p {
        font-size: 0.92rem;
    }
    .slider-nav {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    .slider-nav.left {
        left: 2px;
    }
    .slider-nav.right {
        right: 2px;
    }
}

@media (max-width: 480px) {
    .features-section {
        margin: 1% 0.5%;
        padding: 12px 0;
    }
    .features-title {
        font-size: 1.05rem;
    }
    .features-subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .slider-wrapper {
        padding: 0;
    }
    .slider-container {
        gap: 8px;
        padding-bottom: 6px;
    }
    .card {
        flex: 0 0 90vw;
        min-width: 160px;
        max-width: 98vw;
        padding: 8px;
        border-radius: 7px;
    }
    .card img {
        max-width: 40px;
        margin-bottom: 6px;
    }
    .card h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    .card p {
        font-size: 0.88rem;
    }
    .slider-nav {
        width: 22px;
        height: 22px;
        font-size: 0.9rem;
    }
}

/* Info Section */
.info-section {
    align-items: center;
    justify-content: center;
    margin: 0 10%;
    padding: 32px 20px;
    /* max-width: 1166px; */
    /* background: linear-gradient(120deg, #e3f0ff 0%, #f8f9fa 100%); */
    border-radius: 18px;
    /* box-shadow: 0 4px 24px rgba(94, 46, 214, 0.06); */
}

.start-menu {
    display: flex;
    justify-content: space-between;
    margin: 0 10% 24px;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    border-radius: 14px;
    padding: 18px;
}

.info-menu {
    flex: 1;
    min-width: 200px;
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-item {
    padding: 18px 22px;
    border: 1.5px solid #e0e6f7;
    background: #fff;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
    color: #23223a;
    transition: background 0.25s, color 0.25s, border 0.25s;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(94, 46, 214, 0.03);
}

.info-item.active,
.info-item:hover {
    background: linear-gradient(120deg, #e3f0ff 0%, #f8f9fa 100%);
    color: var(--text);
    border: 1.5px solid var(--primary);
}

.info-item.active {
    font-weight: 700;
}

.info-preview {
    flex: 2.2;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #e0e6f7;
    background: var(--bg);
    border-radius: 14px;
    min-width: 260px;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.04);
}

.preview-content {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.preview-content-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(30, 34, 90, 0.07);
    background: linear-gradient(120deg, #e3f0ff 0%, #f8f9fa 100%);
}

.preview-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #23223a;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.preview-content p {
    font-size: 1.08rem;
    margin-bottom: 18px;
    color: #4c4c6d;
    line-height: 1.6;
}

.preview-content .cta-button {
    background: linear-gradient(90deg, #5e2ed6 0%, #3a8dde 100%);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.preview-content .cta-button:hover {
    background: linear-gradient(90deg, #23223a 0%, #5e2ed6 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(94, 46, 214, 0.12);
}

.preview-content:not(.hidden) {
    display: flex;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .info-section {
        margin: 0 3%;
        padding: 24px 8px;
    }
    .start-menu {
        margin: 0 3% 18px;
    }
    .info-container {
        gap: 16px;
        padding: 10px;
    }
    .info-preview {
        padding: 18px 10px;
        min-width: 180px;
    }
}

@media (max-width: 900px) {
    .info-section,
    .start-menu {
        margin: 0 1.5%;
    }
    .info-container {
        flex-direction: column;
        gap: 12px;
        padding: 6px;
    }
    .info-menu,
    .info-preview {
        flex: 1;
        min-width: 0;
    }
    .info-preview {
        border-radius: 10px;
        padding: 12px 6px;
    }
    .preview-content-img {
        height: 160px;
    }
}

@media (max-width: 600px) {
    .info-section,
    .start-menu {
        margin: 0 0.5%;
        padding: 8px 0;
    }
    .info-item {
        padding: 10px 12px;
        font-size: 0.98rem;
    }
    .preview-content h2 {
        font-size: 1.1rem;
    }
    .preview-content p {
        font-size: 0.95rem;
    }
    .preview-content .cta-button {
        padding: 8px 16px;
        font-size: 0.95rem;
    }
    .preview-content-img {
        height: 100px;
    }
}

/* more-than section */
.more-than {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    /* background: linear-gradient(120deg, #e3f0ff 0%, #f8f9fa 100%); */
    min-height: auto;
}

.more-than-container {
    font-family: "Poppins";
    /* background: #f6f7fa; */
    max-width: 1466px;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.more-than-box {
    display: flex;
    gap: 24px;
    width: 100%;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.more-than-grid {
    display: flex;
    padding: 18px;
    flex-direction: column;
    flex: 1 0 0;
    border-radius: 16px;
    background: #fff;
    border: 1.5px solid var(--border);
}

.more-than-grid h2 {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.more-than-grid p {
    font-size: 0.9rem;
}

.more-than-images img {
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(30, 34, 90, 0.06);
}

@media (max-width: 900px) {
    .more-than-container {
        padding: 0 10px;
        gap: 24px;
    }
    .more-than-box {
        gap: 12px;
    }
    .more-than-grid {
        padding: 14px 8px;
        border-radius: 10px;
    }
    .more-than-content p {
        font-size: 0.98rem;
    }
}

@media (max-width: 600px) {
    .more-than {
        padding: 18px 0;
    }
    .more-than-container {
        padding: 0 2px;
        gap: 10px;
    }
    .more-than-box {
        gap: 6px;
    }
    .more-than-grid {
        padding: 8px 4px;
        border-radius: 7px;
    }
    .more-than-content p {
        font-size: 0.92rem;
    }
}

.testimonial-section {
    padding: 48px 0;
    background: #fff;
    color: #1a1a1a;
}

.testimonial-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

.swiper {
    padding: 10px 0 50px 0;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    background: var(--bg);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s;
    position: relative;
    flex-shrink: 0;
}

.swiper-slide:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.swiper-slide::before {
    /* content: "\\201C"; */
    font-size: 3rem;
    color: #ccc;
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
    padding-left: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #bbb;
}

.author-info h3 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: #222;
}

.author-info p {
    font-size: 0.9rem;
    margin: 4px 0 0;
    color: #555;
}

.testimonial-next-button {
    text-align: right;
    margin-top: 16px;
    padding-right: 6px;
}

.testimonial-next-button button {
    background: transparent;
    color: #222;
    font-size: 1rem;
    border: 1px solid #bbb;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.testimonial-next-button button:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .swiper-slide {
        padding: 16px 12px;
    }
}

/* start-using-section */
.start-using-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    background: white;
    min-height: auto;
}

.start-using-container {
    font-family: "Poppins";
    max-width: 1166px;
    padding: 0 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.trail-input {
    display: flex;
    justify-content: space-between;
    padding: 6px 6px 6px 68px;
    border-radius: 32px;
    border: 1.5px solid #bfc8e6;
    background: #fff;
    z-index: 2;
    position: relative;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.04);
}

.trail-input input {
    height: auto;
    width: calc(100% - 16px - 230px);
    color: #3d4350;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 0;
    border: none;
    background: transparent;
}

.form-control {
    outline: none;
    display: block;
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 0.25rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

/* download-text mute  */
.download-text .pDownload {
    font-size: 20px;
    font-weight: bold;
    color: #3a8dde;
}

/* start-using-content in left side of section*/
.start-using-content {
    max-width: 50%;
}

.start-using-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #4821b2;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.start-using-content p {
    font-size: 1.15rem;
    color: #5a5a7a;
    margin-bottom: 24px;
}

.start-using-content .btn {
    padding: 15px 28px;
    font-size: 1rem;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    background: linear-gradient(90deg, #5e2ed6 0%, #3a8dde 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-right: 16px;
}

.start-using-content .btn:hover {
    background: linear-gradient(90deg, #23223a 0%, #5e2ed6 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(94, 46, 214, 0.12);
}

.start-using-content .btn-secondary {
    border: 2px solid #23223a;
    background: #f3f4f8;
    color: #23223a;
    box-shadow: none;
    margin-right: 0;
}

.start-using-content .btn-secondary:hover {
    background: #e3f0ff;
    color: #5e2ed6;
    border-color: #5e2ed6;
}

.start-using-content .btn-primary {
    background: linear-gradient(90deg, #5e2ed6 0%, #3a8dde 100%);
    color: #fff;
}

.start-using-content .btn-primary:hover {
    background: linear-gradient(90deg, #23223a 0%, #5e2ed6 100%);
    color: #fff;
}

/* start-using-image right side of section*/
.start-using-image {
    max-width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-using-image img {
    width: 100%;
    border-radius: 18px;
    /* box-shadow: 0 2px 8px rgba(94, 46, 214, 0.06);
    background: linear-gradient(120deg, #e3f0ff 0%, #f8f9fa 100%); */
}

@media (max-width: 1200px) {
    .start-using-section {
        padding: 40px 0;
    }
    .start-using-container {
        padding: 0 40px;
        gap: 32px;
    }
    .start-using-content h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    .start-using-content p {
        font-size: 1.08rem;
        margin-bottom: 20px;
    }
    .start-using-content .btn {
        padding: 12px 24px;
        font-size: 0.98rem;
        border-radius: 32px;
        margin-right: 8px;
    }
}

/* Responsive Start Using Section */
@media (max-width: 1100px) {
    .start-using-container {
        padding: 0 20px;
        gap: 24px;
    }
    .start-using-content {
        max-width: 60%;
    }
    .start-using-image {
        max-width: 36%;
    }
}

@media (max-width: 900px) {
    .start-using-container {
        /* flex-direction: column-reverse; */
        align-items: flex-start;
        padding: 0 8px;
        gap: 18px;
    }
    .start-using-content {
        max-width: 100%;
        text-align: left;
    }
    .start-using-image {
        max-width: 100%;
        width: 100%;
        margin-bottom: 18px;
    }
    .trail-input {
        padding-left: 18px;
    }
}

@media (max-width: 768px) {
    .start-using-section {
        padding: 24px 0;
    }
    .start-using-container {
        padding: 0 2%;
        gap: 10px;
    }
    .start-using-content h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .start-using-content p {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    .start-using-content .btn {
        padding: 10px 18px;
        font-size: 0.98rem;
        border-radius: 28px;
        margin-bottom: 10px;
    }
    .start-using-image {
        max-width: 100%;
        width: 100%;
        margin-bottom: 10px;
    }
    .start-using-image img {
        border-radius: 10px;
        width: 100%;
    }
    .trail-input {
        padding-left: 8px;
    }
    .download-text .pDownload {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .start-using-section {
        padding: 12px 0;
    }
    .start-using-container {
        padding: 0 0.5%;
        gap: 6px;
    }
    .start-using-content h2 {
        font-size: 1rem;
    }
    .start-using-content p {
        font-size: 0.95rem;
    }
    .start-using-content .btn {
        padding: 8px 12px;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    .start-using-image img {
        border-radius: 6px;
    }
    .trail-input {
        padding-left: 4px;
    }
    .download-text .pDownload {
        font-size: 13px;
    }
}

/* refund-hero */
.refund-hero {
    align-items: start;
    justify-content: center;
    padding: 50px;
    margin: 6% 5%;
    background: white;
}

.refund-container {
    font-family: "Poppins";
    /* background-color: #f9f9f9; */
    /* max-width: 1166px;     */
    padding: 0 80px;
    /* flex-direction: column; */
}

/* blog-post-section */
.blog-post-section {
    align-items: start;
    justify-content: center;
    /* padding: 40px; */
    margin: 6% 10%;
}

.blog-post-container {
    font-family: "Poppins";
    /* background-color: #f9f9f9; */
    /* max-width: 1166px;     */
    padding: 40px;
    /* flex-direction: column; */
}

/* comments-section */
.comments-section {
    align-items: start;
    justify-content: center;
    padding: 20px;
    /* margin: 6% 5%; */
    background: white;
}

/* comment mb-3 p-3 bg-light border rounded */
.comment {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #8bacf1;
    border-radius: 10px;
}

.comment h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.comment p {
    font-size: 1rem;
    color: #666;
}

/* privacy-hero */
.privacy-hero {
    align-items: start;
    justify-content: center;
    padding: 40px;
    margin: 6% 10%;
    background: white;
}

.privacy-container {
    font-family: "Poppins";
    /* background-color: #f9f9f9; */
    /* max-width: 1166px;     */
    padding: 0 40px;
    /* flex-direction: column; */
}

/* terms-hero */
.terms-hero {
    align-items: start;
    justify-content: center;
    padding: 50px;
    margin: 6% 5%;
    background: white;
}

/*  register section */
.register-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5% 0;
    min-height: auto;
}

.register-container {
    font-family: "Poppins";
    /* background-color: #f9f9f9; */
    max-width: 1166px;
    padding: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    /* flex-direction: column; */
    gap: 50px;
}

.register-content a {
    text-decoration: none;
    font-size: 1rem;
    color: #555;
    transition: color 0.3s;
}

.register-content .forget-password {
    font-size: 15px;
    color: #5e2ed6;
    text-decoration: none;
}

/* parter register section */
.partner-register-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5% 0;
    min-height: auto;
}

.partner-register-container {
    font-family: "Poppins";
    /* background-color: #f9f9f9; */

    padding: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    /* flex-direction: column; */
    gap: 50px;
}

/* Order form */
.order-form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5% 0;
    min-height: auto;
}

.order-form-container {
    margin: 50px auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.order-form-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: start;
    justify-content: space-between;
}

.order-form-content .row {
    display: flex;
    gap: 20px;
}

.order-form-content .form-group {
    /* display: flex; */
    flex-direction: column;
    margin-bottom: 20px;
}

.order-form-content .form-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.order-form-content select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cx-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}
.cx-modal-content {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.cx-close {
    float: right;
    font-size: 1.3rem;
    cursor: pointer;
}
#subdomainInput {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* Footer Section */
footer {
    border-top: 1.5px solid #e0e6f7;
    background: linear-gradient(90deg, #f8faff 60%, #e3f0ff 100%);
    padding: 32px 0 18px 0;
    text-align: start;
    color: #23223a;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding: 0 5%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-logo img {
    width: 90px;
    height: auto;
    border-radius: 12px;
    /* box-shadow: 0 2px 8px rgba(94, 46, 214, 0.08);
    background: #fff; */
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 180px;
}

.footer-links {
    margin-top: 12px;
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    font-size: 1.05rem;
    color: #3a3a5a;
    font-weight: 500;
    border-radius: 6px;
    padding: 6px 0;
    transition: background 0.2s, color 0.2s;
}

.footer-links a:hover {
    background: linear-gradient(90deg, #e3e7fa 0%, #e6e6ff 100%);
    color: #5e2ed6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a {
    text-decoration: none;
    font-size: 1.08rem;
    color: #3a8dde;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a:hover {
    color: #4821b2;
}

.app-links h2 {
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: #23223a;
    font-weight: 700;
}

.app-links p {
    margin-bottom: 14px;
    color: #666;
    font-size: 0.98rem;
}

.social-media {
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 12px;
}

.footer-social a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #8686b8;
    transition: color 0.2s, transform 0.2s;
    /* border-radius: 50%; */
    padding: 6px;
}

.footer-social a:hover {
    color: #5e2ed6;
    background: #e3e7fa;
    transform: translateY(-2px) scale(1.08);
}

.footer-social i.fa-facebook-f:hover {
    color: #0d54ee;
}

.footer-social i.fa-instagram:hover {
    color: #920d9e;
}

.footer-social i.fa-whatsapp:hover {
    color: #09973d;
}

.store-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.store-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: #575757;
    font-size: 1em;
    border-radius: 8px;
    padding: 6px 10px;
    /* background: #ffffff;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(94, 46, 214, 0.03); */
}

.store-links a:hover {
    background: linear-gradient(90deg, #e3e7fa 0%, #e6e6ff 100%);
    color: #5e2ed6;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.08);
}

.store-links .fa-apple,
.store-links .fa-google-play {
    transition: color 0.3s, transform 0.3s;
    font-size: 1.6em;
    margin-bottom: 4px;
}

.store-links .fa-apple:hover {
    color: #050505;
}

.store-links .fa-google-play:hover {
    color: #3a8dde;
}

.footer-legal {
    margin-top: 18px;
    color: #8686b8;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal img {
    width: 36px;
    height: auto;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(94, 46, 214, 0.03);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 0 3%;
    }
    .footer-logo {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    /* .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
        padding: 0 2%;
    } */
    .footer-logo {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .footer-content {
        width: 100%;
        align-items: center;
    }
    .footer-links,
    .footer-contact,
    .footer-social,
    .store-links {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .footer-legal {
        flex-direction: column;
        gap: 4px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        width: 60px;
    }
    .footer-links a,
    .footer-contact a {
        font-size: 0.98rem;
        padding: 4px 0;
    }
    .store-links a {
        font-size: 0.95em;
        padding: 4px 6px;
    }
    .footer-social a {
        font-size: 1.1rem;
        padding: 4px;
    }
    .footer-legal img {
        width: 22px;
    }
}
/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 2% auto;
    padding: 40px 36px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 32px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #4821b2;
    text-shadow: 0 2px 8px rgba(94, 46, 214, 0.06);
    transition: color 0.3s;
}

.faq-item {
    border-radius: 14px;
    margin-bottom: 18px;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item.active {
    box-shadow: 0 6px 24px rgba(94, 46, 214, 0.1);
}

.faq-question {
    padding: 20px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    user-select: none;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    border-radius: 14px 14px 0 0;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    background: linear-gradient(90deg, #e3e7fa 0%, #e6e6ff 100%);
}

.faq-question h3 {
    font-size: 1.18rem;
    color: #3a8dde;
    font-weight: 600;
    margin: 0;
    flex: 1;
    transition: color 0.3s;
}

.faq-item.active .faq-question h3 {
    color: #5e2ed6;
}

.faq-question .faq-toggle {
    font-size: 1.5rem;
    color: #8686b8;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
    will-change: transform;
}

.faq-item.active .faq-question .faq-toggle {
    color: #5e2ed6;
    transform: rotate(90deg);
}

.faq-answer {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 28px 0 44px;
    border-radius: 0 0 14px 14px;
    color: #23223a;
    font-size: 1.08rem;
    margin-top: 0;
    border-top: 1px solid #e0e6f7;
    line-height: 1.7;
    box-shadow: none;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    display: block;
    max-height: 500px;
    background: var(--bg);
    opacity: 1;
    padding: 18px 28px 18px 44px;
    box-shadow: 0 2px 8px rgba(94, 46, 214, 0.03);
}


/* spinner */
.spinner-border {
    display: inline-block;
    width: 0.9rem;
    height: 0.9rem;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* Hide element */
.d-none {
    display: none;
}

/* Disabled button style */
.disabled {
    pointer-events: none;
    opacity: 0.65;
}

@media (max-width: 900px) {
    .faq-section {
        max-width: 98vw;
        padding: 24px 10px;
        border-radius: 12px;
    }
    .faq-section h2 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    .faq-question,
    .faq-answer {
        padding: 14px 14px 14px 22px;
        font-size: 1rem;
    }
    .faq-answer {
        padding-left: 32px;
    }
    .faq-item {
        border-radius: 10px;
    }
    .faq-answer,
    .faq-item.active .faq-answer {
        border-radius: 0 0 10px 10px;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 12px 2px;
        border-radius: 8px;
    }
    .faq-section h2 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .faq-item {
        margin-bottom: 10px;
        border-radius: 7px;
    }
    .faq-question,
    .faq-answer {
        padding: 10px 8px 10px 12px;
        font-size: 0.95rem;
    }
    .faq-answer {
        padding-left: 18px;
    }
    .faq-answer,
    .faq-item.active .faq-answer {
        border-radius: 0 0 7px 7px;
    }
}

@media (max-width: 900px) {
    .faq-section {
        max-width: 98vw;
        padding: 24px 10px;
        border-radius: 12px;
    }
    .faq-section h2 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    .faq-question,
    .faq-answer {
        padding: 12px 12px 12px 18px;
        font-size: 1rem;
    }
    .faq-answer {
        padding-left: 28px;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 12px 2px;
        border-radius: 8px;
    }
    .faq-section h2 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .faq-item {
        margin-bottom: 10px;
        border-radius: 7px;
    }
    .faq-question,
    .faq-answer {
        padding: 8px 8px 8px 12px;
        font-size: 0.95rem;
    }
    .faq-answer {
        padding-left: 18px;
    }
}

@media (max-width: 1500px) {
    .hero-container {
        margin: 0 10%;
    }
}

/* Media Queries */
@media (max-width: 1468px) {
    .register-section {
        margin: 6% 0;
    }

    .hero-container {
        /* display: flex;
        align-items: center;
        justify-content: space-between; */
        padding: 50px;
        margin: 10% 2% 0;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: start;
    }

    .hero-image {
        max-width: 50%;
        height: auto;
    }
    .print-container {
        margin: 0 10%;
    }

    .print-section {
        text-align: start;
        padding: 10px;
        background: #fff;
    }

    .print-section h2 {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .print-section p {
        font-size: 1rem;
        margin-bottom: 20px;
        color: #666;
    }

    .print-buttons {
        padding: 5px 10px;
        border: 1px solid grey;
        width: 40%;
        height: 35px;
        border-radius: 20px;
    }

    .print-buttons button {
        font-size: 14px;
    }
}

@media (max-width: 1260px) {
    .register-section {
        margin: 8% 0;
    }

    header {
        margin: 0 5%;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 1.5rem;
    }

    .form-group input {
        padding: 0.6rem;
    }

    .form-action button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }

    .hero-section {
        margin: 0 auto;
        flex-direction: column;
        text-align: center;
    }

    .hero-container {
        /* display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 50px;
        margin: 10% 2% 0; */
        margin: 10% 0 0;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: start;
    }

    .hero-content h1 {
        font-size: 25px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-content .buttons {
        display: none;
    }

    .hero-image {
        max-width: 100%;
    }

    .branding-svg {
        display: none;
    }

    .pt-login .card-body {
        padding: 1.5rem;
    }

    .print-container {
        margin: 2% 0% 0;
        text-align: start;
        padding: 10px;
        background: #fff;
    }

    .print-section h2 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .print-section p {
        font-size: 1rem;
        margin-bottom: 20px;
        color: #666;
    }

    .print-buttons {
        padding: 5px 10px;
        border: 1px solid grey;
        width: 90%;
        height: 35px;
        border-radius: 20px;
    }

    .print-buttons button {
        font-size: 12px;
    }

    .print-preview {
        display: flex;
        justify-content: center;
        flex-direction: row;
        gap: 20px;
    }

    .print-preview img {
        width: 350px;
        height: auto;
        border-radius: 5px;
        padding: 5px;
    }

    .slider-section {
        margin: 0 auto;
        flex-direction: column;
        text-align: start;
    }

    .slider-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .slider-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .slider {
        max-width: 100%;
        max-height: 300px;
    }

    .feature-section {
        margin: 0 auto;
        text-align: start;
        margin: 0 10%;
    }

    .feature-slider-container {
        flex-direction: column;
    }

    .slider-track {
        width: calc(30% * 3);
    }

    .feature-grid {
        flex: 0 0 calc(50% - 20px);
        margin: 10px;
    }

    .feature-content p {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .prev-btn,
    .next-btn {
        font-size: 1rem;
    }

    .info-container {
        flex-direction: column;
    }

    .info-menu {
        flex: 1;
        flex-direction: row;
        overflow-x: auto;
        justify-content: space-between;
        min-width: 80%;
        margin: auto;
    }

    .info-item {
        flex: 1;
        text-align: center;
        padding: 10px;
    }

    .info-preview {
        padding: 10px;
    }

    .more-than {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 50px 0;
        background: #f6f7f7;
        min-height: auto;
    }

    .more-than-container {
        font-family: "Poppins";
        background-color: #f9f9f9;
        max-width: 1166px;
        padding: 0 20px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }

    .more-than-grid {
        display: flex;
        padding: 20px;

        gap: 24px;
        flex: 1 0 0;
        border-radius: 16px;
        background: var(--white-0, #fff);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
    }

    .more-than-grid p {
        font-size: 12px;
    }

    .more-than-grid h2 {
        font-size: 14px;
    }

    .start-using-section {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        background: white;
        min-height: auto;
    }

    .start-using-container {
        font-family: "Poppins";

        max-width: 1166px;
        padding: 0 30px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 20px;
    }

    .start-using-content {
        max-width: 100%;
    }

    .start-using-content h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .start-using-content p {
        font-size: 12px;
        color: #666;
    }

    .trail-input-btn {
        width: 90px;
        padding: 0;
    }

    .trail-input {
        display: flex;
        justify-content: space-between;
        padding: 6px 6px 6px 6px;
        border-radius: 32px;
        border: 1px solid #e0e2e7;
        background: #fff;
        z-index: 2;
        position: relative;
    }

    .trail-input input {
        width: calc(100% - 10px - 60px);
        font-size: 12px;
    }

    .trail-input-primary {
        padding: 0;
        font-size: 10px;
        border: none;
        border-radius: 40px;
        cursor: pointer;
        transition: background-color 0.3s;
        background-color: #5e2ed6;
        color: #fff;
    }

    .download-text .pDownload {
        font-size: 16px;
    }

    .trail-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
    }

    .start-using-content .btn {
        padding: 10px 20px;
        font-size: 11px;
        border: none;
        border-radius: 40px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .start-using-content .btn-secondary {
        border: 2px solid black;
        background-color: white;
    }

    .start-using-content .btn-primary {
        background-color: #5e2ed6;
        color: #fff;
    }

    .start-using-image {
        max-width: 100%;
    }

    .privacy-hero {
        font-family: "Poppins";
        align-items: start;
        justify-content: center;
        padding: 50px 20px;
        margin: 6% 0;
        background: white;
    }

    .privacy-container {
        padding: 0;
    }

    .privacy-content h4,
    p,
    h2 {
        font-size: 14px;
    }

    .terms-hero {
        font-family: "Poppins";
        align-items: start;
        justify-content: center;
        padding: 50px 20px;
        margin: 6% 0;
        background: white;
    }

    .terms-content h4,
    p,
    h3,
    h5,
    ul li {
        font-size: 14px;
    }

    .register-section {
        margin: 3% 0;
    }

    .register-content h2 {
        font-size: 1.5rem;
    }

    .order-form {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 8% 0;
        min-height: auto;
    }

    .order-form-content {
        max-width: 400px;
        padding: 0 30px;
        width: 100%;
        padding: 0 20px;
        text-align: start;
        justify-content: space-between;
    }

    .order-form-content .row {
        display: block;
        gap: 20px;
    }

    .order-form-content .form-group {
        margin-bottom: 10px;
    }

    .order-form-content .form-group input {
        padding: 5px;
    }

    .order-form-content select {
        padding: 5px;
    }

    .order-form-content .form-group label {
        font-size: 12px;
    }

    .order-form-content .form-group input {
        font-size: 12px;
    }

    .order-form-content select {
        font-size: 12px;
    }

    footer {
        border-top: 1px solid #ddd;
        background: #f9f9f9;
        padding: 20px 0;
        text-align: start;
    }

    .footer-container {
        max-width: 1500px;
        /* margin: 0 8%; */
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* gap: 60px; */
    }

    .footer-logo img {
        width: 80px;
        height: auto;
    }

    .footer-links {
        display: flex;
        gap: 20px;
    }

    .app-links .img-fluid {
        width: 100px;
        height: auto;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-social a {
        font-size: 1.2rem;
    }
}
