:root {
    --primary-gradient: linear-gradient(45deg, #3b82f6, #8b5cf6);
    --secondary-gradient: linear-gradient(45deg, #8b5cf6, #06b6d4);
    --accent-gradient: linear-gradient(45deg, #06b6d4, #10b981);
}

body {
    background: #111827;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

body.light-theme {
    background: #f3f4f6;
    color: #111827;
}

.text-white {
    color: #ffffff !important;
}

.text-light {
    color: #f8f9fa !important;
}

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

.nav-link {
    font-weight: 700;
}

body.light-theme .nav-link {
    color: #9CA3AF !important;
    font-weight: 700;
}

body.light-theme .input {
    background-color: white !important;
    color: rgb(1, 1, 1) !important;
}

body.light-theme .price-plan {
    color: #111827 !important;
}

body.light-theme .nav-link:hover {
    color: #111827 !important;
    font-weight: 700;
}


body.light-theme .filter-btn {
    background: transparent;
    border: 1px solid rgb(255 255 255);
    color: #2f3542;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;

}

body.light-theme .filter-btn:hover,
body.light-theme .filter-btn.active {
    background: var(--secondary-gradient);
    color: #ccc;
    border-color: #ccc;
    cursor: pointer;
}

body.light-theme label {
    color: black !important;
}

body.light-theme .navbar-custom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #3542
}


.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-tab {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    justify-content: center;
    scroll-behavior: smooth;
    max-width: 600px;
    margin: 0 auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding: 20px;
    transition: scroll-left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: scroll-position;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.filter-tab::-webkit-scrollbar {
    display: none;
}

.filter-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    padding: 5px 0;
}



body.light-theme .glassmorphism {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.gradient-text {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: rgb(142, 139, 139);
}

input::placeholder {
    color: rgb(158, 158, 158) !important;
}

textarea::placeholder {
    color: rgb(158, 158, 158) !important;
}

body.light-theme input::placeholder {
    color: #393737 !important;
}

body.light-theme textarea::placeholder {
    color: #393737 !important;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }

    100% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
    }
}

@keyframes slide-up {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes circuit {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.animate-slide-up {
    animation: slide-up 0.8s ease-out;
}

.ai-circuit {
    stroke-dasharray: 20 10;
    animation: circuit 8s linear infinite;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 65px;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 120px;
    height: 120px;
    background: #3b82f6;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    top: 40%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: #8b5cf6;
    animation: float 6s ease-in-out infinite;
    animation-delay: -2s;
}

.shape-3 {
    bottom: 30%;
    left: 20%;
    width: 150px;
    height: 150px;
    background: #06b6d4;
    animation: float 6s ease-in-out infinite;
    animation-delay: -4s;
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-loader {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-left: 6px;

}

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

.btn-loader-primary {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(99, 102, 241, 0.3);
    /* lighter track */
    border-top-color: #6366f1;
    /* your primary color */
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-left: 6px;
}

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

.card .card-text,
.card .card-title,
.card h3,
.card h4,
.card h5,
.card p {
    color: #ffffff !important;
}

body.light-theme .card .card-text,
body.light-theme .card .card-title,
body.light-theme .card h3,
body.light-theme .card h4,
body.light-theme .card h5,
body.light-theme .card p {
    color: #111827 !important;
}

.card .text-muted {
    color: #d1d5db !important;
}

body.light-theme .card .text-muted {
    color: #6b7280 !important;
}

.card-hover {
    transition: all 0.3s ease;
}

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

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 0 0 auto;
    cursor: pointer;
    white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
}

.pricing-toggle {
    width: 50px;
    height: 25px;
    background: #6b7280;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-toggle.active {
    background: var(--primary-gradient);
}

.pricing-slider {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2.5px;
    left: 2.5px;
    transition: all 0.3s ease;
}

.pricing-toggle.active .pricing-slider {
    transform: translateX(25px);
}

.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    animation: pulse-glow 2s ease-in-out infinite alternate;
    z-index: 1000;
}

.section-bg {
    background: rgba(31, 41, 55, 0.5);
}

body.light-theme .section-bg {
    background: rgba(249, 250, 251, 0.8);
}

.example-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.example-item:hover {
    transform: scale(1.05);
}

.ai-character {
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.ai-character::before {
    content: '🤖';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.modal-custom {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content-custom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.re-otp {
    text-decoration: none;
    font-size: small;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff !important;
}

body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 {
    color: #111827 !important;
}

body.light-theme .head {
    color: #ffffff !important;
}


.lead {
    color: #e5e7eb !important;
}

body.light-theme .lead {
    color: #4b5563 !important;
}

.list-unstyled li {
    color: #ffffff !important;
}

body.light-theme .list-unstyled li {
    color: #111827 !important;
}

@media (min-width: 320px) and (max-width: 376px) {
    .filter-btn {
        padding: 8px 17px !important;
    }

    .mail {
        padding: 10px !important;
    }
}

@media (max-width: 768px) {
    .filter-btn {
        scroll-snap-align: start;
        font-size: 14px;
        padding: 6px 16px;
    }

    ..filter-tab {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .hero-section {
        margin-top: 71px !important;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .filter-tab {
        overflow-x: auto;
        white-space: nowrap;
        max-width: 100%;
    }

    .filter-buttons {
        display: flex;
        flex-wrap: nowrap;
        gap: 5px;
    }

    .filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

.modal {
    display: none;
    position: fixed;
    background-color: rgb(0 0 0 / 70%);
}

.modal-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    border: none;
    margin: 0 auto;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    color: #6b7280;
    background: #f9fafb;
    border-radius: 4px;
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.google-btn {
    background: white;
    border: 1px solid #e5e7eb;
    color: #969696;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.google-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.google-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.form-control {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.form-control:focus {
    background: white;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.btn-primary {
    background: #6366f1;
    border-color: #6366f1;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #5b5df0;
    border-color: #5b5df0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: #e5e7eb;
    border-color: #e5e7eb;
    color: #374151;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #d1d5db;
    border-color: #d1d5db;
    color: #374151;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.custom-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #6366f1;
    margin: 0;
    margin-top: 1px;
    cursor: pointer;
}

.custom-checkbox label {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
}

.custom-checkbox a {
    color: #6366f1;
    text-decoration: none;
}

.custom-checkbox a:hover {
    text-decoration: underline;
}

.form-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
}

.otp-input {
    width: 48px;
    height: 48px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.otp-input:focus {
    background: white;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.business-type-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.business-type-card:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.business-type-card.active {
    border-color: #6366f1 !important;
    background: #f0f7ff;
}

.business-type-card .icon-container {
    width: 48px;
    height: 48px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.business-type-card.active .icon-container {
    background: #6366f1;
}

.business-type-card .icon-container i {
    color: #6366f1;
    font-size: 20px;
}

.business-type-card.active .icon-container i {
    color: white;
}

.country-select-dropdown {
    max-height: 200px;
    overflow-y: auto;
    z-index: 1050;
}

.country-select-dropdown li {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f1f3f5;
    color: black !important
}

.country-select-dropdown li:hover {
    background: #f9fafb;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
}

.hidden {
    display: none !important;
}

@media (max-width: 576px) {
    body {
        padding: 10px;
    }

    .modal-content {
        max-width: 100%;
        border-radius: 16px;
    }

    .close-button {
        top: 16px;
        right: 16px;
    }
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:disabled,
.btn-primary.disabled,
.show>.btn-primary.dropdown-toggle {
    background-color: #6366f1 !important;
    border-color: #6366f1 !important;
    color: #fff !important;
    box-shadow: none !important;

}