/* CSS for the new modern POS landing page design */

/* Variables */
:root {
    --primary-blue: #1545d8;
    --primary-purple: #7a3ee8;
    --light-bg: #f9f9fb;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-gray: #6b7280;
    --border-color: #e5e7eb;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

/* Typography & General */
.pos-landing {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
}

.pos-landing h1, .pos-landing h2, .pos-landing h3, .pos-landing h4 {
    font-weight: 700;
    color: var(--text-dark);
}

.pos-landing p {
    color: var(--text-gray);
    line-height: 1.6;
}

.section-bg-light {
    background-color: var(--light-bg);
    padding: 60px 0;
}

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

/* Section Titles */
.section-title-modern {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-modern h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-solid-blue {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-solid-blue:hover {
    background-color: #0e33ab;
    color: var(--white);
}

.btn-outline-blue {
    background-color: transparent;
    color: var(--primary-blue);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-blue:hover {
    background-color: rgba(21, 69, 216, 0.05);
    color: var(--primary-blue);
}

/* Hero Section */
.hero-modern {
    padding: 120px 0 60px 0;
    background-color: var(--white);
}

.hero-badge {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-modern h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-modern p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-gray);
}

.hero-checks span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-checks i {
    color: #10b981; /* green check */
    font-size: 18px;
}

.hero-image-wrapper {
    position: relative;
    /* padding: 30px;
    background: linear-gradient(135deg, rgba(122, 62, 232, 0.1), rgba(21, 69, 216, 0.05)); */
    border-radius: 30px;
}

/* Built For Cards (Small Squares) */
.built-for-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.built-for-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 16px;
    width: 140px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.built-for-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.built-for-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(122, 62, 232, 0.1);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px auto;
}

.built-for-card h4 {
    font-size: 14px;
    margin: 0;
    line-height: 1.3;
}

/* Feature Cards (3 Column) */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Icon colors for features */
.icon-blue { background-color: rgba(21, 69, 216, 0.1); color: var(--primary-blue); }
.icon-green { background-color: rgba(16, 185, 129, 0.1); color: #10b981; }
.icon-red { background-color: rgba(239, 68, 68, 0.1); color: #ef4444; }
.icon-orange { background-color: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.icon-purple { background-color: rgba(122, 62, 232, 0.1); color: var(--primary-purple); }

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    margin: 0;
}

/* Banner Style (For Challenges/Benefits) */
.info-banner {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.info-banner-icon {
    flex-shrink: 0;
    width: 100px;
}

.info-banner-icon img {
    width: 100%;
}

.info-banner-content {
    flex-grow: 1;
}

.info-banner-content h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.info-banner-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info-banner-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
}

.info-banner-list i {
    color: #f59e0b;
    font-size: 20px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .info-banner {
        flex-direction: column;
        text-align: center;
    }
    .info-banner-list {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* Why Choose Icons */
.why-choose-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.why-item {
    text-align: center;
    flex: 1;
    min-width: 90px;
}

.why-item i {
    font-size: 28px;
    color: var(--primary-purple);
    margin-bottom: 10px;
    display: block;
}

.why-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Bottom CTA Banner */
.cta-banner-modern {
    background-color: #0b1a4a; /* Very dark blue */
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0;
    color: var(--white);
}

.cta-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.cta-banner-left h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 24px;
}

.cta-banner-left p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
    max-width: 600px;
}

.cta-banner-right {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-white {
    background-color: var(--white);
    color: #0b1a4a;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-white:hover {
    background-color: #f3f4f6;
    color: #0b1a4a;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

@media (max-width: 992px) {
    .cta-banner-modern {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .cta-banner-left {
        flex-direction: column;
    }
}

/* FAQ Accordion Styling */
.accordion .btn-link .bx-chevron-down {
    transition: transform 0.3s ease;
}
.accordion .btn-link[aria-expanded="true"] .bx-chevron-down {
    transform: rotate(180deg);
}
.accordion .btn-link:hover {
    text-decoration: none;
}

/* Header Background Fix for white hero section */
#header {
    background-color: #37517E !important;
}