/* style.css - Enhanced Version */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

:root {
    /* Modern Fintech Color Scheme */
    --primary: #357960;
    --primary-dark: #285c4a;
    --primary-light: #e8f5f0;
    --accent: #4a8dff;
    --accent-dark: #3a70cc;
    --text-dark: #1a2521;
    --text-light: #f5f9f7;
    --bg-light: #ffffff;
    --bg-dark: #1a2521;
    --bg-gray: #f8faf9;
    --border-radius: 12px;
    --box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-main: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}


/* Navigation */
.navContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: fixed;
    width: calc(100% - 40px); /* 20px on each side */
    top: 20px;
    left: 20px;
    height: 70px;
    background-color: rgba(255,255,255,0.96);
    z-index: 1000;
    border-radius: 30px; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Stronger shadow for floating effect */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease; /* Smooth transitions */
}

.navContainer:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.navListContainer {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 180px; /* Prevent overlap with logo */
}


.logoContainer {
    position: relative;
    width: 180px; /* Match your desired logo width */
    height: 100px; /* Match your navbar height */
    display: flex;
    align-items: center;
    justify-self: start;
}

/* Video Logo Styling */
.logoContainer img { 
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio */
    object-position: left; /* Align to left */
    display: block;
    border-radius: 0; /* Remove circular mask if not needed */
    position: relative; /* Change from absolute */
    z-index: 1; /* Bring in front of other elements */
    margin: 0; /* Remove auto margins */
    padding: 0;
    top: 4px ;
    left: -30px;
}




.navList {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.navItem a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navItem a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.navItem a:hover:after {
    width: 100%;
}

.navToggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.navToggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}



.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 121, 96, 0.2);
}

/* Header Section */
.header {
    width: 100%;
    padding: 120px 0 60px; /* Adjusted for fixed nav */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-gray) 0%, white 100%);
    overflow: hidden;
}

.inner-page-header {
    padding: 100px 0 40px;
    min-height: auto;
}

.headerContent {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0;
    padding: 0 2rem;
    text-align: center;
}

.headerBtn {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.headerBtn button {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    background-color: var(--primary-light);
    color: var(--primary);
    transition: var(--transition);
}

.headerBtn button:hover {
    background-color: var(--primary);
    color: white;
}

.headerTitle {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.headerDesc {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-dark);
    opacity: 0.9;
}

.header.hero {
    height: 100vh;
}



/* Hero Graphic */
.hero-graphic {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.15;
    background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

/* Trust Indicators */
.trust-indicators {
    background: var(--bg-gray);
    padding: 3rem 0;
    text-align: center;
}

.trust-indicators p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 40px;
    opacity: 0.7;
    transition: var(--transition);
}

.trust-logos img:hover {
    opacity: 1;
}

/* Features Grid */
.features {
    padding: 5rem 0;
}

/* .container{
    display: flex;
    flex-direction: column;
    
} */

.container .section-title{
    text-align: center;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-dark);
    opacity: 0.8;
    padding: 0 0.5rem;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Testimonials */
.testimonials {
    background: var(--bg-gray);
    padding: 5rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.rating {
    color: #FFD700;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.testimonial-author p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Pricing */
.pricing {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list i {
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-outline {
    border: 2px solid white;
    color: var(--primary);
    background-color: transparent;
    box-shadow: 0 2px 8px rgba(53, 121, 96, 0.12);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

.demo-btn{
    color: var(--primary-light);
    border: none;
    box-shadow: 0 2px 8px rgba(34, 87, 187, 0.568);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
}

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

.link-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-column a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
    transition: var(--transition);
    text-decoration: none;
}

.link-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-logos {
        gap: 2rem;
    }
    
    .trust-logos img {
        height: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-outline {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}
/* Page Content Container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navList {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 7rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.05);
        transition: var(--transition);
        z-index: 999;
    }
    
    .navList.active {
        right: 0;
    }

    .navListContainer.active {
        right: 0;
    }
    
    
    .navToggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1000;
    }
    
    .navToggle .bar {
        width: 25px;
        height: 3px;
        background: var(--primary);
        transition: var(--transition);
    }
    
    .navToggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .navToggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .navToggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .headerTitle {
        font-size: 2.5rem;
    }
    
    .headerDesc {
        font-size: 1.1rem;
    }

     .nav-btn{
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 90px 0 30px; /* Reduced from 120px */
    }

    .navContainer {
        height: 60px; /* Slimmer nav bar */
    }
    
    .headerTitle {
        font-size: 2rem;
    }
    
    .headerDesc {
        font-size: 1rem;
    }
    
    .page-container {
        padding-top: 0.5rem; /* Reduced top padding */
    }
    .headerBtn {
        flex-direction: column;
        align-items: center;
    }

    .btn{
        opacity: 1;
    }

    .nav-btn{
        display: none;
    }
}
@media (max-width: 992px) {
    .footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-logo h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.7;
}

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

.link-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-column a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
    transition: var(--transition);
    text-decoration: none;
}

.link-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.legal-links {
    margin-top: 1rem;
}

.legal-links a {
    color: rgba(255,255,255,0.7);
    margin: 0 1rem;
}

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Logo Container */
.logoContainer {
    position: relative;
    width: 180px; /* Match your desired logo width */
    height: 60px; /* Match your navbar height */
    display: flex;
    align-items: center;
}

/* Video Logo Styling */
.logoContainer video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintain aspect ratio */
    object-position: left center; /* Align to left */
    display: block;
    border-radius: 0; /* Remove circular mask if not needed */
    position: relative; /* Change from absolute */
    z-index: 1; /* Bring in front of other elements */
    margin: 0; /* Remove auto margins */
    top: auto;
    left: auto;
}

/* NavList Container Adjustments */
.navListContainer {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 180px; /* Prevent overlap with logo */
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .logoContainer {
        width: 140px; /* Slightly smaller on tablets */
    }
    
    .navListContainer {
        margin-left: 140px;
    }
}

@media (max-width: 768px) {
    .logoContainer {
        width: 120px; /* Smaller on mobile */
        height: 50px;
    }
    
    .navListContainer {
        margin-left: 0; /* Reset for mobile menu */
    }
}
