:root {
    --blue-50: #f0f9ff;
    --blue-100: #e0f2fe;
    --blue-200: #bae6fd;
    --blue-300: #7dd3fc;
    --blue-400: #38bdf8;
    --blue-500: #0ea5e9;
    --blue-600: #0284c7;
    --blue-700: #0369a1;
    --blue-800: #075985;
    --blue-900: #0c4a6e;
    --blue-950: #082f49;

    --violet-50: #f5f3ff;
    --violet-100: #ede9fe;
    --violet-200: #ddd6fe;
    --violet-300: #c4b5fd;
    --violet-400: #a78bfa;
    --violet-500: #8b5cf6;
    --violet-600: #7c3aed;
    --violet-700: #6d28d9;
    --violet-800: #5b21b6;
    --violet-900: #4c1d95;

    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    --purple-800: #6b21a8;
    --purple-900: #581c87;
    --purple-950: #3b0764;

    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Inter', Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--violet-100) 100%);
    scroll-behavior: smooth;
    color: var(--blue-900);
    overflow-x: hidden;
    line-height: 1.6;
}

.gradient-bg {
    background: linear-gradient(to bottom right, var(--blue-50), var(--blue-100), var(--violet-100));
}

.gradient-text {
    background: linear-gradient(to right, var(--blue-700), var(--violet-600), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.gradient-blue-violet {
    background: linear-gradient(to right, var(--blue-600), var(--violet-600));
}

.gradient-violet-blue {
    background: linear-gradient(to right, var(--violet-600), var(--blue-600));
}

.gradient-purple-blue {
    background: linear-gradient(to right, var(--purple-600), var(--blue-600));
}

.gradient-blue-purple {
    background: linear-gradient(to right, var(--blue-600), var(--purple-600));
}

.btn {
    transition: var(--transition);
    box-shadow: 0 4px 24px 0 rgba(88, 80, 189, 0.10);
    will-change: transform;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover::after {
    transform: translateX(0);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px 0 rgba(76, 68, 188, 0.25);
}

.btn-primary {
    background: linear-gradient(to right, var(--blue-600), var(--violet-600));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(to left, var(--violet-600), var(--blue-600));
}

.btn-white {
    background: white;
    color: var(--blue-700);
}

.btn-white:hover {
    background: var(--blue-100);
}

.panel-card,
.feature-card {
    background: white;
    border-radius: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.panel-card {
    border: 1.5px solid #e6e6f4;
    overflow: hidden;
    position: relative;
}

.panel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--blue-500), var(--violet-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.panel-card:hover::before {
    transform: scaleX(1);
}

.panel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(88, 68, 200, 0.2);
}

.feature-card {
    border: 1.5px solid #e6e6f4;
    box-shadow: 0 2px 16px 0 rgba(120, 90, 210, 0.07);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    box-shadow: 0 10px 32px 0 rgba(88, 68, 200, 0.15);
    transform: translateY(-8px) scale(1.03);
}

.icon-circle {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(10px);
    opacity: 0.4;
    z-index: -1;
    transform: scale(0.9);
    transition: var(--transition);
}

.feature-card:hover .icon-circle::before {
    transform: scale(1.1);
    opacity: 0.6;
}

.blue-icon-circle {
    background: linear-gradient(to bottom right, var(--blue-100), var(--violet-200));
}

.violet-icon-circle {
    background: linear-gradient(to bottom right, var(--violet-100), var(--blue-200));
}

.purple-icon-circle {
    background: linear-gradient(to bottom right, var(--blue-100), var(--purple-200));
}

/* Animations */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.animate-bounce {
    animation: bounce 1.5s infinite;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 3s ease-in-out infinite;
}

.animate-fadein {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.26, 1, .48, 1.1), transform 0.8s cubic-bezier(.26, 1, .48, 1.1);
}

.animate-fadein.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

/* Header */
header {
    width: 100%;
    padding: 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--blue-700);
    text-decoration: none;
    transition: all 0.3s;
}

.logo img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    transition: all 0.3s;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-subtext {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--violet-600);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
}
.logo-placeholder{
 height: 40px;
 width: 40px;
 border-radius: 10px;
 overflow: hidden;

}
.logo-placeholder img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-position: cover;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--blue-900);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--blue-500), var(--violet-500));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link:hover {
    color: var(--violet-700);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--blue-800);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 9rem 1rem 5rem;
    background: linear-gradient(to top right, rgba(224, 242, 254, 0.8), rgba(221, 214, 254, 0.5));
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--blue-900);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-bg-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--violet-400) 100%);
    opacity: 0.15;
    z-index: 1;
    filter: blur(40px);
}

.hero-bg-element:nth-child(1) {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    animation: pulse 8s infinite;
}

.hero-bg-element:nth-child(2) {
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    animation: pulse 10s infinite;
}

.hero-bg-element:nth-child(3) {
    top: 40%;
    left: 20%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--violet-400) 0%, var(--purple-400) 100%);
    animation: float 12s infinite;
}

.hero-bg-element:nth-child(4) {
    bottom: 30%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--purple-400) 0%, var(--blue-400) 100%);
    animation: float 14s infinite;
}

/* Section styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--blue-500), var(--violet-500));
    border-radius: 3px;
}

.section-content {
    color: var(--blue-800);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.section-list {
    list-style: none;
    padding-left: 0;
    color: var(--blue-900);
    opacity: 0.9;
}

.section-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.section-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--violet-600);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Grids */
.grid-cols-1 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2.5rem;
}

/* Footer */
footer {
    background: var(--blue-950);
    color: var(--blue-100);
    padding: 5rem 1rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-bg-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    opacity: 0.1;
    z-index: 0;
    filter: blur(30px);
}

.footer-bg-element:nth-child(1) {
    top: -50px;
    right: -50px;
    animation: pulse 12s infinite;
}

.footer-bg-element:nth-child(2) {
    bottom: -50px;
    left: -50px;
    animation: pulse 14s infinite;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 2.5rem;
    height: 2.5rem;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--blue-500);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--blue-200);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.footer-links a i {
    width: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--blue-200);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--blue-500);
    color: white;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    margin-top: 4rem;
    color: var(--blue-300);
    font-size: 0.9rem;
    position: relative;
    padding-top: 1.5rem;
}

.copyright:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--blue-600), var(--violet-600));
    padding: 6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    filter: blur(40px);
}

.cta-bg-element:nth-child(1) {
    top: -100px;
    right: -100px;
    animation: float 16s infinite;
}

.cta-bg-element:nth-child(2) {
    bottom: -100px;
    left: -100px;
    animation: float 18s infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Stats Section */
.stats-section {
    background: rgba(255, 255, 255, 0.8);
    padding: 4rem 0;
    backdrop-filter: blur(5px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--blue-700), var(--violet-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--blue-800);
    font-weight: 600;
}

/* Interactive Demo Panel */
.demo-panel {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    width: 350px;
    z-index: 999;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    display: none;
}

.demo-panel.active {
    transform: translateY(0);
    opacity: 1;
    z-index: 9999;
}

.demo-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, var(--blue-600), var(--violet-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(76, 68, 188, 0.3);
    z-index: 10000;
    transition: var(--transition);
}

.demo-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(76, 68, 188, 0.4);
}

/* Testimonials */
.testimonials {
    background: rgba(249, 250, 251, 0.8);
    padding: 6rem 0;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin: 1rem;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--blue-800);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content:before {
    content: " ";
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    font-size: 5rem;
    color: var(--blue-200);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--blue-400), var(--violet-400));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    color: var(--blue-900);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--blue-600);
    font-size: 0.9rem;
}

/* Swiper custom styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--blue-300);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: var(--blue-600);
    opacity: 1;
}

/* Interactive Demo */
.demo-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.demo-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--blue-50);
    cursor: pointer;
    transition: var(--transition);
}

.demo-step:hover {
    background: var(--blue-100);
    transform: translateX(5px);
}

.demo-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-600);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 4rem;
    }

    .grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 11rem 1rem 7rem;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .section {
        padding: 8rem 0;
    }

    .grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 5rem;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo {
        font-size: 1.25rem;
    }

    .logo img {
        width: 2rem;
        height: 2rem;
    }

    .logo-subtext {
        font-size: 0.5rem;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .btn.animate-bounce {
        animation: float 3s ease-in-out infinite;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-content {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .demo-panel {
        width: 90%;
        right: 5%;
        bottom: 6rem;
    }
}

@media (max-width: 500px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section {
        padding: 5rem 0;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}