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

body {
    font-family: 'Vazir', sans-serif;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #667eea;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform: scale(1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    width: 120px;
    height: 80px;
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    animation: advancedFloat 8s ease-in-out infinite, glow 4s ease-in-out infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.ai-card {
    top: 50px;
    right: 100px;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.2));
}

.ai-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card {
    top: 150px;
    right: 50px;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 237, 78, 0.2));
}

.blog-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pano-card {
    top: 250px;
    right: 150px;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.3), rgba(253, 187, 45, 0.2));
}

.pano-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced hover effects for floating cards */
.floating-card:hover {
    transform: translateY(-10px) rotateY(15deg) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.4);
}

.floating-card:hover lord-icon {
    transform: scale(1.2) rotateZ(5deg);
}

.ai-card:hover {
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4), 0 0 40px rgba(255, 215, 0, 0.6);
}

.blog-card:hover {
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4), 0 0 40px rgba(102, 126, 234, 0.6);
}

.pano-card:hover {
    box-shadow: 0 20px 60px rgba(34, 193, 195, 0.4), 0 0 40px rgba(253, 187, 45, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.4s;
}

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

.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    transform: scale(1);
    opacity: 0.8;
}

.product-card:hover .product-icon {
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
}

.product-icon lord-icon {
    transition: all 0.3s ease;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.product-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.product-link:hover {
    color: #764ba2;
    transform: translateX(-5px);
}

.product-link .arrow {
    transition: transform 0.3s ease;
}

.product-link:hover .arrow {
    transform: translateX(-3px);
}

.coming-soon {
    color: #999 !important;
    cursor: default;
}

.coming-soon:hover {
    transform: none !important;
    color: #999 !important;
}

.blog-card-main {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 237, 78, 0.02));
    border-left: 4px solid #ffd700;
}

.ai-card-main {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.02));
    border-left: 4px solid #667eea;
}

.innovation-card {
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.05), rgba(253, 187, 45, 0.02));
    border-left: 4px solid #22c1c3;
}

/* Platforms Section */
.platforms {
    padding: 100px 0;
}

.platforms-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.platform-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    transition: all 0.3s ease;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.platform-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.platform-item.reverse {
    direction: ltr;
}

.platform-item.reverse .platform-content {
    direction: rtl;
}

.platform-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.platform-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.platform-content ul {
    list-style: none;
}

.platform-content li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-right: 25px;
}

.platform-content li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #667eea;
    font-weight: bold;
}

.platform-visual {
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-animation {
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 60px;
    position: relative;
    animation: cloudFloat 4s ease-in-out infinite;
}

.cloud-animation::before,
.cloud-animation::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.cloud-animation::before {
    width: 80px;
    height: 80px;
    top: -40px;
    right: 20px;
}

.cloud-animation::after {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.analytics-animation {
    width: 250px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.analytics-animation::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0px,
        rgba(255, 255, 255, 0.1) 20px,
        transparent 20px,
        transparent 40px
    );
    border-radius: 10px;
}

.platform-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* New Animations */
.chat-animation {
    width: 420px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.chat-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(118, 75, 162, 0.1) 50%, 
        rgba(255, 215, 0, 0.1) 100%);
    animation: gradientShift 8s ease-in-out infinite;
    z-index: -1;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    justify-content: flex-end;
}

.chat-bubble {
    padding: 12px 18px;
    border-radius: 25px;
    position: relative;
    max-width: 85%;
    opacity: 0;
    animation: bubbleAppear 1s ease-out forwards;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.chat-bubble.bot {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.9), 
        rgba(118, 75, 162, 0.8));
    align-self: flex-end;
    border-bottom-right-radius: 8px;
    animation-delay: 0.5s;
}

.chat-bubble.bot::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8px 8px;
    border-color: transparent transparent rgba(102, 126, 234, 0.9) transparent;
}

.chat-bubble.user {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.95), 
        rgba(255, 237, 78, 0.9));
    align-self: flex-start;
    border-bottom-left-radius: 8px;
    animation-delay: 2.5s;
}

.chat-bubble.user::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent rgba(255, 215, 0, 0.95) transparent transparent;
}

.chat-bubble.typing {
    background: linear-gradient(135deg, 
        rgba(34, 193, 195, 0.8), 
        rgba(253, 187, 45, 0.7));
    align-self: flex-end;
    border-bottom-right-radius: 8px;
    animation-delay: 4.5s;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 20px;
}

.chat-bubble.typing::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8px 8px;
    border-color: transparent transparent rgba(34, 193, 195, 0.8) transparent;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: typingDots 1.5s ease-in-out infinite;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.3s; }
.typing-dot:nth-child(3) { animation-delay: 0.6s; }

.chat-avatar {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: avatarPulse 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.chat-title {
    position: absolute;
    top: 15px;
    left: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    animation: titleFade 1s ease-out 0.2s forwards;
}

.pano-animation {
    width: 400px;
    height: 320px;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    padding: 30px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    perspective: 1500px;
    transform-style: preserve-3d;
}

.pano-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(34, 193, 195, 0.1) 0%, 
        rgba(253, 187, 45, 0.1) 50%, 
        rgba(102, 126, 234, 0.1) 100%);
    animation: gradientShift 12s ease-in-out infinite;
    z-index: -1;
}

.capture-stage {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    animation: capturePhase 16s ease-in-out infinite;
    z-index: 2;
}

.camera-icon {
    font-size: 3.5rem;
    color: #22c1c3;
    animation: camera3DCapture 16s ease-in-out infinite;
    transform-style: preserve-3d;
    z-index: 5;
    transition: all 0.3s ease;
}

.photo-frames {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 3;
}

.photo-frame {
    width: 50px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border: 2px solid #22c1c3;
    opacity: 0;
    animation: photoCapture 16s ease-in-out infinite;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.photo-frame::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 15px;
    background: linear-gradient(135deg, #22c1c3, #fdbb2d);
    border-radius: 3px;
    transform: translate(-50%, -50%);
}

.photo-frame:nth-child(1) { 
    animation-delay: 1s; 
    transform: translateX(-80px) rotateY(-15deg);
}
.photo-frame:nth-child(2) { 
    animation-delay: 2s; 
    transform: translateX(-40px) rotateY(-7deg);
}
.photo-frame:nth-child(3) { 
    animation-delay: 3s; 
    transform: translateX(0px) rotateY(0deg);
}
.photo-frame:nth-child(4) { 
    animation-delay: 4s; 
    transform: translateX(40px) rotateY(7deg);
}
.photo-frame:nth-child(5) { 
    animation-delay: 5s; 
    transform: translateX(80px) rotateY(15deg);
}

.processing-stage {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.mini-photos-to-server {
    position: absolute;
    width: 30px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    opacity: 0;
    animation: photosToServer 16s ease-in-out infinite;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #22c1c3;
}

.mini-photos-to-server:nth-child(1) { 
    animation-delay: 6s; 
    left: 60px; 
    top: 80px;
}
.mini-photos-to-server:nth-child(2) { 
    animation-delay: 6.3s; 
    left: 100px; 
    top: 60px;
}
.mini-photos-to-server:nth-child(3) { 
    animation-delay: 6.6s; 
    right: 100px; 
    top: 70px;
}
.mini-photos-to-server:nth-child(4) { 
    animation-delay: 6.9s; 
    right: 60px; 
    top: 90px;
}
.mini-photos-to-server:nth-child(5) { 
    animation-delay: 7.2s; 
    left: 80px; 
    bottom: 80px;
}

.processing-ring {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #22c1c3;
    border-right: 4px solid #fdbb2d;
    border-radius: 50%;
    opacity: 0;
    animation: processingAnimation 16s ease-in-out infinite;
    transform-style: preserve-3d;
}

.server-gears {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    top: -40px;
    opacity: 0;
    animation: gearsAnimation 16s ease-in-out infinite;
}

.gear {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    animation: spinGear 2s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gear::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.gear::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top: 3px solid rgba(255, 255, 255, 0.4);
    border-bottom: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: spinGear 2s linear infinite reverse;
}

.gear:nth-child(1) {
    left: -20px;
    animation-duration: 2s;
}

.gear:nth-child(2) {
    left: 20px;
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.gear:nth-child(3) {
    right: 20px;
    animation-duration: 2.2s;
}

.gear:nth-child(4) {
    right: -20px;
    animation-duration: 1.8s;
    animation-direction: reverse;
}

.processing-icon {
    position: absolute;
    font-size: 2.5rem;
    color: #fdbb2d;
    opacity: 0;
    animation: processingIcon 16s ease-in-out infinite;
    z-index: 6;
}

.result-stage {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 7;
}

.panorama-result {
    position: absolute;
    width: 200px;
    height: 80px;
    opacity: 0;
    animation: panoramaResultAppear 16s ease-in-out infinite;
    transform-style: preserve-3d;
    z-index: 8;
}

.curved-panorama {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #22c1c3, #fdbb2d, #667eea, #764ba2);
    border-radius: 20px;
    position: relative;
    transform: perspective(1200px) rotateX(15deg) rotateY(-5deg);
    transform-style: preserve-3d;
    box-shadow: 
        0 0 40px rgba(34, 193, 195, 0.6),
        inset 0 0 60px rgba(0, 0, 0, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.curved-panorama::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 60% at center, transparent 30%, rgba(0, 0, 0, 0.3) 70%),
        linear-gradient(90deg, 
            rgba(255, 255, 255, 0.2) 0%,
            transparent 20%,
            transparent 80%,
            rgba(255, 255, 255, 0.2) 100%);
    border-radius: 20px;
    transform: rotateX(-15deg) scale(1.1);
}

.curved-panorama::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        rgba(255, 255, 255, 0.1) 10px,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 30px
    );
    animation: panoramaScan 3s linear infinite;
}

.curved-panorama::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 20px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.2) 100%
    );
    border-radius: 40px 40px 15px 15px;
}

.panorama-details {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    opacity: 0;
    animation: detailsAppear 16s ease-in-out infinite;
}

.detail-dot {
    width: 6px;
    height: 6px;
    background: rgba(34, 193, 195, 0.8);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.detail-dot:nth-child(1) { animation-delay: 0s; }
.detail-dot:nth-child(2) { animation-delay: 0.3s; }
.detail-dot:nth-child(3) { animation-delay: 0.6s; }
.detail-dot:nth-child(4) { animation-delay: 0.9s; }
.detail-dot:nth-child(5) { animation-delay: 1.2s; }

.panorama-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pano-ring {
    position: absolute;
    border: 2px solid rgba(34, 193, 195, 0.3);
    border-radius: 50%;
    opacity: 0;
    animation: ringsAnimation 16s ease-in-out infinite;
}

.pano-ring:nth-child(1) {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 12s;
}

.pano-ring:nth-child(2) {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 12.5s;
}

.pano-ring:nth-child(3) {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 13s;
}

.quality-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(34, 193, 195, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    animation: qualityShow 16s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-animation {
    width: 400px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.blog-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 237, 78, 0.1) 50%, 
        rgba(102, 126, 234, 0.1) 100%);
    animation: gradientShift 10s ease-in-out infinite;
    z-index: -1;
}

.writing-stage {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    animation: writingPhase 12s ease-in-out infinite;
    z-index: 2;
}

.article-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    animation: writeAnimation 2s ease-in-out infinite;
}

.writing-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 80%;
}

.writing-line {
    height: 4px;
    background: linear-gradient(90deg, #ffd700, transparent);
    border-radius: 2px;
    animation: typewriter 3s ease-in-out infinite;
    transform-origin: right;
}

.writing-line:nth-child(1) { animation-delay: 0s; width: 90%; }
.writing-line:nth-child(2) { animation-delay: 0.5s; width: 75%; }
.writing-line:nth-child(3) { animation-delay: 1s; width: 85%; }
.writing-line:nth-child(4) { animation-delay: 1.5s; width: 60%; }

.article-page {
    position: absolute;
    width: 220px;
    height: 280px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    padding: 20px;
    opacity: 0;
    transform: scale(0.8);
    animation: articleAppear 12s ease-in-out infinite;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-title {
    height: 15px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
    margin-bottom: 15px;
}

.article-line {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    margin-bottom: 5px;
}

.article-line:nth-child(2) { width: 85%; }
.article-line:nth-child(3) { width: 92%; }
.article-line:nth-child(4) { width: 70%; }

.server-stage {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.server-icon {
    font-size: 4rem;
    color: #667eea;
    opacity: 0;
    transform: scale(0.5);
    animation: serverActivation 12s ease-in-out infinite;
    transition: all 0.5s ease;
}

.server-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3), transparent);
    opacity: 0;
    animation: serverGlow 12s ease-in-out infinite;
}

.published-stage {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 5;
}

.reader-eye {
    font-size: 2.5rem;
    color: #22c1c3;
    opacity: 0;
    animation: readersAppear 12s ease-in-out infinite;
}

.reader-eye:nth-child(1) { animation-delay: 9s; }
.reader-eye:nth-child(2) { animation-delay: 9.3s; }
.reader-eye:nth-child(3) { animation-delay: 9.6s; }

.mini-article {
    position: absolute;
    width: 60px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    opacity: 0;
    animation: miniArticleDistribution 12s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mini-article:nth-child(4) { 
    top: 50px; 
    left: 50px; 
    animation-delay: 8.5s; 
}
.mini-article:nth-child(5) { 
    top: 50px; 
    right: 50px; 
    animation-delay: 8.7s; 
}
.mini-article:nth-child(6) { 
    bottom: 50px; 
    left: 80px; 
    animation-delay: 8.9s; 
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.4s; }
.service-item:nth-child(4) { animation-delay: 0.6s; }

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s ease;
    transform: scale(1);
}

.service-item:hover .service-icon {
    transform: scale(1.15) translateY(-10px) rotateY(5deg);
}

.service-item:hover .service-icon lord-icon {
    transform: rotateZ(10deg) scale(1.1);
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-description {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.05));
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.contact-item:hover i {
    transform: scale(1.2) rotateY(15deg);
    color: #764ba2 !important;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Vazir', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo p {
    color: #ccc;
    margin-top: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Animations */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes advancedFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotateX(5deg) rotateY(3deg) scale(1.02);
    }
    50% {
        transform: translateY(-25px) rotateX(-3deg) rotateY(-2deg) scale(1.05);
    }
    75% {
        transform: translateY(-10px) rotateX(2deg) rotateY(4deg) scale(1.03);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

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

@keyframes cloudFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

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

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(45deg, 
            rgba(102, 126, 234, 0.1) 0%, 
            rgba(118, 75, 162, 0.1) 50%, 
            rgba(255, 215, 0, 0.1) 100%);
    }
    33% {
        background: linear-gradient(45deg, 
            rgba(255, 215, 0, 0.1) 0%, 
            rgba(102, 126, 234, 0.1) 50%, 
            rgba(34, 193, 195, 0.1) 100%);
    }
    66% {
        background: linear-gradient(45deg, 
            rgba(34, 193, 195, 0.1) 0%, 
            rgba(255, 215, 0, 0.1) 50%, 
            rgba(118, 75, 162, 0.1) 100%);
    }
}

@keyframes bubbleAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px) rotateX(-15deg) rotateY(180deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05) translateY(-5px) rotateX(5deg) rotateY(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0deg) rotateY(180deg);
    }
}

@keyframes typingDots {
    0%, 60%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: scale(1.3) translateY(-8px);
        opacity: 1;
        box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    }
}

@keyframes avatarPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(102, 126, 234, 0.2);
    }
}

@keyframes titleFade {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInBubble {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes typingAnimation {
    0%, 50%, 100% {
        opacity: 0.5;
    }
    25%, 75% {
        opacity: 1;
    }
}

@keyframes cameraFlash {
    0%, 70%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    85% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

@keyframes capturePhase {
    0%, 25% {
        opacity: 1;
        transform: scale(1);
    }
    35%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes camera3DCapture {
    0%, 100% {
        opacity: 1;
        transform: translateZ(0) rotateY(0deg) rotateX(0deg) scale(1);
    }
    6% {
        opacity: 0.8;
        transform: translateZ(20px) rotateY(45deg) rotateX(-10deg) scale(1.1);
    }
    12% {
        opacity: 0.9;
        transform: translateZ(10px) rotateY(90deg) rotateX(5deg) scale(1.05);
    }
    18% {
        opacity: 0.7;
        transform: translateZ(30px) rotateY(135deg) rotateX(-15deg) scale(1.15);
    }
    25% {
        opacity: 1;
        transform: translateZ(0) rotateY(180deg) rotateX(0deg) scale(1);
    }
    31% {
        opacity: 0.8;
        transform: translateZ(25px) rotateY(225deg) rotateX(10deg) scale(1.1);
    }
    37% {
        opacity: 0.9;
        transform: translateZ(15px) rotateY(270deg) rotateX(-5deg) scale(1.05);
    }
    43% {
        opacity: 0.6;
        transform: translateZ(35px) rotateY(315deg) rotateX(20deg) scale(1.2);
    }
    50% {
        opacity: 1;
        transform: translateZ(0) rotateY(360deg) rotateX(0deg) scale(1);
    }
    60%, 100% {
        opacity: 0;
        transform: translateZ(-20px) rotateY(360deg) rotateX(0deg) scale(0.8);
    }
}

@keyframes photoCapture {
    0%, 18% {
        opacity: 0;
        transform: translateY(30px) scale(0.5);
    }
    25% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    35%, 100% {
        opacity: 0.3;
        transform: translateY(0) scale(0.8);
    }
}

@keyframes processingAnimation {
    0%, 30% {
        opacity: 0;
        transform: rotate(0deg) scale(0.5);
    }
    35%, 65% {
        opacity: 1;
        transform: rotate(720deg) scale(1);
    }
    70%, 100% {
        opacity: 0;
        transform: rotate(1080deg) scale(0.8);
    }
}

@keyframes processingIcon {
    0%, 30% {
        opacity: 0;
        transform: scale(0.5) rotateZ(0deg);
    }
    35%, 65% {
        opacity: 1;
        transform: scale(1) rotateZ(360deg);
    }
    70%, 100% {
        opacity: 0;
        transform: scale(0.8) rotateZ(720deg);
    }
}

@keyframes panoramaResultAppear {
    0%, 70% {
        opacity: 0;
        transform: scale(0.3) translateY(50px) perspective(800px) rotateX(-45deg);
    }
    75% {
        opacity: 0.7;
        transform: scale(0.8) translateY(20px) perspective(800px) rotateX(35deg);
    }
    80%, 100% {
        opacity: 1;
        transform: scale(1) translateY(0) perspective(800px) rotateX(25deg);
    }
}

@keyframes panoramaScan {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes detailsAppear {
    0%, 75% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    80%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes ringsAnimation {
    0%, 70% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    75% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.8);
    }
    80%, 90% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    95%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes qualityShow {
    0%, 75% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    80%, 95% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

@keyframes photosToServer {
    0%, 35% {
        opacity: 0;
        transform: scale(0.8) translateY(0);
    }
    40% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.6) translateY(30px);
    }
    60% {
        opacity: 0.4;
        transform: scale(0.3) translateY(60px);
    }
    70%, 100% {
        opacity: 0;
        transform: scale(0.1) translateY(80px);
    }
}

@keyframes gearsAnimation {
    0%, 50% {
        opacity: 0;
        transform: translateY(20px);
    }
    55%, 85% {
        opacity: 1;
        transform: translateY(0);
    }
    90%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
}

@keyframes spinGear {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes writingPhase {
    0%, 15% {
        opacity: 1;
        transform: scale(1);
    }
    25%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes writeAnimation {
    0%, 100% {
        transform: scale(1) rotateZ(0deg);
    }
    50% {
        transform: scale(1.1) rotateZ(-5deg);
    }
}

@keyframes typewriter {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0.8;
    }
}

@keyframes articleAppear {
    0%, 20% {
        opacity: 0;
        transform: scale(0.8);
    }
    25%, 35% {
        opacity: 1;
        transform: scale(1);
    }
    40% {
        opacity: 1;
        transform: scale(0.6) translateX(0) translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.3) translateX(0) translateY(20px);
    }
    60%, 100% {
        opacity: 0;
        transform: scale(0.1) translateX(0) translateY(30px);
    }
}

@keyframes serverActivation {
    0%, 45% {
        opacity: 0;
        transform: scale(0.5);
        color: #667eea;
    }
    50%, 55% {
        opacity: 1;
        transform: scale(1);
        color: #667eea;
    }
    60%, 65% {
        opacity: 1;
        transform: scale(1.1);
        color: #ff4757;
    }
    70%, 100% {
        opacity: 0.3;
        transform: scale(1);
        color: #667eea;
    }
}

@keyframes serverGlow {
    0%, 55% {
        opacity: 0;
        transform: scale(0.5);
    }
    60%, 65% {
        opacity: 0.6;
        transform: scale(1.5);
    }
    70%, 100% {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes readersAppear {
    0%, 70% {
        opacity: 0;
        transform: scale(0.5);
    }
    75%, 85% {
        opacity: 1;
        transform: scale(1.2);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    95%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
}

@keyframes blinkEye {
    0%, 90%, 100% {
        transform: scaleY(1);
    }
    95% {
        transform: scaleY(0.1);
    }
}

@keyframes miniArticleDistribution {
    0%, 65% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }
    70% {
        opacity: 0.8;
        transform: scale(0.8) translateY(-20px);
    }
    80%, 100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .chat-animation {
        width: 350px;
        height: 300px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .pano-animation {
        width: 350px;
        height: 280px;
        padding: 20px;
    }
    
    .photo-frame {
        width: 40px;
        height: 32px;
    }
    
    .photo-frame::before {
        width: 16px;
        height: 12px;
    }
    
    .processing-ring {
        width: 150px;
        height: 150px;
    }
    
    .panorama-sphere {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-animation {
        width: 280px;
        height: 250px;
        padding: 15px;
    }
    
    .chat-bubble {
        font-size: 0.85rem;
        padding: 10px 15px;
        max-width: 90%;
    }
    
    .blog-animation {
        width: 300px;
        height: 280px;
        padding: 20px;
    }
    
    .article-page {
        width: 180px;
        height: 230px;
        padding: 15px;
    }
    
    .article-icon {
        font-size: 2.5rem;
    }
    
    .server-icon {
        font-size: 3rem;
    }
    
    .reader-eye {
        font-size: 2rem;
    }
    
    .pano-animation {
        width: 300px;
        height: 250px;
        padding: 15px;
    }
    
    .photo-frame {
        width: 35px;
        height: 28px;
    }
    
    .photo-frame::before {
        width: 14px;
        height: 10px;
    }
    
    .camera-icon {
        font-size: 2.5rem;
    }
    
    .processing-ring {
        width: 120px;
        height: 120px;
    }
    
    .processing-icon {
        font-size: 2rem;
    }
    
    .panorama-sphere {
        width: 80px;
        height: 80px;
    }
    
    .panorama-icon {
        font-size: 2rem;
    }
    
    .quality-indicator {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
