body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #fff;
    color: #000;
    padding-top: 70px;
    /* offset for fixed header */
}

section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

@media (max-width: 768px) {
    section {
        padding: 20px 25px;
    }
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   HEADER STYLES
============================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
    text-decoration: none;
}

/* Desktop Nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: #333;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #17819b;
}

.btn-start {
    padding: 12px 22px;
    background: #000;
    color: #fff !important;
    border-radius: 20px;
    font-weight: 500;
}

.btn-start:hover {
    background: #333;
}

.btn,
.primary-btn,
.secondary-btn {
    padding: 12px 22px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn,
.btn.btn-primary {
    background: linear-gradient(90deg, #6bc8f3, #2c62f8);
    color: #fff;
    border: none;
}

.secondary-btn,
.btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #111;
}

.primary-btn:hover,
.btn.btn-primary:hover {
    opacity: 0.85;
}

/* .secondary-btn:hover,
.btn:hover {
    background: #f9f9f9;
} */

/* ============================
   MOBILE STYLES
============================ */
.mobile-controls {
    display: none;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    height: 2px;
    width: 100%;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Toggle Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   RESPONSIVE NAV BEHAVIOR
============================ */
@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 65px;
        right: 20px;
        left: 20px;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 16px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a.btn,
    .nav-links a.btn-start {
        width: 80%;
        text-align: center;
    }

    .mobile-controls {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hide desktop nav on small screens */
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    /* Only show login button by default */
    .nav-links a:not(.btn) {
        display: block;
    }

    /* Hide the full nav unless toggled */
    .header-inner>.nav-links {
        display: none;
    }

    /* Hide desktop buttons */
    .header-inner>.nav-links.active {
        display: flex;
    }
}

/* HERO */
.hero {
    text-align: center;
    overflow-x: hidden;
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-svg {
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
}

svg {
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease-in-out;
}

/*
        .hero-image-container {
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
        } */
.hero-image-container {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    animation: floatIn 3s ease-in-out infinite alternate;
}

@keyframes floatIn {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}


.hero-image-container img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: opacity 0.6s ease-in-out;
}

.hero-title {
    font-size: 2.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-title span {
    background: linear-gradient(90deg, #6bd0ff, #b1e8fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-buttons a {
    text-decoration: none;
    color: inherit;
}

.primary-btn,
.secondary-btn {
    padding: 12px 22px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.primary-btn {
    background: #000;
    color: #fff;
    border: none;
}

.secondary-btn {
    background: #fff;
    border: 1px solid #ddd;
}

.primary-btn:hover {
    opacity: 0.8;
}

.secondary-btn:hover {
    background: #f9f9f9;
}

.trusted-by {
    font-size: 0.9rem;
    color: #777;
}

.trusted-by .logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.trusted-by .logos img {
    width: 120px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.trusted-by .logos img:hover {
    opacity: 1;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    text-align: left;
}

.feature {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* features responsive */

@media (max-width: 768px) {
    .features {
        margin: 0 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* CRM & HRM */
.erp,
.crm,
.hrm {
    text-align: left;
}

.crm-content,
.hrm-content {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: space-between;
    gap: 30px;
}

.crm-content img,
.hrm-content img {
    width: 60%;
    border-radius: 10px;
}

.crm-text,
.hrm-text {
    flex: 1;
    min-width: 280px;
}

.crm-text h2,
.hrm-text h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.crm-text ul,
.hrm-text ul {
    list-style: none;
    padding: 0;
}

.crm-text li,
.hrm-text li {
    margin: 16px 0;
    color: #555;
    /* border: 1px solid #eee;
            border-radius: 6px; */
    padding: 8px 12px;
}


/* FAQ */
.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 15px 20px;
    text-align: left;
    cursor: pointer;
}

.faq-question {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #555;
}

/* TESTIMONIALS */
.testimonials {
    background: #fff;
    text-align: center;
    overflow: hidden;
}


.testimonials h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
    transition: transform 0.6s ease;
}

.testimonial-card {
    flex: 0 0 32%;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    padding: 25px;
    text-align: left;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.05);
}

.testimonial-name {
    font-weight: 600;
    font-size: 1rem;
    color: #111;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
}

.show-more {
    color: #7c3aed;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    margin-left: 5px;
}

.show-more:hover {
    text-decoration: underline;
}

.testimonial-rating {
    margin-top: 12px;
}

.testimonial-rating .fa-star {
    color: #ddd;
    transition: color 0.3s;
}

.testimonial-rating .fa-star.filled {
    color: #fbbf24;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-controls button {
    pointer-events: all;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.carousel-controls button:hover {
    background: #7dd3fc;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 80%;
    }

    .carousel-controls {
        top: 45%;
    }
}


/* APP PROMO LAYOUT */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.app-promo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .app-promo {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-mockup {
        order: -1;
        justify-content: center;
    }

    .mockup-dual {
        flex-direction: column;
        gap: 20px;
    }

    .mockup-qrcode {
        position: static;
        margin-top: 12px;
        transform: none;
    }
}

/* CONTENT AREA */
.app-promo-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.app-promo-tagline {
    display: inline-block;
    background: linear-gradient(90deg, rgba(var(--accent-2), 0.12), rgba(var(--accent-1), 0.08));
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
}

.app-promo-title {
    font-size: 28px;
    margin: 0;
    line-height: 1.2;
}

.app-promo-description {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
}

.app-promo-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* DUAL MOCKUP CONTAINER */
.app-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mockup-dual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
    position: relative;
}

/* ANDROID FRAME (Main, larger) */
.mockup-frame.android {
    background: #0b1220;
    border-radius: 26px;
    padding: 5px;
    border: 4px solid #0b1220;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.mockup-frame.android .mockup-screen img {
    width: 280px;
    height: 600px;
    border-radius: 24px;
}

/* Responsive android mockup for smaller screens */
@media (max-width: 900px) {
    .mockup-frame.android .mockup-screen img {
        width: 220px;
        height: auto;
    }

    .mockup-qrcode {
        right: -50px;
        bottom: 10%;
        transform: translateY(0);
    }
}

/* IOS FRAME (Smaller, with notch) */
.mockup-frame.ios {
    background: #f5f5f7;
    border-radius: 38px;
    padding: 4px;
    border: 2px solid #d1d5db;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(45px) translateX(-30px);
    opacity: 0.96;
    position: relative;
    z-index: 1;
}

.mockup-frame.ios .mockup-screen img {
    width: 240px;
    height: 500px;
    border-radius: 32px;
}

/* iOS Notch */
.mockup-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 20px;
    background: #111;
    border-radius: 10px;
    z-index: 3;
}

/* ios hide 900px */
@media (max-width: 900px) {
    .mockup-frame.ios {
        display: none;
    }


}

/* SCREEN SHARED */
.mockup-screen {
    overflow: hidden;
    background: #000;
    border-radius: inherit;
}

/* QR CODE FLOATING */
.mockup-qrcode {
    position: absolute;
    bottom: 15%;
    right: -70px;
    background: #fff;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(20%);
    transition: all 0.3s ease;
}

.mockup-qrcode:hover {
    transform: translateY(10%) scale(1.05);
}


/* ========== Footer ========== */
footer {
    /* margin-top: 80px; */
    background: rgba(255, 255, 255, 0.15);
    /* Transparent white glass effect */
    backdrop-filter: blur(12px);
    /* Blur for glass look */
    -webkit-backdrop-filter: blur(12px);
    color: #2d2d2d;
    padding: 48px 0 24px 0;
    border-radius: 32px 32px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    /* box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.08); */
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 66px;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 1.08rem;
}

.footer-logo p {
    font-size: 0.95rem;
    color: #555;
    max-width: 250px;
}

.footer-logo span {
    background: linear-gradient(90deg, #6bd0ff, #20a1f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-section {
    min-width: 160px;
    margin-bottom: 18px;
}

.footer-section h4 {
    color: #2d2d2d;
    margin-bottom: 10px;
    font-size: 1.01rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-top: 6px;
}

.footer-links a {
    color: #2d2d2d;
    text-decoration: none;
    opacity: 0.75;
    font-size: .97rem;
    transition: opacity .15s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    color: #333;
    font-size: .93em;
    padding-top: 20px;
    margin-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: .84;
}

.footer-copyright a {
    color: #3d6bff;
    font-weight: 500;
    text-decoration: none;
}

.footer-flag {
    width: 30px;
    height: 20px;
    vertical-align: middle;
    margin-left: 6px;
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .footer-container {
        /* flex-direction: column; */
        
        gap: 10px;
    }
    /* in one row img and p */
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        /* space between img and p */
        justify-content: space-between;
    }
    .footer-logo img {
        width: 70px;
        height: auto;
    }

}


@media (max-width: 768px) {

    .crm-content img,
    .hrm-content img {
        width: 100%;
    }
}


/* ================================
   TWO-COLUMN PRICING — CX THEME
================================ */

.pricing-section {
    position: relative;
    background: linear-gradient(180deg, #f9fafc 0%, #eef2ff 100%);
    padding: 80px 40px;
    overflow: hidden;
}


/* Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
@media (max-width: 900px) {
    .pricing-section {
        overflow: visible;        
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-summary {
        position: -webkit-sticky;
        margin-bottom: 40px;
    }
}

/* LEFT: Summary */
.pricing-summary {
    position: sticky;
    top: 100px;
    align-self: start;
}

.pricing-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1e293b;
}

.summary-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    padding: 28px;
    backdrop-filter: blur(10px);
}

.summary-card p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* Calculator */
.calc-input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.95rem;
    margin-top: 8px;
    transition: 0.3s;
}

.calc-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    outline: none;
}

.price-breakdown {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #334155;
}

.total-price {
    font-weight: 700;
    margin-top: 10px;
    color: #111827;
}

.gst-note {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 4px;
}

/* RIGHT: Pricing Cards */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
}

.old-price {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
    margin-left: 6px;
}

.plan-meta {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.trial-tag {
    background: #e0e7ff;
    color: #4338ca;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 12px;
}

/* Features */
.feature-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 8px;
}

.check-icon {
    color: #10b981;
}

/* Buttons */
.cta-btn {
    width: 100%;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.cta-btn:hover {
    background: linear-gradient(90deg, #4f46e5, #2563eb);
    transform: translateY(-2px);
}

.feature-btn {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 0.85rem;
    color: #374151;
    transition: 0.3s;
}

.feature-btn:hover {
    background: #e5e7eb;
}


/* Features List */
.features {
    list-style: none;
    padding: 0;
    margin-top: 16px;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.features li {
    font-size: 0.93rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.check-icon {
    color: #22c55e;
    font-weight: bold;
}

/* More Features Button */
.feature-btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.9rem;
    color: #111;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
}

.feature-btn:hover {
    background: #f9fafb;
    border-color: #ccc;
}

/* Buy Button */
.buy-button {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    background: linear-gradient(90deg, #7dd3fc, #a78bfa);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.buy-button:hover {
    opacity: 0.85;
}

/* Notification */
.notification {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
}

.notification.info {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease;
}

.close-btn {
    float: right;
    font-size: 1.4rem;
    cursor: pointer;
    color: #777;
}

.close-btn:hover {
    color: #000;
}

#feature-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

#feature-list li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.93rem;
    color: #333;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .plan-card {
        padding: 24px 20px;
    }

    .price {
        font-size: 1.7rem;
    }

    .pricing-calculator {
        padding: 14px;
    }
}

/* End of Pricing Page CSS */


/* blog */
/* ===============================
   BLOG PAGE — Bizmitra ERP Theme
=============================== */

/* Base Container */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 60px;
    background: #fff;
}

/* Search Form */
.blog-search-form {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.blog-search-input {
    flex: 1;
    max-width: 500px;
    padding: 12px 20px;
    border-radius: 30px 0 0 30px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-search-input:focus {
    border-color: #7dd3fc;
    box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.25);
}

.blog-search-btn {
    border-radius: 0 30px 30px 0;
    border: none;
    background: linear-gradient(90deg, #7dd3fc, #a78bfa);
    color: #fff;
    padding: 0 26px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.blog-search-btn:hover {
    opacity: 0.85;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 24px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    text-align: left;
}

/* .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
} */

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.blog-date {
    font-size: 0.85rem;
    color: #666;
}

.blog-content {
    font-size: 0.95rem;
    color: #444;
    margin-top: 12px;
    line-height: 1.6;
}


/* Empty State */
.blog-muted {
    color: #777;
    text-align: center;
    font-size: 0.95rem;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.blog-pagination .pagination {
    border: none;
}

.blog-pagination .page-link {
    border: none;
    background: transparent;
    color: #7d3afc;
    font-weight: 500;
    transition: all 0.2s;
}

.blog-pagination .page-link:hover {
    color: #000;
}

.blog-pagination .active .page-link {
    background: linear-gradient(90deg, #7dd3fc, #a78bfa);
    color: #fff;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-container {
        padding: 80px 16px 50px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.15rem;
    }
}


/* ===============================
   ABOUT US PAGE — Bizmitra ERP Theme
=============================== */

/* Container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 80px;
    background: #fff;
    color: #111;
    text-align: center;
}

/* Main Title */
.about-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Intro Paragraph */
.about-intro {
    max-width: 850px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

/* Section Titles */
.section-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 60px 0 30px;
    color: #111;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7dd3fc, #a78bfa);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* Solution Cards */
.card-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.about-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.about-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #f9fafb;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: left;
    margin: 0 auto 50px;
    max-width: 950px;
    border: 1px solid #eee;
}

.why-choose-us p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 10px;
    padding-left: 16px;
    position: relative;
}

.benefits-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Footer Paragraph */
.about-footer {
    max-width: 850px;
    margin: 0 auto 50px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}


/* Responsive */
@media (max-width: 768px) {
    .about-container {
        padding: 80px 16px;
        text-align: left;
    }

    .about-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .section-title {
        text-align: center;
    }

    .why-choose-us {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* ===============================
   CONTACT PAGE — Bizmitra ERP Theme
=============================== */

/* Header Section */
.contact-header {
    text-align: center;
    padding: 50px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-header p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Main Layout */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
    align-items: start;
}

/* Contact Form / Map Section */
.contact-form-section {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    padding: 20px;
    transition: all 0.3s ease;
}

.contact-form-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111;
    text-align: left;
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border-radius: 14px;
    border: none;
}

/* Contact Details Section */
.contact-details {
    background: #f9fafb;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #333;
}

.info-item .icon {
    font-size: 1.2rem;
    color: #7d3afc;
}

.info-item a {
    color: #555;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.info-item a:hover {
    color: #7d3afc;
}

/* Company Info */
.company-info {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
    font-size: 0.95rem;
    color: #444;
    text-align: left;
    line-height: 1.6;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.02);
}


/* Responsive Design */
@media (max-width: 992px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-header {
        padding: 80px 16px 40px;
    }

    .contact-form-section,
    .contact-details {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .contact-header h1 {
        font-size: 1.6rem;
    }

    .map-section iframe {
        height: 400px;
    }
}



.privacy-hero,
.refund-hero,
.terms-hero,
.faq-hero,
.blog-hero,
.testimonial-hero {
    padding: 50px 20% 60px;
    border-radius: 0 0 32px 32px;
}

.faq-main {
    margin: 0 auto 10px;
}

.faq-single-item {
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {

    .privacy-hero,
    .refund-hero,
    .terms-hero,
    .faq-hero,
    .blog-hero,
    .testimonial-hero {
        padding: 50px 10% 60px;
    }
}


.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;
}
