:root {
    --primary-color: #4a6cf7;
    --secondary-color: #f7346b;
    --dark-color: #1d2144;
    --light-color: #f8f9ff;
    --gray-color: #959cb1;
    --transition: all 0.3s ease;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 35px rgba(74, 108, 247, 0.15);
    --border-radius: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Enhanced Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(74, 108, 247, 0.25);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, scale 0.3s ease;
    mix-blend-mode: multiply;
    border: 2px solid rgba(74, 108, 247, 0.6);
    box-shadow: 0 0 20px rgba(74, 108, 247, 0.4);
    will-change: transform, width, height, opacity, scale;
    opacity: 0;
}

/* Particle styles for cursor trail */
.cursor-particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.8;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
}

@media (min-width: 1024px) {
    .cursor-follower {
        display: block;
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 10;
}

.logo-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 5px rgba(74, 108, 247, 0.3));
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-text .primary {
    color: var(--primary-color);
    font-weight: 800;
}

.nav-links {
    display: none;
}

.nav-links a {
    margin-left: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 101;
    position: relative;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary-color);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary-color);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--dark-color);
    font-size: 36px;
    cursor: pointer;
    z-index: 102;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav-links a {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    text-align: center;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 108, 247, 0.1);
    border-radius: 30px;
    z-index: -1;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.mobile-nav-links a:hover::before {
    transform: scale(1);
    opacity: 1;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e2e6ff 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin-bottom: 50px;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #3a5ce5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
}

.hero-image {
    width: 100%;
    max-width: 500px;
}

.hero-svg {
    width: 100%;
    height: auto;
}

/* Enhanced SVG Animation */
.circle-glow {
    opacity: 0.6;
    animation: rotate 30s linear infinite;
}

.circle-1, .circle-2, .circle-3 {
    opacity: 0.5;
    transform-origin: center;
    animation: pulse 4s infinite alternate;
}

.circle-2 {
    animation-delay: 1s;
}

.circle-3 {
    animation-delay: 2s;
}

.connection-line {
    stroke-dasharray: 5, 3;
    animation: dash 20s linear infinite;
}

.people-group {
    animation: rotate 20s linear infinite;
    transform-origin: center;
}

.person-body, .person-arm, .person-leg {
    animation: sway 3s ease-in-out infinite alternate;
}

.person-head {
    animation: bounce 2s infinite alternate;
}

.person-eye {
    animation: blink 3s infinite;
}

.person-smile {
    animation: smile 5s infinite alternate;
}

.central-node {
    animation: glow 2s infinite alternate;
}

.central-pulse {
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: 1000;
    }
}

@keyframes sway {
    0% {
        transform: rotate(-3deg);
    }
    100% {
        transform: rotate(3deg);
    }
}

@keyframes blink {
    0%, 45%, 55%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.1);
    }
}

@keyframes smile {
    0% {
        d: path('M245,215 Q250,215 255,215');
    }
    100% {
        d: path('M245,215 Q250,220 255,215');
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
        r: 15;
    }
    100% {
        opacity: 0.8;
        r: 18;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.7);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-content {
        text-align: left;
        margin-bottom: 0;
        margin-right: 30px;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
}

/* Section Headers - Fixed visibility */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color) !important;
    opacity: 1 !important;
    position: relative;
    z-index: 5;
}

.section-header p {
    font-size: 18px;
    color: var(--dark-color);
    opacity: 0.8;
    position: relative;
    z-index: 5;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background-color: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    flex-grow: 0;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card ul {
    text-align: left;
    margin-top: auto;
    padding-left: 0;
    width: 100%;
}

.service-card ul li {
    margin-bottom: 10px;
    color: var(--dark-color);
    position: relative;
    padding-left: 25px;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Professional Demo Section */
.demos {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e2e6ff 100%);
    position: relative;
    z-index: 1;
}

.demos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NjUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSIjRjhGOUZGIiBkPSJNMCAwaDE0NDB2NzY1SDB6Ii8+PGNpcmNsZSBzdHJva2U9IiM0QTZDRjciIHN0cm9rZS13aWR0aD0iLjUiIGN4PSI3NzEuNSIgY3k9IjI0MS41IiByPSI3MS41IiBvcGFjaXR5PSIuMyIvPjxjaXJjbGUgc3Ryb2tlPSIjRjczNDZCIiBzdHJva2Utd2lkdGg9Ii41IiBjeD0iNDYwLjUiIGN5PSI0OTAuNSIgcj0iNTEuNSIgb3BhY2l0eT0iLjMiLz48Y2lyY2xlIHN0cm9rZT0iIzRBNkNGNyIgc3Ryb2tlLXdpZHRoPSIuNSIgY3g9IjEwODkuNSIgY3k9IjUzMC41IiByPSI0MS41IiBvcGFjaXR5PSIuMyIvPjxjaXJjbGUgc3Ryb2tlPSIjRjczNDZCIiBzdHJva2Utd2lkdGg9Ii41IiBjeD0iMTI4OS41IiBjeT0iMTQ4LjUiIHI9IjMxLjUiIG9wYWNpdHk9Ii4zIi8+PGNpcmNsZSBzdHJva2U9IiM0QTZDRjciIHN0cm9rZS13aWR0aD0iLjUiIGN4PSIxNDEuNSIgY3k9IjMyNS41IiByPSI2MS41IiBvcGFjaXR5PSIuMyIvPjwvZz48L3N2Zz4=');
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
}

.demos-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.demos-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.demo-control {
    padding: 12px 24px;
    background-color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 10;
    outline: none;
}

.demo-control:hover,
.demo-control.active {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
}

.demos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 400px;
}

@media (min-width: 768px) {
    .demos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .demos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Add ripple effect to demo controls */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Enhanced Demo Modal */
.demo-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.demo-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.demo-modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 1200px;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.demo-modal.active .demo-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.demo-modal-header {
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.demo-modal-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
}

.demo-modal-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-visit:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.demo-modal-close {
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.2);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 0;
    transition: var(--transition);
}

.demo-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.demo-modal-body {
    position: relative;
    height: 75vh;
    background-color: #ffffff;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    flex-grow: 1;
}

.demo-modal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.demo-modal-body.loaded::before {
    opacity: 0;
}

.demo-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 0;
    background-color: white;
}

/* Loading animation */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: var(--primary-color);
    z-index: 10;
}

.loading-spinner i {
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.demo-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    opacity: 1;
    display: flex;
    flex-direction: column;
}

.demo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.demo-image {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.demo-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
    opacity: 0.8;
    transition: all 0.4s ease;
    z-index: 1;
}

.demo-card:hover .demo-overlay {
    opacity: 1;
}

.demo-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.demo-tags span {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.demo-card:hover .demo-image img {
    transform: scale(1.1);
}

.demo-content {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.demo-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.demo-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.demo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 5px;
}

.demo-features span {
    font-size: 13px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
}

.demo-features span i {
    color: var(--primary-color);
}

.demo-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

/* Improved Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
    outline: none;
}

.contact-submit {
    width: 100%;
    padding: 15px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
}

@media (min-width: 768px) {
    .demos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .demos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 18px;
    color: var(--dark-color);
}

.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e6ff;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
}

.footer-logo .logo-icon path {
    stroke: #fff;
}

.footer-logo .logo-text {
    color: #fff;
}

.footer-logo .logo-text .primary {
    color: var(--primary-color);
    font-weight: 800;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Modern Design Enhancements */
:root {
    --primary-color: #4a6cf7;
    --secondary-color: #f7346b;
    --dark-color: #1d2144;
    --light-color: #f8f9ff;
    --gray-color: #959cb1;
    --transition: all 0.3s ease;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 35px rgba(74, 108, 247, 0.15);
    --border-radius: 15px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

/* Enhanced Cards and Sections */
.service-card, 
.demo-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.service-card:hover, 
.demo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover:before {
    transform: scaleX(1);
}

/* Button Styles */
.btn-primary, 
.btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover, 
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 108, 247, 0.25);
}

.btn-primary:hover {
    background-color: #3a5bd9;
}

.btn-secondary:hover {
    background-color: rgba(74, 108, 247, 0.05);
}

/* Section Styles */
.section-header:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Improved Mobile Responsiveness */
@media (max-width: 768px) {
    .cursor-follower {
        display: none;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .demo-card {
        margin-bottom: 30px;
    }
    
    .demo-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .demo-modal-content {
        width: 95%;
        margin: 15% auto 5%;
    }
    
    .demo-modal-header {
        flex-direction: column;
        padding: 15px;
    }
    
    .demo-modal-actions {
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
    }
    
    .demo-modal-body {
        height: 60vh;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .footer-content {
        gap: 20px;
    }
}

/* Responsive Enhancements for very small screens */
@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .demo-tags span {
        font-size: 10px;
        padding: 3px 7px;
    }
    
    .demo-content h3 {
        font-size: 18px;
    }
    
    .mobile-nav-links a {
        font-size: 20px;
        width: 180px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    background-color: #3a5bd7;
}

.floating-cta i {
    font-size: 24px;
}

.floating-cta-expand {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: white;
    border-radius: 30px;
    padding: 0;
    width: 0;
    height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease, width 0.3s 0.1s;
}

.floating-cta-expand.active {
    width: 250px;
    padding: 0 30px 0 25px;
    right: 100px;
    opacity: 1;
    pointer-events: all;
}

.floating-cta-expand a {
    white-space: nowrap;
    color: var(--dark-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-cta-expand a i {
    color: var(--primary-color);
    font-size: 20px;
}

body.mobile-menu-active .floating-cta,
body.mobile-menu-active .floating-cta-expand {
    z-index: -1;
    opacity: 0;
}

.mobile-nav-links a i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .floating-cta-expand.active {
        width: 200px;
        right: 80px;
    }
}





@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Glassmorphism Element */
.glass-element {
  background: rgba(255, 255, 255, 0.25); /* Slightly more opaque for better readability */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); /* For Safari */
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  transition: all 0.3s ease;
}

.glass-element:hover {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.15);
  transform: translateY(-5px);
}

/* Header Redesign */
header {
    position: sticky;
    top: 20px;
    margin: 0 20px;
    width: calc(100% - 40px);
    border-radius: 15px;
}

.logo-text {
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    padding: 30px;
    text-align: center;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.pricing-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-card .note {
    font-size: 14px;
    color: var(--gray-color);
}

@media (max-width: 768px) {
    .glass-element {
        background: var(--light-color);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    }

    header.glass-element {
        margin: 0;
        width: 100%;
        border-radius: 0;
        top: 0;
        background: white;
    }
}

/* Fix for header gaps when mobile menu is active */
body.mobile-menu-active header.glass-element {
    margin: 0;
    width: 100%;
    border-radius: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.25); /* Match mobile nav background */
    box-shadow: none;
}

/* Enhanced Mobile Navigation Glass Effect */
.mobile-nav.active {
    background: rgba(255, 255, 255, 0.2); /* Slightly more transparent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Icon for Ceník in mobile menu */
.mobile-nav-links a .fa-tag {
    margin-right: 10px;
}

/* =========================================
   Contact Section Redesign
   ========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Adjust column ratio */
    gap: 60px; /* Increase gap */
    margin-top: 60px;
    align-items: center;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px; /* Increase margin */
    font-size: 16px; /* Slightly larger font */
}

.contact-info .contact-item i {
    font-size: 18px; /* Adjust icon size */
    color: var(--primary-color);
    margin-right: 20px;
    width: 45px; /* Larger icon circle */
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #e9efff; /* Lighter blue */
    border-radius: 50%;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
}

.contact-form .btn-primary {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Bold Text Highlighting --- */
.hl {
    font-weight: 600;
}

/* --- Campaign Popup Styles --- */
.campaign-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
    z-index: 1001;
    display: flex;
    align-items: center;
    padding: 25px;
    max-width: 90%;
    width: 400px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideInUp 0.5s ease-out forwards;
}

.campaign-popup-content {
    flex-grow: 1;
}

.campaign-popup p {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.campaign-popup .btn-primary {
    padding: 10px 20px;
    font-size: 16px;
}

.campaign-popup-close {
    background: transparent;
    border: none;
    font-size: 28px;
    font-weight: 300;
    color: var(--gray-color);
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    line-height: 1;
    transition: color 0.3s ease;
}

.campaign-popup-close:hover {
    color: var(--dark-color);
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments for the popup */
@media (max-width: 480px) {
    .campaign-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        max-width: 100%;
        padding: 20px;
    }

    .campaign-popup p {
        font-size: 16px;
    }

    .campaign-popup .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Real Site Demo Card Styles */
.real-site {
    border: 2px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    position: relative;
}

.real-site:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.real-star {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
    z-index: 3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.demo-tag {
    background-color: #888 !important;
}

.real-site .demo-content h3 {
    color: var(--dark-color);
    background: none;
    -webkit-text-fill-color: var(--dark-color);
}
