/* Global Styles */
:root {
    --primary-navy: #122a4b;
    --primary-maroon: #9e1c4e;
    --primary-bg: #eff8ff;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --green-badge-bg: #d1fae5;
    --green-badge-text: #065f46;
    --border-radius: 8px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-navy);
    color: var(--white);
    font-size: 12px;
    padding: 8px 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.top-bar a {
    font-weight: 700;
    text-decoration: underline;
    margin-left: 5px;
}

.close-top-bar {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
}

/* Header */
header {
    background-color: var(--primary-navy);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    object-fit: contain;
}

.desktop-nav ul {
    display: flex;
    gap: 25px;
}

.desktop-nav a {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.desktop-nav i {
    font-size: 10px;
    opacity: 0.8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    background-color: var(--white);
    color: var(--primary-maroon);
    border: 1px solid var(--white);
}

.btn-primary {
    background-color: var(--primary-maroon);
    color: var(--white);
    border: 1px solid var(--primary-maroon);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 20px 0 30px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f7ff 100%);
    position: relative;
    overflow: visible;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    margin-bottom: 160px;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}


.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}


.feature-icon {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    object-fit: contain;
}

.feature-text {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}


.gst-text {
    display: flex;
    gap: 8px;
    align-items: center;
}

.strike {
    text-decoration: line-through;
    color: var(--primary-maroon);
    font-size: 14px;
}

.highlight {
    color: var(--primary-maroon);
    font-weight: 800;
    font-size: 16px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    background-image: radial-gradient(circle, #dbeafe 60%, transparent 61%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.person-img {
    max-height: 100%;
    z-index: 10;
}

/* Zero GST Badge Implementation */
.zero-gst-badge {
    position: absolute;
    top: 80px;
    right: 20px;
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-10deg);
}

.badge-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.strike-small {
    font-size: 12px;
    text-decoration: line-through;
    color: var(--primary-navy);
    display: block;
    margin-bottom: 5px;
}

.large-text {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-maroon);
    display: block;
    background: var(--primary-maroon);
    color: white;
    padding: 2px 10px;
    transform: skewX(-10deg);
}

.gst-label {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-navy);
    display: block;
    margin-top: -5px;
    background: white;
    border: 2px solid var(--primary-navy);
    padding: 0 5px;
    transform: translate(20px, -5px);
    z-index: 21;
}


/* Cards Container - Floating White Box */
.cards-container {
    margin-top: -135px;
    position: relative;
    z-index: 30;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 1160px;
    /* Slightly less than container to show roundedness */
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}


.cards-scroller {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 0;
    scrollbar-width: thin;
    justify-content: center;
}


.cards-scroller::-webkit-scrollbar {
    height: 6px;
}

.cards-scroller::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.card {
    background: var(--white);
    min-width: 175px;
    width: 175px;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    border: 1px solid #eee;
    /* Add subtle border as they are inside white box */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 160px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    gap: 6px;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}


.card-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 0;
    border-radius: 12px 12px 0 0;
}

.bg-green {
    background-color: #d1fae5;
    color: #059669;
}

.bg-green-light {
    background-color: #d1fae5;
    color: #059669;
}

.card-icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.card-icon img {
    height: 32px;
}


.percentage-icon {
    font-size: 22px;
    font-weight: 700;
    color: #007bff;
}

.sub-icon-text {
    font-size: 9px;
    color: #666;
}


.card h3 {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    color: #222;
    margin-top: 3px;
}

/* Card CTA Button */
.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: var(--primary-maroon);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    margin-top: auto;
    transition: background-color 0.2s, transform 0.2s;
}

.card-cta:hover {
    background-color: #7d1640;
    transform: scale(1.03);
}

.card-cta i {
    font-size: 9px;
}



/* Disclaimer */
.disclaimer-container {
    margin-top: 15px;
    text-align: left;
}


.disclaimer-container p {
    font-size: 11px;
    color: #666;
}

/* Chat FAB */
.chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.chat-badge {
    background-color: red;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 101;
}

.chat-icon {
    background-color: var(--primary-maroon);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 24px;
}

.chat-icon span {
    font-size: 10px;
    font-weight: 600;
    margin-top: -2px;
}


/* Responsive */
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    /* Mobile Hero Layout - Side by Side Top, Features Below */
    .hero-container {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .hero-content {
        text-align: left;
        margin-bottom: 20px;
        width: 100%;
        display: contents;
        /* Allow children to rearrange if needed, but flex wrap handles it */
    }

    .hero h1 {
        width: 60%;
        margin-bottom: 20px;
        font-size: 24px;
        order: 1;
    }

    .hero-image {
        width: 40%;
        order: 2;
        justify-content: flex-end;
        align-items: flex-start;
        margin-top: -10px;
    }

    .image-wrapper {
        width: 140px;
        height: 140px;
        /* Adjust gradient for smaller image */
        background-image: radial-gradient(circle, #dbeafe 60%, transparent 61%);
    }

    .features-grid {
        order: 3;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 10px;
    }

    .feature-text {
        font-size: 11px;
    }

    .feature-icon,
    .feature-icon img {
        width: 24px;
        height: 24px;
    }

    /* Mobile Cards Container - Scroller to Grid */
    .cards-container {
        margin-top: 20px;
        /* Reduced negative margin on mobile to separate from content */
        margin-bottom: 20px;
        padding: 15px;
        border-radius: 15px;
        width: 95%;
        /* Little bit of side margin */
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .cards-scroller {
        flex-wrap: wrap;
        /* Turn into grid */
        justify-content: center;
        gap: 10px;
        padding: 0;
    }

    .card {
        width: 48%;
        /* 2 columns to fill space and remove gap */
        min-width: unset;
        min-height: 140px;
        padding: 10px 5px;
    }

    .card h3 {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .card-badge {
        font-size: 8px;
    }

    .card-cta {
        padding: 4px 8px;
        font-size: 9px;
    }

    .card-cta i {
        font-size: 8px;
    }
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background-color: var(--white);
    color: var(--text-dark);
}

.info-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

@media (max-width: 900px) {
    .info-section {
        padding: 40px 0;
    }

    .info-section h2 {
        font-size: 20px;
    }

    .info-section p {
        font-size: 13px;
    }
}

/* Features Section (Child, Corpus, Security) */
.features-section {
    padding: 60px 0;
    background-color: var(--white);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-block {
    text-align: left;
}

.feature-block-icon {
    margin-bottom: 20px;
}

.feature-block-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-block h3 {
    color: #1a4f8b;
    /* Axis Blueish color */
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.feature-block a {
    color: #333;
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0 80px 0;
    background-color: var(--white);
}

.faq-list {
    border-top: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    padding: 20px 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-maroon);
}

.faq-question i {
    font-size: 14px;
    color: #999;
    transition: transform 0.3s;
}

.faq-item.active .faq-question {
    color: var(--primary-maroon);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-maroon);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate max height */
}

@media (max-width: 900px) {
    .features-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-block-icon img {
        width: 50px;
        height: 50px;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #f8fbff;
    padding: 60px 0 20px 0;
    color: #333;
    border-top: 1px solid #e1e9f1;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 40px;
}

.footer-social a {
    color: #122a4b;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--primary-maroon);
}

.footer-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.footer-pill {
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #e1e9f1;
    border-radius: 30px;
    font-size: 13px;
    color: #555;
    transition: all 0.3s;
}

.footer-pill:hover {
    background: #f0f7ff;
    border-color: #007bff;
    color: #007bff;
}

.footer-group-sites {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #e1e9f1;
}

.group-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

.group-links {
    display: flex;
    gap: 25px;
}

.group-links a {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    transition: color 0.3s;
}

.group-links a:hover {
    color: var(--primary-maroon);
}

.footer-bottom-info {
    background-color: #d8e4f1;
    padding: 40px 0 20px 0;
    margin-top: 40px;
}

.regulatory-notice {
    font-size: 12px;
    color: #444;
}

.notice-title {
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.notice-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    line-height: 1.6;
}

.notice-left ul {
    margin: 10px 0 20px 20px;
    list-style-type: disc;
}

.contact-info {
    background: rgba(255, 255, 255, 0.4);
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

.highlight-info {
    color: #222;
    font-weight: 600;
}

.footer-disclaimer-accordion {
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: 12px;
    color: #555;
    padding-bottom: 0;
}

.footer-disclaimer-accordion.active .accordion-content {
    max-height: 200px;
    padding-bottom: 20px;
}

.footer-disclaimer-accordion.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-header i {
    transition: transform 0.3s;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-social {
        justify-content: center;
    }

    .footer-group-sites {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .group-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .notice-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}