/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Locomotive Scroll */
.smooth-scroll {
    position: relative;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px #020418;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    border-bottom: 1px solid #e9ecef;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #020418;
    letter-spacing: 0.5px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #020418;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #9945FF;
}

/* Dropdown Styles */
.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 190px;
    box-shadow: 0 8px 25px #020418;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #9945FF;
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Responsive */

    

/* Add some body padding to account for fixed navbar */
body {
    padding-top: 70px;
}

/* Hero Section Styles */
.hero-section {
    background-color: #020418;
    min-height: 110vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: -100px;
}

.hero-container {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 600px;
    width: 100vw;
    max-width: 1400px;
}

.hero-text {
    color: white;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.feature-icon {
    background: linear-gradient(135deg, #9945FF 0%, #7c3aed 100%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

    .feature-text {
        font-size: 1rem;
        line-height: 1.6;
        color: #e0e0e0;
    }

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, #9945FF 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(153, 69, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 69, 255, 0.4);
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #14F195;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #14F195;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 241, 149, 0.3);
}

.arrow {
    transition: transform 0.3s ease;
}

.btn-secondary:hover .arrow {
    transform: translateX(4px);
}

.compliance-note {
    display: none;
}

.compliance-icon {
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: visible;
    width: 100%;
}

.dashboard-image {
    width: 150%;
    max-width: none;
    height: auto;
    border-radius: 12px;
    margin-right: -50%;
    position: relative;
    right: 0;
}

/* Logo Slider Section */
.logo-slider-section {
    background-color: #11162A;
    padding: 20px 0;
    overflow: hidden;
    position: absolute;
    margin-top: -30px;
    width: 100%;
    
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.slider-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 50px;
    text-align: center;
}

.logo-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 80px;
}

.logo-track {
    display: flex;
    align-items: center;
    animation: slide 30s linear infinite;
    width: calc(200% + 40px);
}

.logo-item {
    flex: 0 0 auto;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 120px;
}

.company-logo {
    max-height: 50px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.company-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Fade overlays */
.fade-left, .fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, #11162A 0%, rgba(17, 22, 42, 0) 100%);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, #11162A 0%, rgba(17, 22, 42, 0) 100%);
}

/* Keyframe animation for smooth sliding */
@keyframes slide {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 0;
    position: relative;
    margin-top: 250px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 500px;
}

.feature-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-card.reverse .feature-content {
    order: 2;
}

.feature-card.reverse .feature-image {
    order: 1;
}

.feature-content {
    padding: 40px 0;
}

.feature-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.3;
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    max-width: 500px;
}

.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-img:hover {
    transform: translateY(-8px);
}

/* Vertical connecting line */
.features-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #9945FF 0%, #14F195 100%);
    transform: translateX(-50%);
    opacity: 0.2;
    z-index: 0;
}

.features-grid {
    position: relative;
}

/* Compliance Section */
.compliance-section {
    background-color:#080d3b;
    padding: 120px 0;
    border-radius: 24px;
    margin: 80px 20px 0 20px;
}

.compliance-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.compliance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.compliance-text {
    color: white;
}

.compliance-badge {
    font-size: 0.9rem;
    font-weight: 600;
    color: #9945FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.compliance-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.compliance-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.compliance-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.compliance-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.compliance-feature {
    text-align: left;
}

.compliance-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.compliance-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.4;
}

.compliance-feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

/* Process Section */
.process-section {
    background-color: #F8F9FA;
    padding: 20px 0;
    margin-top: 80px;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.process-btn {
    background: linear-gradient(135deg, #9945FF 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(153, 69, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.process-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 69, 255, 0.4);
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
}

.process-btn .arrow {
    transition: transform 0.3s ease;
}

.process-btn:hover .arrow {
    transform: translateX(4px);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}



.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 24px auto;
    box-shadow: 0 8px 24px rgba(153, 69, 255, 0.3);
}

.step-icon svg {
    color: white;
    fill: white;
    width: 32px;
    height: 32px;
    position: relative;
    left: 4px;
    top: 1px;
    display: block;
    margin: 0 auto;
}


.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.4;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

    /* CTA Section */
.cta-section {
    background-color: #11162A;
    padding: 120px 0;
    margin: 80px 20px 0 20px;
    border-radius: 24px;
}

@media screen and (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        margin: 40px 10px 0 10px;
        border-radius: 16px;
    }

    .cta-container {
        padding: 0 20px;
    }

    .cta-title {
        font-size: 30px !important;
        line-height: 1.3;
        padding: 0 10px;
    }

    .cta-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 40px;
}

.cta-btn {
    background: linear-gradient(135deg, #9945FF 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(153, 69, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(153, 69, 255, 0.5);
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
}

.cta-btn .arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.cta-btn:hover .arrow {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    background-color: #F8F9FA;
    padding: 40px 0;
    margin-top: 80px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 40px;
    background-color: #fff;
    border-radius: 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

@media screen and (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
        margin-top: 40px;
    }

    .faq-container {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .faq-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }

    .faq-answer-content p {
        font-size: 0.95rem;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-item.active .faq-question {
    border-bottom-color: #e9ecef;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    flex: 1;
    margin-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #9945FF;
    transition: transform 0.3s ease, color 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 28px 28px 28px;
}

.faq-answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.faq-link {
    color: #9945FF;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #7c3aed;
}

/* Footer */
.footer {
    background-color: #11162A;
    padding-bottom: 50px;
    padding-top: 20px;
    margin-top: 0px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-info {
    color: #b0b0b0;
}

.footer-copyright {
    font-size: 0.9rem;
    margin: 0 0 8px 0;
}

.footer-connect {
    font-size: 0.9rem;
    margin: 0 0 16px 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.facebook {
    background-color: #1877f2;
    color: white;
}

.social-link.twitter {
    background-color: #1da1f2;
    color: white;
}

.social-link.linkedin {
    background-color: #0077b5;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 69, 255, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-link:hover {
    color: #9945FF;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #2a2a3e;
    margin-top: 5px;
    padding-top: 16px;
}

.footer-bottom-content {
    text-align: center;
}

.footer-copyright-bottom {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

/* Chatbox Widget */
.chatbox-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Chat Bubble */
.chat-bubble {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9945FF 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(153, 69, 255, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(153, 69, 255, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(153, 69, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(153, 69, 255, 0.4), 0 0 0 10px rgba(153, 69, 255, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(153, 69, 255, 0.4);
    }
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.chat-window.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #9945FF 0%, #7c3aed 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    flex: 1;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #14F195;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.status-text {
    font-weight: 600;
    font-size: 1rem;
}

.chat-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.chat-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.message-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #9945FF 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.message-content {
    flex: 1;
    max-width: calc(100% - 44px);
}

.message-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.message-sender {
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
}

.message-time {
    font-size: 0.75rem;
    color: #888;
}

.message-text {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
}

.bot-message .message-text {
    background: #f8f9fa;
}

.user-message {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.user-message .message-content {
    text-align: right;
    max-width: fit-content;
    margin-left: auto;
}

.user-message .message-text {
    background: linear-gradient(135deg, #9945FF 0%, #7c3aed 100%);
    color: white;
    display: inline-block;
    max-width: fit-content;
}

/* Chat Input */
.chat-input-container {
    padding: 16px 20px;
    border-top: 1px solid #e9ecef;
    background: white;
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px 12px;
    margin-bottom: 8px;
}

.chat-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: #333;
}

.chat-input::placeholder {
    color: #888;
}

.chat-send {
    background: linear-gradient(135deg, #9945FF 0%, #7c3aed 100%);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(153, 69, 255, 0.3);
}

.chat-powered {
    text-align: center;
    font-size: 0.75rem;
    color: #888;
}

/* Mobile menu backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    /* Base font size adjustments for mobile */
    html {
        font-size: 16px;
    }
    
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 300px;
        max-width: 80%;
        text-align: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 27px rgba(0, 0, 0, 0.15);
        padding: 20px 0;
        gap: 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 9998;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .nav-link {
        padding: 15px 20px;
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 18px;
        font-weight: 700;
    }
    
    .logo-img {
        height: 50px;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile dropdown adjustments */
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: #f8f9fa;
        margin-top: 10px;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    /* Hero Section Mobile Styles */
    .hero-section {
        min-height: 80vh;
        background-color: #1e2139;
        padding: 40px 0;
        margin-bottom: 0;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-text {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 30px;
        line-height: 1.2;
        padding: 0 10px;
    }

    [data-animate] {
        opacity: 0;
        visibility: hidden;
        will-change: transform, opacity;
      }
      

    .feature-item {
        justify-content: center;
        text-align: left;
        max-width: 400px;
        margin: 0 auto 20px auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 0.95rem;
        padding: 14px 28px;
    }

    .compliance-note {
        display: none !important;
    }

    /* Hide dashboard image on mobile */
    .hero-image {
        display: none;
    }

    /* Features Section Mobile Styles */
    .features-section {
        padding: 60px 0;
        margin-top: 100px;
    }

    .features-container {
        padding: 0 15px;
    }

    .features-header {
        margin-bottom: 50px;
    }

    .features-title {
        font-size: 1.8rem;
        padding: 0 10px;
        line-height: 1.3;
    }

    .features-grid {
        gap: 80px;
    }

    .features-grid::before {
        display: none;
    }

    /* Disable GSAP animations on mobile */
    [data-animate] {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .feature-card {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        text-align: center;
    }

    .feature-card.reverse {
        grid-template-columns: 1fr;
    }

    .feature-card.reverse .feature-content {
        order: 1;
    }

    .feature-card.reverse .feature-image {
        order: 2;
    }

    .feature-content {
        padding: 20px 0;
    }

    .feature-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .feature-description {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 10px;
        line-height: 1.6;
    }

    .feature-img {
        max-width: 350px;
    }

    /* Compliance Section Mobile Styles */
    .compliance-section {
        padding: 60px 0;
        margin: 40px 10px 0 10px;
        border-radius: 16px;
    }

    .compliance-container {
        padding: 0 20px;
    }

    .compliance-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        text-align: center;
    }

    .compliance-title {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .compliance-badge {
        font-size: 0.8rem;
    }

    .compliance-features {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .compliance-feature {
        text-align: center;
        max-width: 350px;
        margin: 0 auto;
    }

    .compliance-icon {
        margin: 0 auto 24px auto;
    }

    .compliance-feature-title {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .compliance-feature-description {
        font-size: 0.95rem;
    }

    /* Process Section Mobile Styles */
    .process-section {
        padding: 80px 0;
        margin-top: 60px;
    }

    .process-header {
        margin-bottom: 60px;
    }

    .process-title {
        font-size: 1.8rem;
        padding: 0 10px;
        line-height: 1.3;
    }

    .process-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        line-height: 1.5;
    }

    .process-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .process-container {
        padding: 0 20px;
        max-width: none;
    }

    .process-steps {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        margin-top: 60px !important;
        width: 100% !important;
        grid-template-columns: none !important;
        padding: 0 10px;
    }

    .processnew {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        padding: 30px 20px !important;
    }

    .process-step {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        padding: 30px 20px !important;
        text-align: center !important;
        background: white !important;
        border-radius: 16px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
        min-height: auto !important;
        display: block !important;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        margin: 0 auto 24px auto;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: linear-gradient(135deg, #9945FF 0%, #14F195 100%) !important;
        box-shadow: 0 8px 24px rgba(153, 69, 255, 0.3) !important;
    }

    .step-icon svg {
        color: white !important;
        fill: white !important;
        width: 24px !important;
        height: 24px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .step-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .step-description {
        font-size: 0.95rem;
    }

    /* Footer Mobile Styles */
    .footer {
        margin-top: 0;
        padding: 30px 0 20px 0;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .footer-brand {
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
    }

    .footer-logo-img {
        height: 35px;
    }

    .footer-info {
        text-align: left;
        margin-top: 20px;
    }

    .footer-copyright {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .footer-connect {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .footer-social {
        justify-content: flex-start;
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .footer-column {
        border-bottom: 1px solid #2a2a3e;
        padding: 16px 0;
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    .footer-column-title {
        font-size: 1rem;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
    }

    .footer-column-title::after {
        content: '▼';
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .footer-column.active .footer-column-title::after {
        transform: rotate(180deg);
    }

    .footer-link-list {
        display: none;
        margin-top: 12px;
        padding-left: 0;
    }

    .footer-column.active .footer-link-list {
        display: block;
    }

    .footer-link {
        font-size: 0.85rem;
        margin-bottom: 8px;
        display: block;
        padding: 4px 0;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #2a2a3e;
    }

    .footer-copyright-bottom {
        font-size: 0.8rem;
    }


    .chatbox-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-bubble {
        width: 50px;
        height: 50px;
    }
    
    .chat-window {
        width: calc(100vw - 30px);
        max-width: 300px;
        height: 450px;
        bottom: 70px;
        right: 15px;
    }
    
    .chat-header {
        padding: 16px;
    }
    
    .chat-messages {
        padding: 16px;
    }
    
    .chat-input-container {
        padding: 12px 16px;
    }

    /* Additional mobile font fixes */
    .nav-link {
        font-size: 15px;
    }

    .dropdown-link {
        font-size: 14px;
    }

    .compliance-note {
        display: none !important;
    }

    /* Fix hero image overflow on mobile */
    .hero-image {
        display: none;
    }

    /* Ensure proper text wrapping */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Fix any horizontal scrolling */
    body {
        overflow-x: hidden;
    }

    .smooth-scroll {
        overflow-x: hidden;
    }

    /* Fix for process section step icons */
    .step-icon svg {
        width: 24px !important;
        height: 24px !important;
    }

    /* Ensure images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Fix dashboard image positioning */
    .dashboard-image {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
    }
}

/* Tablet responsive styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .features-title {
        font-size: 2.5rem;
    }

    .hero-content {
        gap: 40px;
    }

    .feature-card {
        gap: 60px;
    }
}


















[data-scroll-container]::after {
  content: "";
  display: block;
  height: 50px; /* adjust (5vh–20vh) depending on how much footer gets cut */
}























































.processnew {
    background: white;
    text-align: center;
    padding: 20px;





        text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
}