@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;400;500;600;800;900&family=Raleway:wght@400;700&display=swap");

:root {
    --primary: #3f60f3;
    --primary-light: rgb(173, 191, 252);
    --text: #1a1a1a;
    --text-muted: #6c757d;
    --text-light: #adb5bd;
    --border: #dee2e6;
    --navbar-bg: rgba(255, 255, 255, 0.85);
    --navbar-scrolled: rgba(255, 255, 255, 0.95);
    --navbar-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --text-color: #333;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    font-family: "Inter", sans-serif;
}

body {
    background: linear-gradient(135deg, #e7f0ff, #f6f7fb);
    color: var(--text);
}
.animated-background {
    background: radial-gradient(
                circle at 70% 70%,
                rgb(131, 156, 230) 0%,
                rgb(222, 231, 255) 40%,
                transparent 90%
            )
            0% 0% / 200% 200%,
        radial-gradient(
            circle at 20% 20%,
            rgba(30, 174, 219, 0.4) 0%,
            rgba(255, 255, 255, 0) 80%
        );
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

section h2 {
    font-size: 4rem;
    font-weight: 800;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* Enhanced navbar styling */
.navbar-enhanced {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: var(--navbar-bg);
    padding: 2rem 0;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-enhanced.scrolled {
    padding: 10px 0;
    background: var(--navbar-scrolled);
    box-shadow: var(--navbar-shadow);
}

.navbar-enhanced.nav-hidden {
    transform: translateY(-100%);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-brand::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.nav-link {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    left: 50%;
    opacity: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    opacity: 1;
}

.nav-item {
    position: relative;
}

/* Mega menu styling */
.mega-menu {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    animation: fadeInDown 0.3s ease forwards;
    transform-origin: top center;
    background-color: white;
    overflow: hidden;
    margin-top: 15px;
    right: auto;
    transform: translateX(-50%);
    padding: 25px !important;
    position: absolute; /* Ensure absolute positioning */
    display: none;
    z-index: 1030; /* Higher z-index to prevent overlap issues */
    left: 50%;
}

.mega-menu-inner {
    padding: 1rem;
    background: linear-gradient(145deg, #f9fbfd, #ffffff);
}

.mega-dropdown:hover .mega-menu,
.mega-menu:hover {
    display: block;
    visibility: visible;
    opacity: 1;
}

.mega-dropdown::after {
    content: "";
    position: absolute;
    height: 20px; /* Creating invisible buffer area */
    width: 100%;
    bottom: -20px;
    left: 0;
    z-index: 1020;
}

/* Feature column styling */
.feature-column {
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    padding: 10px;
}

.feature-column:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

/* Improve New Features column styling */
.new-features-column {
    background: linear-gradient(145deg, #f0f7ff, #eef6ff);
    border-radius: var(--border-radius);
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.new-feature-badge {
    background: linear-gradient(45deg, #3b82f6, #6366f1);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 8px;
    display: inline-block;
    animation: pulse-light 2s infinite;
}

@keyframes pulse-light {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Make feature items more consistent in size */
.feature-column {
    min-height: 200px;
}

/* Module headers */
.module-header {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    padding: 10px 0;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
}

.module-header .icon {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-column:hover .module-header .icon {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

/* Feature items */
.feature-item {
    display: flex;
    align-items: center;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    border-radius: 6px;
    padding: 10px 0; /* More consistent padding */
    margin-bottom: 5px;
}

.feature-item:hover {
    transform: translateX(5px);
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.05);
    padding-left: 10px;
}

/* Featured section */
.featured-section {
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.1),
        rgba(120, 171, 252, 0.2)
    );
    border-radius: var(--border-radius);
    padding: 20px;
    height: 100%;
}

.featured-section h5 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.featured-card {
    background: white;
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Get Started button */
.get-started-btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.get-started-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.get-started-btn:hover::before {
    width: 100%;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

/* Mobile enhancements */
@media (max-width: 991.98px) {
    .mega-dropdown:hover .mega-menu,
    .mega-menu:hover {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    /* Override default dropdown hover in mobile */
    .mega-dropdown::after {
        display: none; /* Remove hover buffer zone on mobile */
    }

    /* Fix the show/hide mechanism for mobile - rely only on JS */
    .mega-menu {
        display: none;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mega-menu.show {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    /* Remove blue line in mobile dropdown */
    .navbar-nav .nav-link::after {
        display: none !important;
    }

    /* Proper spacing for mobile menu items */
    .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 8px 0;
    }

    .nav-item:last-child {
        border-bottom: none;
    }
    .navbar-toggler {
        border: none;
        outline: none !important;
        box-shadow: none !important;
        padding: 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    /* Reset nav link styling on mobile */
    .navbar-nav .nav-link {
        border-bottom: none;
    }

    .navbar-nav .nav-link::after {
        background: transparent;
    }

    /* Better mobile dropdown animation */
    .mega-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .mega-menu.show {
        max-height: 2000px;
    }

    .navbar-collapse {
        background: white;
        border-radius: var(--border-radius);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 80vh;
        overflow-y: auto;
        padding: 15px;
        margin-top: 10px;
    }

    .mega-menu {
        position: static;
        max-width: 100%;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0 !important;
        animation: none;
        width: 100%;
    }

    .mobile-mega-menu {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease;
    }

    .mobile-mega-menu.show {
        max-height: 2000px;
    }

    .nav-link::after {
        bottom: -2px;
        left: 0;
        transform: translateX(0);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 30%;
        opacity: 1;
    }

    .feature-column {
        margin-bottom: 10px;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
        outline: none !important;
    }

    .navbar-toggler-icon {
        background-image: none;
        position: relative;
        height: 24px;
        width: 30px;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .navbar-toggler-icon .middle-bar {
        content: "";
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: var(--text-color);
        border-radius: 3px;
        transition: all 0.3s ease;
        left: 0;
    }

    .navbar-toggler-icon::before {
        top: 0;
    }

    .navbar-toggler-icon .middle-bar {
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-toggler-icon::after {
        bottom: 0;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 10px;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon .middle-bar {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        bottom: 10px;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3.7rem;
    font-weight: 800;
}

.highlight {
    color: var(--primary);
}

.hero p {
    color: var(--text-muted);
    font-size: 1.4rem;
}

.hero p.trust-text {
    color: gray;
    font-size: 0.9rem;
}

/* Dashboard mockup */
.dashboard-mockup {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    box-shadow: 15px 15px 0 var(--primary-light);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--border);
    font-weight: bold;
}

/* Mega dropdown */
.mega-dropdown .dropdown-menu.mega-menu {
    width: 1000px;
    transform: translateX(-50%);
    left: 50%;
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    animation-duration: 0.3s;
}

/* Animation for dropdown */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

.fadeIn {
    animation-name: fadeIn;
}

/* Mobile dropdown styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }

    .mega-dropdown .dropdown-menu.mega-menu {
        width: 100%;
        transform: none;
        left: 0;
        box-shadow: none;
        margin-left: 1rem;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Media queries */
@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero p,
    .trust-text {
        text-align: center;
    }

    .hero .btn-group {
        justify-content: center;
    }

    .dashboard-mockup {
        margin-top: 2rem;
    }

    .mega-dropdown .dropdown-menu.mega-menu {
        padding: 1rem;
    }

    .mega-dropdown .dropdown-menu .row {
        flex-direction: column;
    }

    .mega-dropdown .dropdown-menu .col-md-4 {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-section h2 {
    font-size: 4rem;
    font-weight: 800;
}
.features-section h3 {
    font-weight: 600;
    opacity: 0.8;
}
.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.feature-card:hover {
    scale: 1.02;
    box-shadow: 0 15px 30px rgba(63, 96, 243, 0.15);
    background-color: #fafafae5;
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0;
}
.feature-card:hover .icon-circle {
    transform: scale(1.1);
    background-color: rgba(63, 96, 243, 0.18);
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(63, 96, 243, 0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 24px;
    color: var(--primary);
}
/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-container {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(135deg, #4776e6, #537df5);
    box-shadow: 0 15px 30px rgba(63, 96, 243, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cta-container:hover {
    transform: translateY(-5px);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
}

.highlight-white {
    position: relative;
    color: white;
}

.highlight-white:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn-cta {
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover i {
    animation: slideRight 0.8s infinite alternate;
}

@keyframes slideRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(5px);
    }
}

/* Interactive elements */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.cta-highlight-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
}
.cta-section .animated {
    visibility: hidden;
}

.cta-section.animated-triggered .animated {
    visibility: visible;
}

.btn-cta:hover {
    background-color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Additional Features Section */
.additional-features-section {
    background: linear-gradient(135deg, #f7faff 0%, #eef3ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.additional-features-section {
    /* Tab Navigation */
    .features-tabs-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        overflow-x: auto; /* Enable horizontal scrolling */
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }

    h2 {
        font-size: 5rem;
        font-weight: 800;
    }

    .features-tabs-wrapper::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari */
    }

    .features-tabs {
        display: flex;
        gap: 8px;
        padding: 8px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        flex-wrap: nowrap; /* Prevent wrapping */
        overflow-x: auto; /* Enable horizontal scrolling */
    }

    .features-tabs::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .feature-tab {
        padding: 10px 16px;
        border-radius: 8px;
        border: none;
        background: transparent;
        color: #64748b;
        font-weight: 500;
        white-space: nowrap; /* Prevent text wrapping */
        transition: all 0.2s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .feature-tab.active {
        background: #f0f5ff;
        color: #3b82f6;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
    }

    .feature-tab i {
        transition: transform 0.2s ease;
    }

    .feature-tab:hover i {
        transform: scale(1.2);
    }

    .feature-tab.active {
        background: #f0f5ff;
        color: #3b82f6;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
    }

    /* Feature Display */
    .feature-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

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

    .feature-icon-container {
        height: 120px;
        width: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }

    .feature-icon-container img {
        max-width: 100%;
        max-height: 100%;
        transition: transform 0.5s ease;
    }

    .feature-content {
        padding: 20px;
        transition: opacity 0.3s ease;
    }

    .feature-title {
        font-size: 2rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 15px;
        transition: color 0.3s ease;
    }

    .feature-description {
        color: #4b5563;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .learn-more-btn {
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .learn-more-btn:hover i {
        animation: arrow-bounce 1s infinite;
    }

    @keyframes arrow-bounce {
        0%,
        100% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(5px);
        }
    }

    /* Progress Bar */
    .progress-container {
        width: 200px;
        height: 4px;
        background: rgba(203, 213, 225, 0.3);
        border-radius: 2px;
        margin: 0 auto;
        overflow: hidden;
    }

    .progress-bar {
        height: 100%;
        background: #3b82f6;
        width: 0;
        border-radius: 2px;
        transition: width 0.2s linear;
    }

    /* Fade animations for transitions */
    .fade-out {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .fade-in {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .additional-features-section {
        .feature-card {
            height: 220px;
            padding: 30px 20px;
        }

        .feature-title {
            font-size: 1.5rem;
        }

        .feature-description {
            font-size: 1rem;
        }

        .features-tabs {
            padding: 6px;
        }

        .features-tabs-wrapper {
            padding: 0 10px; /* Add padding for better spacing on mobile */
        }

        .feature-tab {
            font-size: 0.9rem; /* Reduce font size for smaller screens */
            padding: 8px 12px;
        }
    }
}
/* Testimonial Styling */
.customer-stories-section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.customer-stories-section h2 {
    font-size: 4rem;
    font-weight: 800;
}

.highlight {
    color: #4f46e5;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(79, 70, 229, 0.3);
    border-radius: 2px;
}

.testimonial-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonial-wrapper::before,
.testimonial-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.testimonial-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #f5f7ff 0%, transparent 100%);
}

.testimonial-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #f5f7ff 100%);
}

.testimonial-track {
    display: flex;
    animation: scroll 10s linear infinite;
    width: calc(400px * 8); /* Width of each card * number of cards */
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(
            calc(-400px * 4)
        ); /* Half the total width for seamless loop */
    }
}

.testimonial-item {
    flex: 0 0 auto;
    width: 400px;
    padding: 0 20px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #4f46e5 0%, #818cf8 100%);
    transition: height 0.3s ease;
}

.testimonial-card:hover::before {
    height: 100%;
}

.quote-icon {
    color: #4f46e5;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    overflow: hidden;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: #111827;
}

.author-info span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Sign-up Box Styling */
.signup-container {
    position: relative;
}

.signup-box {
    background: white;
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.signup-box::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(79, 70, 229, 0.05) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.signup-box:hover::after {
    opacity: 1;
}

.signup-info,
.signup-form {
    position: relative;
    z-index: 1;
}

.benefits-list li {
    margin-bottom: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.benefits-list .fa-check-circle {
    font-size: 1.1rem;
}

.form-floating > .form-control {
    padding: 1.2rem 0.75rem;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.form-floating > .form-control:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.form-floating > label {
    padding: 1.2rem 0.75rem;
}

.signup-btn {
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #4f46e5 0%, #6366f1 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.signup-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.signup-btn:hover::after {
    opacity: 1;
}

.signup-btn .fa-rocket {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.signup-btn:hover .fa-rocket {
    transform: rotate(45deg) translateX(2px);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .testimonial-track {
        width: calc(300px * 8);
    }

    .testimonial-item {
        width: 300px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 4));
        }
    }

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

    .benefits-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonial-track {
        width: calc(260px * 8);
    }

    .testimonial-item {
        width: 260px;
        padding: 0 10px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-260px * 4));
        }
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .avatar {
        width: 40px;
        height: 40px;
    }
}

/* Pricing Section Enhancements */
.pricing-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(240, 249, 255, 0.7) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    padding: 80px 0;
}
.pricing-section h2 {
    font-size: 4rem;
    font-weight: 800;
}
/* Animated background elements */
.pricing-section::before,
.pricing-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    animation: float 15s infinite alternate ease-in-out;
}

.pricing-section::before {
    background: rgba(59, 130, 246, 0.1);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.pricing-section::after {
    background: rgba(99, 102, 241, 0.1);
    bottom: -100px;
    right: -100px;
    animation-delay: -7.5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 20px);
    }
    100% {
        transform: translate(-30px, -20px);
    }
}

/* Pricing Toggle */
.pricing-toggle-container {
    margin-bottom: 40px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.pricing-toggle:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pricing-toggle-text {
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-toggle-text.active {
    color: #3b82f6;
    font-weight: 700;
}

.pricing-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: 0.4s;
}

.pricing-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-switch input:checked + .pricing-slider {
    background-color: #3b82f6;
}

.pricing-switch input:checked + .pricing-slider:before {
    transform: translateX(24px);
}

.pricing-slider.round {
    border-radius: 34px;
}

.pricing-slider.round:before {
    border-radius: 50%;
}

.save-badge {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-block;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.save-badge.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Pricing Cards */
.pricing-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card.selected {
    border: 3px solid #3b82f6;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.pricing-card.popular {
    border: 2px solid #3b82f6;
    transform: translateY(-5px) scale(1.02);
}

.pricing-card.popular:hover {
    transform: translateY(-15px) scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(45deg, #3b82f6, #6366f1);
    color: white;
    padding: 5px 30px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pricing-card-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    text-align: center;
}

.pricing-card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card-header p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.pricing-card-price {
    padding: 25px 30px;
    text-align: center;
    position: relative;
}

.price-container {
    position: relative;
    display: inline-block;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    margin-top: 5px;
    display: inline-block;
    color: #374151;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    position: relative;
    transition: all 0.3s ease;
}

.original-price {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 1rem;
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0;
    transition: all 0.3s ease;
}

.original-price.visible {
    opacity: 1;
}

.period {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 4px;
}

.pricing-card-features {
    padding: 0 30px 25px;
    flex-grow: 1;
}

.module-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.module-badge {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.module-badge:hover {
    background-color: rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
}

.module-badge.pulse {
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        background-color: rgba(59, 130, 246, 0.2);
    }
    100% {
        transform: scale(1);
    }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list li i {
    margin-right: 10px;
    font-size: 1rem;
}

.feature-list li.text-muted {
    color: #9ca3af !important;
}

.feature-list li.text-muted i {
    color: #d1d5db;
}

.choose-plan-btn {
    margin: 0 30px 25px;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient {
    background: linear-gradient(45deg, #3b82f6, #6366f1);
    border: none;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-gradient::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #6366f1, #3b82f6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-gradient:hover::after {
    opacity: 1;
}

.choose-plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Custom Plan CTA */
.contact-sales-btn {
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

/* Modal Enhancements */
.modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.signup-intro {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border-radius: 10px;
}

.selected-plan-details {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.selected-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.selected-modules .module-badge {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

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

.signup-form .form-control,
.signup-form .form-select {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.signup-form .form-control:focus,
.signup-form .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.signup-submit-btn {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.signup-btn-icon {
    position: absolute;
    right: 15px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.signup-submit-btn:hover .signup-btn-icon {
    opacity: 1;
    transform: translateX(0);
}

.signup-submit-btn:hover .signup-btn-text {
    transform: translateX(-10px);
}

.signup-btn-text {
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-card {
        margin-bottom: 30px;
    }

    .pricing-card.popular {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .pricing-toggle {
        flex-direction: column;
        padding: 15px;
    }

    .pricing-switch {
        margin: 15px 0;
    }

    .save-badge {
        position: absolute;
        top: -10px;
        right: 10px;
    }

    .pricing-card-price {
        padding: 20px 15px;
    }

    .price {
        font-size: 2.5rem;
    }

    .module-badges {
        flex-direction: column;
        align-items: center;
    }

    .module-badge {
        width: fit-content;
    }

    .modal-dialog {
        margin: 10px;
    }
}
/* Integration Section Styles */
.integrations-section {
    position: relative;
    overflow: hidden;
}

.integration-filter {
    position: relative;
    z-index: 2;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-btn {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pill-btn.active {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
}

.search-container {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    background-color: white;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.integration-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.integration-card:hover::before,
.integration-card.hover::before {
    transform: scaleX(1);
}

.integration-card:hover,
.integration-card.hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    margin: 0 auto 16px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.integration-card:hover .integration-icon,
.integration-card.hover .integration-icon {
    transform: scale(1.1);
}

.integration-name {
    margin-bottom: 16px;
    font-weight: 600;
}

.integration-details-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background-color: white;
}

.integration-card:hover .integration-details-btn,
.integration-card.hover .integration-details-btn {
    opacity: 1;
    transform: translateY(0);
}

.empty-state {
    padding: 40px 20px;
    text-align: center;
    color: #6b7280;
}

/* FAQ Section Styles */
.faq-section {
    position: relative;
    background-color: #f9fafb;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
}

.faq-search-container {
    position: relative;
}

.faq-search {
    padding: 15px 20px 15px 50px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.faq-search:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.faq-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.search-results-count {
    margin-top: 10px;
    color: #6b7280;
    font-size: 14px;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.faq-category {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category.active {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 2px 5px rgba(59, 130, 246, 0.3);
}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 16px;
}

.accordion-button {
    background-color: white;
    border-radius: 10px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    padding: 20px 24px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #3b82f6;
}

.accordion-button::after {
    background-size: 16px;
    height: 16px;
    width: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg) scale(1.2);
}

.accordion-body {
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-category-badge {
    margin-left: 12px;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 20px;
    color: white;
    background-color: #9ca3af;
    font-weight: 500;
}

.faq-category-badge.general {
    background-color: #3b82f6;
}

.faq-category-badge.billing {
    background-color: #8b5cf6;
}

.faq-category-badge.features {
    background-color: #10b981;
}

.faq-category-badge.support {
    background-color: #f59e0b;
}

.faq-feedback {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: 16px;
}

mark {
    background-color: rgba(250, 204, 21, 0.4);
    padding: 0 2px;
    border-radius: 2px;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .category-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

    .category-pills::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Opera */
    }

    .faq-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .faq-categories::-webkit-scrollbar {
        display: none;
    }

    .integration-card {
        padding: 16px;
    }

    .accordion-button {
        padding: 16px;
        font-size: 15px;
    }

    .accordion-body {
        padding: 16px;
    }

    .pill-btn,
    .faq-category {
        white-space: nowrap;
    }
}
/* Footer Section Styling */

.footer-section {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to bottom right, #1a2b45, #3a4d6e);
    color: #fff;
    padding-top: 80px;
}

/* Newsletter Styling */
.newsletter-container {
    margin-bottom: 60px;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.newsletter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-box h3 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-form .input-group {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 0.9rem;
}

.newsletter-form .btn {
    padding: 0 24px;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateX(3px);
    background-color: #2563eb;
}

.login-container .form-check-label {
    color: rgba(255, 255, 255, 0.7);
}

.form-check-label a {
    color: #fff;
    text-decoration: underline;
}

/* Main Footer Styling */
.footer-main {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    color: #fff;
    transform: scale(1.05);
}

.footer-logo::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.footer-logo:hover::after {
    width: 100%;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-5px);
}

.social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    transform: scale(1);
}

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

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

.linkedin-link:hover {
    background-color: #0a66c2;
}

.instagram-link:hover {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
    font-size: 18px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.footer-heading:hover::after {
    width: 50px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.link-hover::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.link-hover:hover {
    color: #fff;
    padding-left: 5px;
}

.link-hover:hover::before {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #fff;
}

/* Footer Particles Animation */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Animation Keyframes */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .newsletter-box {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding-top: 60px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .newsletter-box {
        text-align: center;
    }

    .newsletter-form {
        margin-top: 20px;
    }

    .footer-heading {
        margin-top: 30px;
    }

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

    .footer-bottom-links {
        justify-content: center;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        gap: 10px;
    }

    .footer-bottom-link {
        font-size: 12px;
    }
}
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleAnimation 0.7s linear;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.shake {
    animation: shakeX 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shakeX {
    0%,
    100% {
        transform: translateX(0);
    }
    20%,
    60% {
        transform: translateX(-5px);
    }
    40%,
    80% {
        transform: translateX(5px);
    }
}

.social-links a {
    transform: translateY(20px);
    opacity: 0;
    animation: socialFadeIn 0.5s forwards;
}

@keyframes socialFadeIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.highlighted-links li {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.highlighted-links li:hover {
    transform: translateX(5px);
}

.newsletter-box:hover .btn {
    animation: pulse 1s infinite;
}

.footer-link.link-hover {
    position: relative;
}

.footer-heading::after {
    transition: width 0.4s ease-in-out;
}
/* Additional footer animations */

@keyframes floatingAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.social-link {
    animation: floatingAnimation 3s ease-in-out infinite;
}

.social-link:nth-child(1) {
    animation-delay: 0s;
}
.social-link:nth-child(2) {
    animation-delay: 0.5s;
}
.social-link:nth-child(3) {
    animation-delay: 1s;
}

.footer-section {
    position: relative;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.footer-logo {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.footer-logo::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    height: 300%;
    width: 300%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.5s;
    animation: logoBlink 5s infinite;
}

@keyframes logoBlink {
    0% {
        left: -100%;
        top: -100%;
    }
    20% {
        left: 100%;
        top: 100%;
    }
    100% {
        left: 100%;
        top: 100%;
    }
}

/* Newsletter form animation */
.newsletter-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
    animation: glowingInput 2s infinite;
}

@keyframes glowingInput {
    0% {
        box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.1);
    }
    50% {
        box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.1);
    }
}

/* Back to top button hover animation */
.back-to-top:hover i {
    animation: bounceUp 1s infinite;
}

@keyframes bounceUp {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Enhanced mobile responsiveness */
@media (max-width: 576px) {
    .newsletter-box {
        padding: 15px;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .input-group input,
    .newsletter-form .input-group button {
        width: 100%;
        border-radius: 8px;
    }

    .newsletter-form .input-group button {
        margin-top: 10px;
    }

    .footer-particles {
        opacity: 0.5;
    }
}
.nav-link,
.btn {
    position: relative;
    overflow: hidden;
}
.nav-ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 5px;
    height: 5px;
    animation: ripple 0.7s linear;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
@keyframes ripple {
    to {
        transform: scale(20);
        opacity: 0;
    }
}
/* Book Demo Section Styles */
.book-demo-section {
    position: relative;
    overflow: hidden;
}

.book-demo-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.05);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.book-demo-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.05);
    bottom: -50px;
    right: -50px;
    z-index: 0;
}

.demo-features .feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.demo-features .feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: rgba(59, 130, 246, 0.2);
}

.demo-testimonial {
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.demo-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.demo-form-wrapper {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.demo-form-wrapper:hover {
    transform: translateY(-5px);
}
.form-floating.form-group {
    position: relative;
}
.form-floating {
    position: relative;
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    opacity: 0.5;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.form-floating .form-icon {
    top: 32px;
}

.form-control:focus + label + .form-icon,
.form-select:focus + label + .form-icon {
    color: #0d6efd;
    opacity: 1;
}

.form-floating.form-group .form-control,
.form-floating.form-group .form-select {
    padding-right: 40px;
}

.submit-demo-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-demo-btn .btn-icon {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.submit-demo-btn:hover .btn-icon {
    transform: translateX(3px);
}

.submit-demo-btn.loading .btn-text {
    visibility: hidden;
}

.submit-demo-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success animation */
.success-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    background-color: #4caf50;
    border-radius: 50%;
}

.checkmark {
    border-radius: 0;
    display: block;
    stroke-width: 6;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4caf50;
    animation: fill 0.4s ease-in-out 0.4s forwards,
        scale 0.3s ease-in-out 0.9s both;
    position: relative;
    top: 30px;
    left: 28px;
    width: 40px;
    height: 20px;
}

.checkmark.draw:after {
    content: "";
    animation: checkmark 0.8s ease-in-out forwards;
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    position: absolute;
    border-radius: 0;
    top: -10px;
    left: 8px;
    width: 25px;
    height: 40px;
    border-right: 6px solid white;
    border-top: 6px solid white;
    transform: scaleX(-1) rotate(135deg);
}

@keyframes checkmark {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4caf50;
    }
}

@keyframes scale {
    0%,
    100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.countdown {
    margin-top: 20px;
    font-size: 16px;
    color: #6c757d;
}

#countdown {
    font-weight: bold;
    margin: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .demo-form-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .feature-item {
        padding: 15px;
    }
}
/* Add this CSS to your stylesheet or in a style tag */
.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.progress-steps:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

.step {
    position: relative;
    text-align: center;
    flex: 1 1 0;
    z-index: 1;
    padding: 0 10px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: #0d6efd;
    color: white;
    box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.2);
}

.step.completed .step-number {
    background-color: #198754;
    color: white;
}

.step-text {
    font-weight: 600;
    color: #6c757d;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step.active .step-text {
    color: #0d6efd;
}

.step.completed .step-text {
    color: #198754;
}
.quantity-selector {
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Firefox */
    input[type="number"] {
        -moz-appearance: textfield;
    }
}
.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-circle.active {
    background-color: #0d6efd;
    color: white;
    box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.2);
}
.step-circle.completed {
    background-color: #198754;
    color: white;
}

#xenditAccordion .accordion-item {
    /* mb-2 and rounded-3 are applied via existing classes */
    border: 1px solid #dee2e6; /* Clearer border */
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); /* More pronounced shadow */
    transition: box-shadow 0.2s ease-in-out;
    overflow: hidden; /* Ensures child elements conform to rounded corners */
}

#xenditAccordion .accordion-item:hover {
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.12); /* Slightly enhanced shadow on item hover */
}

#xenditAccordion .accordion-button {
    /* fw-medium and rounded-3 are applied via existing classes */
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out,
        font-weight 0.15s ease-in-out;
}

/* Styles for collapsed (not selected) accordion button */
#xenditAccordion .accordion-button.collapsed {
    background-color: #ffffff; /* White background */
    color: #3f3f3f; /* Standard text color */
    font-weight: 500; /* Existing fw-medium */
}

#xenditAccordion .accordion-button.collapsed:hover {
    background-color: #dddddd; /* Subtle hover background */
}

/* Styles for expanded (selected) accordion button */
#xenditAccordion .accordion-button:not(.collapsed) {
    background-color: #d7dde7; /* A light, distinct background for selected */
    color: #0056b3; /* Darker, prominent text color for selected */
    font-weight: 600; /* Bolder text for selected */
    /* Retains Bootstrap's default inner shadow for active accordion button */
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

/* Ensure payment logos remain clear on the new background */
#xenditAccordion .accordion-button:not(.collapsed) img {
    /* No specific style needed unless contrast issues arise */
}
/* Add to your <style> section or CSS file */
.xendit-element {
    background: white;
    min-height: 38px;
}

.xendit-element.is-focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.xendit-element.is-invalid {
    border-color: #dc3545;
}

.xendit-element.is-complete {
    border-color: #28a745;
}
