/* style.css */
/* Global Styles */
:root {
    --primary-color: #0a192f;
    --secondary-color: #112240;
    --accent-color: #64ffda;
    --text-color: #e6f1ff;
    --gray-color: #8892b0;
    --light-color: #0a192f;
    --dark-color: #020c1b;
    --shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* WhatsApp Floating Chat */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-chat {
  background-color: #25D366;
  color: #fff;
  font-size: 28px;
  padding: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-chat:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

/* Popup Message */
.whatsapp-popup {
  background: #fff;
  color: #333;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  margin-bottom: 10px;
  position: relative;
  display: none; /* hidden by default */
}

.whatsapp-popup::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 25px;
  border-width: 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* Logo Styles */
.logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: var(--transition);
    opacity: 1;
    filter: brightness(1.1) contrast(1.1);
    display: block;
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    /* vertically center logo + text */
    gap: 8px;
    /* spacing between logo and text */
}

.footer-logo-img img {
    height: 60px;
    /* logo size */
    width: auto;
    display: block;
    justify-content: flex-start;
    /* moves it to left */
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
    text-align: left;
}

.footer-logo-text-top {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0072CE;
    /* blue like in your logo */
    letter-spacing: 1px;
}

.footer-logo-text-bottom {
    font-size: 0.9rem;
    font-weight: 500;
    color: #00A651;
    /* green accent to match */
    letter-spacing: 1px;
}

/* Footer logo styles */
.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

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

.section-padding {
    padding: 80px 0;
}

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

.lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.light-bg {
    background-color: var(--secondary-color);
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}



/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    color: var(--primary-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    animation: glow 1s infinite;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px rgba(100, 255, 218, 0.5);
    animation: pulse 1s infinite;
}

.btn-login {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-login:hover {
    color: var(--primary-color);
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: var(--transition);
    z-index: -1;
}

.btn-login:hover::before {
    left: 0;
}

.btn-login:hover {
    animation: glow 1s infinite;
    transform: translateY(-2px);
}

.btn-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-link:hover {
    color: var(--text-color);
}

.btn-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Header Styles */
header {
    background-color: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    position: relative;
}

.logo-img {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-top {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo-text-bottom {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links li {
    margin: 0 12px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.phone-number {
    margin-right: 0;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.phone-number i {
    margin-right: 8px;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section - Circuitry Gradient Background */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to right, #0A2B70 0%, #0B4E8C 30%, #1D8046 70%, #0F5C30 100%);
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Software Activities Background Overlay */
.software-activities-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
    overflow: hidden;
}

.bg-activity-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem;
    background: rgba(100, 255, 218, 0.08);
    border: 2px solid rgba(100, 255, 218, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(8px);
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    animation: floatActivity 20s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.1);
    opacity: 0.25;
    min-width: 100px;
}

.bg-activity-item:hover {
    opacity: 0.5;
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.bg-activity-item i {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.3));
    animation: iconPulse 3s ease-in-out infinite;
    opacity: 0.6;
}

.activity-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(100, 255, 218, 0.4);
    text-align: center;
    white-space: nowrap;
}

/* Position each activity item */
.activity-cycle {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.activity-collection {
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.activity-auction {
    top: 50%;
    left: 8%;
    animation-delay: -4s;
}

.activity-subscriber {
    top: 60%;
    right: 15%;
    animation-delay: -6s;
}

.activity-payment {
    top: 75%;
    left: 12%;
    animation-delay: -8s;
}

.activity-reports {
    top: 30%;
    left: 50%;
    animation-delay: -10s;
}

.activity-accounting {
    top: 40%;
    right: 8%;
    animation-delay: -12s;
}

.activity-sms {
    top: 15%;
    left: 30%;
    animation-delay: -14s;
}

.activity-dashboard {
    top: 70%;
    right: 25%;
    animation-delay: -16s;
}

.activity-sync {
    top: 85%;
    left: 45%;
    animation-delay: -18s;
}

.activity-receipt {
    top: 25%;
    left: 70%;
    animation-delay: -20s;
}

.activity-payout {
    top: 55%;
    right: 5%;
    animation-delay: -22s;
}

.activity-reports2 {
    top: 80%;
    right: 40%;
    animation-delay: -24s;
}

.activity-security {
    top: 35%;
    left: 25%;
    animation-delay: -26s;
}

.activity-analytics {
    top: 65%;
    left: 60%;
    animation-delay: -28s;
}

/* Floating Animation */
@keyframes floatActivity {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translate(20px, -30px) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: translate(-15px, -20px) rotate(-5deg);
        opacity: 1;
    }
    75% {
        transform: translate(10px, -40px) rotate(3deg);
        opacity: 1;
    }
}

/* Icon Pulse Animation */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(100, 255, 218, 0.8));
    }
}

/* Circuitry Lines Overlay */
.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Bottom-left circuit lines */
        radial-gradient(circle at 10% 90%, rgba(64, 160, 240, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 20% 85%, rgba(64, 160, 240, 0.2) 0%, transparent 25%),
        /* Bottom-right circuit lines */
        radial-gradient(circle at 90% 85%, rgba(48, 224, 112, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 80% 90%, rgba(48, 224, 112, 0.2) 0%, transparent 25%),
        /* Top-right subtle lines */
        radial-gradient(circle at 85% 15%, rgba(48, 224, 112, 0.15) 0%, transparent 20%),
        /* Top-left subtle lines */
        radial-gradient(circle at 15% 20%, rgba(64, 160, 240, 0.15) 0%, transparent 20%);
    opacity: 0.8;
    animation: circuitFlow 25s linear infinite;
}

/* Circuit Lines SVG Pattern */
.circuit-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Bottom-left circuit lines */
        linear-gradient(45deg, transparent 0%, rgba(64, 160, 240, 0.4) 2%, transparent 4%),
        linear-gradient(135deg, transparent 0%, rgba(64, 160, 240, 0.3) 2%, transparent 4%),
        /* Bottom-right circuit lines */
        linear-gradient(135deg, transparent 0%, rgba(48, 224, 112, 0.4) 2%, transparent 4%),
        linear-gradient(45deg, transparent 0%, rgba(48, 224, 112, 0.3) 2%, transparent 4%);
    background-size: 200px 200px, 150px 150px, 180px 180px, 160px 160px;
    background-position: 0% 80%, 10% 85%, 80% 85%, 90% 80%;
    filter: drop-shadow(0 0 5px rgba(64, 160, 240, 0.3)) drop-shadow(0 0 5px rgba(48, 224, 112, 0.3));
}

/* Glowing Dots/Nodes */
.circuit-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Blue dots on left side */
        radial-gradient(circle at 15% 85%, rgba(64, 160, 240, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 25% 80%, rgba(64, 160, 240, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 20% 90%, rgba(64, 160, 240, 0.7) 1px, transparent 1px),
        /* Green dots on right side */
        radial-gradient(circle at 85% 80%, rgba(48, 224, 112, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 75% 85%, rgba(48, 224, 112, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 90%, rgba(48, 224, 112, 0.7) 1px, transparent 1px),
        /* Scattered dots */
        radial-gradient(circle at 30% 70%, rgba(64, 160, 240, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, rgba(48, 224, 112, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(64, 160, 240, 0.3) 0.5px, transparent 0.5px),
        radial-gradient(circle at 60% 40%, rgba(48, 224, 112, 0.3) 0.5px, transparent 0.5px);
    background-size: 100px 100px, 80px 80px, 120px 120px, 100px 100px, 80px 80px, 120px 120px, 200px 200px, 200px 200px, 300px 300px, 300px 300px;
    filter: drop-shadow(0 0 3px rgba(64, 160, 240, 0.5)) drop-shadow(0 0 3px rgba(48, 224, 112, 0.5));
    animation: dotPulse 3s ease-in-out infinite;
}

@keyframes circuitFlow {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-5px) translateY(-2px); }
    50% { transform: translateX(-10px) translateY(-5px); }
    75% { transform: translateX(-5px) translateY(-2px); }
    100% { transform: translateX(0) translateY(0); }
}

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

/* Subtle Particles/Bokeh Effects */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Subtle noise texture */
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%),
        /* Top corner diagonal overlays */
        linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 30%),
        linear-gradient(225deg, rgba(0, 0, 0, 0.1) 0%, transparent 30%);
    opacity: 0.6;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateX(10px) translateY(-5px) scale(1.05);
        opacity: 0.4;
    }
    50% { 
        transform: translateX(-5px) translateY(8px) scale(0.95);
        opacity: 0.7;
    }
    75% { 
        transform: translateX(8px) translateY(3px) scale(1.02);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-logo-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Digital VS Logo Design */
.vs-logo-digital {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 200px;
    perspective: 1000px;
}

.base-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.3) saturate(1.2);
    transition: all 0.3s ease;
    z-index: 1;
}

/* Removed digital V and S letters - using only vivinalogo.png */

.upward-arrow {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 3rem;
    background: linear-gradient(135deg, #30E070, #22c55e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: rotate(45deg);
    text-shadow: 0 0 20px rgba(48, 224, 112, 0.8);
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 10px rgba(48, 224, 112, 0.6));
    z-index: 4;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: rotate(45deg) scale(1); }
    50% { opacity: 0.7; transform: rotate(45deg) scale(1.1); }
}

/* Circuit Lines Overlay on Logo */
.circuit-lines-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Circuit lines around the logo */
        linear-gradient(45deg, transparent 0%, rgba(64, 160, 240, 0.3) 2%, transparent 4%),
        linear-gradient(135deg, transparent 0%, rgba(48, 224, 112, 0.3) 2%, transparent 4%),
        linear-gradient(90deg, transparent 0%, rgba(64, 160, 240, 0.2) 1%, transparent 2%),
        linear-gradient(0deg, transparent 0%, rgba(48, 224, 112, 0.2) 1%, transparent 2%);
    background-size: 60px 60px, 60px 60px, 40px 40px, 40px 40px;
    background-position: 20% 20%, 80% 20%, 50% 10%, 50% 90%;
    filter: drop-shadow(0 0 3px rgba(64, 160, 240, 0.3)) drop-shadow(0 0 3px rgba(48, 224, 112, 0.3));
    animation: circuitFlow 8s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* Glowing Dots Overlay on Logo */
.glowing-dots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Blue dots around V */
        radial-gradient(circle at 25% 30%, rgba(64, 160, 240, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 30% 70%, rgba(64, 160, 240, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 20% 50%, rgba(64, 160, 240, 0.7) 1px, transparent 1px),
        /* Green dots around S */
        radial-gradient(circle at 75% 30%, rgba(48, 224, 112, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 70% 70%, rgba(48, 224, 112, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 50%, rgba(48, 224, 112, 0.7) 1px, transparent 1px),
        /* Connection dots */
        radial-gradient(circle at 50% 20%, rgba(64, 160, 240, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 50% 80%, rgba(48, 224, 112, 0.4) 1px, transparent 1px);
    background-size: 80px 80px, 60px 60px, 100px 100px, 80px 80px, 60px 60px, 100px 100px, 120px 120px, 120px 120px;
    filter: drop-shadow(0 0 3px rgba(64, 160, 240, 0.5)) drop-shadow(0 0 3px rgba(48, 224, 112, 0.5));
    animation: dotPulse 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Hover effects for the logo container */
.logo-container:hover .base-logo {
    filter: brightness(1.2) contrast(1.4) saturate(1.3);
    transform: scale(1.02);
}

.logo-container:hover .upward-arrow {
    transform: rotate(45deg) scale(1.1);
}

.logo-container:hover .circuit-lines-overlay {
    animation-duration: 4s;
}

.logo-container:hover .glowing-dots-overlay {
    animation-duration: 1.5s;
}

.hero-text-section {
    flex: 1;
    color: white;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.title-line-1 {
    color: #40A0F0;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(64, 160, 240, 0.6);
    background: linear-gradient(135deg, #40A0F0, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-line-2 {
    color: #ffffff;
    font-size: 4.5rem;
    font-weight: 900;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(255, 255, 255, 0.3);
    position: relative;
}

.title-line-2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-learn-more {
    background: linear-gradient(135deg, #40A0F0, #3b82f6, #1e40af);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(64, 160, 240, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(64, 160, 240, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #4f46e5, #40A0F0, #3b82f6);
}

.btn-learn-more:hover::before {
    left: 100%;
}

.btn-learn-more:hover {
    animation: glow 1s infinite;
}

.btn-get-quote {
    background: linear-gradient(135deg, #30E070, #22c55e, #10b981);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(48, 224, 112, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-get-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-get-quote:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(48, 224, 112, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #16a34a, #30E070, #22c55e);
}

.btn-get-quote:hover::before {
    left: 100%;
}

.btn-get-quote:hover {
    animation: glow 1s infinite;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: var(--secondary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--text-color);
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(100, 255, 218, 0.3);
    animation: glow 2s infinite;
}

.feature-item:hover .icon-large {
    animation: pulse 1s infinite;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.8));
}

.icon-large {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Services Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: var(--secondary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--text-color);
    --i: 1;
}

.service-feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(100, 255, 218, 0.3);
    animation: glow 2s infinite;
}

.service-feature-item:hover i {
    animation: pulse 1s infinite;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.8));
}

.service-feature-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-feature-item:nth-child(1) {
    --i: 1;
}

.service-feature-item:nth-child(2) {
    --i: 2;
}

.service-feature-item:nth-child(3) {
    --i: 3;
}

.service-feature-item:nth-child(4) {
    --i: 4;
}

.service-feature-item:nth-child(5) {
    --i: 5;
}

.service-feature-item:nth-child(6) {
    --i: 6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    color: var(--text-color);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(100, 255, 218, 0.3);
    animation: glow 2s infinite;
}

.pricing-card:hover .price {
    animation: pulse 1s infinite;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.8);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h4 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.price {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 20px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pricing-card ul li i {
    color: var(--accent-color);
    margin-right: 10px;
}

.pricing-note {
    font-style: italic;
    color: var(--gray-color);
}

.pricing-note a {
    color: var(--accent-color);
}

/* Client Logos Grid */
.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-logo-item {
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100px;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 60px;
}

/* About Us Content */
.about-us-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.md-profile {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.md-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info h4,
.contact-form h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent-color);
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--text-color);
    transform: translateY(-3px);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-color);
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Container */
.map-container {
    margin-top: 50px;
}

.map-container h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-text-top {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.footer-logo-text-bottom {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    width: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Comprehensive Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(100, 255, 218, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(100, 255, 218, 0.8);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.animate-on-scroll-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Collection Workflow Section */
.collection-workflow-section {
    background: linear-gradient(135deg, rgba(18, 34, 64, 0.95), rgba(17, 56, 32, 0.95));
    position: relative;
    overflow: hidden;
}

.collection-workflow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(64, 160, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(48, 224, 112, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(64, 160, 240, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.workflow-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.workflow-side {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.workflow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-header h3 {
    color: #40A0F0;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-indicator.online {
    background: rgba(48, 224, 112, 0.2);
    color: #30E070;
    border: 1px solid rgba(48, 224, 112, 0.3);
}

.status-indicator.monitoring {
    background: rgba(64, 160, 240, 0.2);
    color: #40A0F0;
    border: 1px solid rgba(64, 160, 240, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.online .status-dot {
    background: #30E070;
}

.status-indicator.monitoring .status-dot {
    background: #40A0F0;
}

/* Collection Process Steps */
.collection-process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.process-step:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(64, 160, 240, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.process-step.step-1 {
    animation-delay: 0.1s;
}

.process-step.step-2 {
    animation-delay: 0.2s;
}

.process-step.step-3 {
    animation-delay: 0.3s;
}

.process-step.step-4 {
    animation-delay: 0.4s;
}

.process-step.step-5 {
    animation-delay: 0.5s;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #40A0F0, #30E070);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.step-content h4 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Step Animations */
.step-animation {
    margin-top: 1rem;
}

.walking-person {
    width: 30px;
    height: 30px;
    background: #30E070;
    border-radius: 50%;
    position: relative;
    animation: walk 3s infinite;
}

.walking-person::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 5px;
    width: 20px;
    height: 20px;
    background: #30E070;
    border-radius: 50%;
    animation: bounce 1s infinite;
}

@keyframes walk {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

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

.amount-display {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #30E070;
    animation: countUp 2s ease-out;
}

.currency {
    font-size: 1.2rem;
}

.amount {
    animation: pulse 1s infinite;
}

@keyframes countUp {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.receipt-animation {
    margin-top: 1rem;
}

.receipt-paper {
    width: 40px;
    height: 30px;
    background: white;
    border-radius: 3px;
    position: relative;
    animation: print 2s infinite;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.receipt-paper::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 1px;
    background: #333;
    animation: printLine 2s infinite;
}

.receipt-paper::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 5px;
    right: 5px;
    height: 1px;
    background: #333;
    animation: printLine 2s infinite 0.5s;
}

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

@keyframes printLine {
    0% { width: 0; }
    100% { width: 30px; }
}

.sync-animation {
    margin-top: 1rem;
}

.sync-waves {
    width: 40px;
    height: 20px;
    position: relative;
}

.sync-waves::before,
.sync-waves::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #40A0F0;
    border-radius: 50%;
    animation: syncPulse 2s infinite;
}

.sync-waves::before {
    left: 0;
    animation-delay: 0s;
}

.sync-waves::after {
    right: 0;
    animation-delay: 1s;
}

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

/* Monitoring Dashboard */
.monitoring-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.dashboard-card:nth-child(1) {
    animation-delay: 0.1s;
}

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

.dashboard-card:nth-child(3) {
    animation-delay: 0.3s;
}

.dashboard-card h4 {
    color: #40A0F0;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.update-feed {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.update-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #30E070;
    animation: slideInRight 0.5s ease-out;
    animation-fill-mode: both;
}

.update-item:nth-child(1) {
    animation-delay: 0.1s;
}

.update-item:nth-child(2) {
    animation-delay: 0.2s;
}

.update-item:nth-child(3) {
    animation-delay: 0.3s;
}

.update-item .time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    min-width: 60px;
}

.update-item .message {
    color: #ffffff;
    font-size: 0.9rem;
    flex: 1;
}

.update-item .status {
    color: #30E070;
    font-weight: bold;
    animation: pulse 1s infinite;
}

.summary-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.stat-value {
    color: #30E070;
    font-size: 1.2rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.location-map {
    position: relative;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(64, 160, 240, 0.1), rgba(48, 224, 112, 0.1));
}

.staff-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: #40A0F0;
    font-size: 0.8rem;
    animation: float 3s infinite;
}

.staff-marker i {
    width: 30px;
    height: 30px;
    background: #40A0F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: pulse 2s infinite;
}

.marker-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.marker-2 {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.marker-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

/* Workflow Benefits */
.workflow-benefits {
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
}

.benefit-item:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(64, 160, 240, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #40A0F0;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.benefit-item h4 {
    color: #ffffff;
    margin: 1rem 0;
    font-size: 1.2rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Real-time Indicators */
.realtime-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
}

.pulse-ring {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #30E070;
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

.pulse-ring-2 {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #40A0F0;
    border-radius: 50%;
    animation: pulseRing 2s infinite 0.5s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Advanced Walking Avatar */
.walking-avatar {
    position: relative;
    width: 100px;
    height: 60px;
    margin: 1rem auto;
}

.avatar-body {
    position: relative;
    width: 30px;
    height: 40px;
    background: #40A0F0;
    border-radius: 15px 15px 5px 5px;
    margin: 0 auto;
    animation: walkCycle 2s infinite;
}

.avatar-head {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ffdbac;
    border-radius: 50%;
    animation: headBob 2s infinite;
}

.avatar-arms {
    position: absolute;
    top: 5px;
    left: -5px;
    right: -5px;
    height: 20px;
}

.arm {
    position: absolute;
    width: 8px;
    height: 20px;
    background: #ffdbac;
    border-radius: 4px;
    animation: armSwing 2s infinite;
}

.left-arm {
    left: 0;
    animation-delay: 0s;
}

.right-arm {
    right: 0;
    animation-delay: 1s;
}

.avatar-legs {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
}

.leg {
    position: absolute;
    width: 6px;
    height: 20px;
    background: #333;
    border-radius: 3px;
    animation: legSwing 2s infinite;
}

.left-leg {
    left: 5px;
    animation-delay: 0s;
}

.right-leg {
    right: 5px;
    animation-delay: 1s;
}

.walking-path {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.path-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #30E070;
    border-radius: 50%;
    animation: pathGlow 2s infinite;
}

.path-dot:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.path-dot:nth-child(2) {
    left: 50%;
    animation-delay: 0.5s;
}

.path-dot:nth-child(3) {
    left: 80%;
    animation-delay: 1s;
}

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

@keyframes headBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-2px); }
}

@keyframes armSwing {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(20deg); }
}

@keyframes legSwing {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

@keyframes pathGlow {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Data Visualization */
.data-visualization {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.progress-ring {
    position: relative;
    width: 60px;
    height: 60px;
}

.progress-circle {
    transform: rotate(-90deg);
}

.progress-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 4;
}

.progress-circle-fill {
    fill: none;
    stroke: #30E070;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 157;
    stroke-dashoffset: 0;
    animation: progressFill 2s ease-out;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: bold;
    color: #30E070;
}

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

.collection-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.collection-stats .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
}

.collection-stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.collection-stats .stat-value {
    color: #30E070;
    font-weight: bold;
}

/* Advanced Receipt Printer */
.receipt-printer {
    position: relative;
    width: 80px;
    height: 100px;
    margin: 1rem auto;
}

.printer-body {
    position: relative;
    width: 60px;
    height: 40px;
    background: #333;
    border-radius: 5px;
    margin: 0 auto;
}

.printer-top {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 10px;
    background: #555;
    border-radius: 3px;
}

.printer-screen {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 15px;
    background: #000;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-text {
    color: #00ff00;
    font-size: 0.6rem;
    font-family: monospace;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.receipt-paper {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 40px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: printReceipt 3s infinite;
    overflow: hidden;
}

.receipt-header {
    font-size: 0.5rem;
    font-weight: bold;
    text-align: center;
    padding: 2px;
    background: #f0f0f0;
}

.receipt-line {
    height: 1px;
    background: #333;
    margin: 1px 2px;
    animation: printLine 3s infinite;
}

.receipt-line:nth-child(2) { animation-delay: 0.5s; }
.receipt-line:nth-child(3) { animation-delay: 1s; }

.receipt-total {
    font-size: 0.5rem;
    font-weight: bold;
    text-align: center;
    padding: 2px;
    background: #e0e0e0;
    animation: printLine 3s infinite 1.5s;
}

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

@keyframes printLine {
    0% { width: 0; }
    100% { width: 46px; }
}

.printer-lights {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.light {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: lightBlink 2s infinite;
}

.green-light {
    background: #00ff00;
    animation-delay: 0s;
}

.red-light {
    background: #ff0000;
    animation-delay: 1s;
}

@keyframes lightBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Advanced Sync Animation */
.sync-container {
    position: relative;
    width: 120px;
    height: 60px;
    margin: 1rem auto;
}

.sync-devices {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.device {
    position: relative;
    width: 30px;
    height: 30px;
    background: #40A0F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    animation: devicePulse 2s infinite;
}

.mobile-device {
    animation-delay: 0s;
}

.server-device {
    animation-delay: 1s;
}

.sync-connection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 2px;
}

.connection-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #40A0F0, #30E070);
    animation: connectionFlow 2s infinite;
}

.data-flow {
    position: absolute;
    top: -2px;
    left: 0;
    width: 8px;
    height: 6px;
    background: #30E070;
    border-radius: 3px;
    animation: dataFlow 2s infinite;
}

.data-packet {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #30E070;
    border-radius: 50%;
    animation: packetMove 2s infinite;
}

.packet-1 {
    animation-delay: 0s;
}

.packet-2 {
    animation-delay: 1s;
}

.server-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 8px;
    height: 8px;
}

.server-light {
    width: 100%;
    height: 100%;
    background: #30E070;
    border-radius: 50%;
    animation: serverPulse 1s infinite;
}

.sync-status {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.7rem;
    color: #40A0F0;
}

.sync-progress {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #40A0F0, #30E070);
    border-radius: 2px;
    animation: progressBar 2s infinite;
}

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

@keyframes connectionFlow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes dataFlow {
    0% { left: 0; opacity: 1; }
    100% { left: 52px; opacity: 0; }
}

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

@keyframes serverPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Live Updates Enhancement */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #30E070;
    font-weight: bold;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #30E070;
    border-radius: 50%;
    animation: livePulse 1s infinite;
}

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

.update-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease-out;
    animation-fill-mode: both;
}

.update-item.new-update {
    border-color: rgba(48, 224, 112, 0.3);
    background: rgba(48, 224, 112, 0.1);
}

.update-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #40A0F0, #30E070);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #30E070;
    border: 2px solid white;
    border-radius: 50%;
    animation: onlinePulse 2s infinite;
}

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

.update-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.update-content .time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.update-content .message {
    color: #ffffff;
    font-size: 0.9rem;
}

.update-status {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-pulse {
    position: absolute;
    right: -5px;
    top: -5px;
    width: 8px;
    height: 8px;
    background: #30E070;
    border-radius: 50%;
    animation: statusPulse 1s infinite;
}

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

/* Enhanced Statistics */
.summary-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #40A0F0, #30E070);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: iconPulse 2s infinite;
}

.stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.stat-value {
    color: #30E070;
    font-size: 1.2rem;
    font-weight: bold;
    animation: countUp 2s ease-out;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.stat-trend.up {
    color: #30E070;
}

.stat-trend.down {
    color: #ff6b6b;
}

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

@keyframes countUp {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Collection Chart */
.collection-chart {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #40A0F0;
}

.chart-legend {
    display: flex;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.completed {
    background: #30E070;
}

.legend-color.pending {
    background: #ff6b6b;
}

.progress-chart {
    margin-top: 1rem;
}

.chart-bar {
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    animation: chartFill 2s ease-out;
}

.bar-fill {
    height: 100%;
    transition: width 2s ease-out;
}

.bar-fill.completed {
    background: linear-gradient(90deg, #30E070, #40A0F0);
}

.bar-fill.pending {
    background: linear-gradient(90deg, #ff6b6b, #ffa500);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes chartFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Enhanced Staff Location */
.staff-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #40A0F0;
    font-size: 0.8rem;
    animation: float 3s infinite;
}

.staff-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #40A0F0, #30E070);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: avatarPulse 2s infinite;
}

.avatar-head {
    width: 20px;
    height: 20px;
    background: #ffdbac;
    border-radius: 50%;
    position: absolute;
    top: -5px;
}

.avatar-body {
    width: 30px;
    height: 30px;
    background: #40A0F0;
    border-radius: 50%;
}

.marker-info {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.staff-marker:hover .marker-info {
    opacity: 1;
}

.staff-name {
    display: block;
    font-weight: bold;
}

.staff-status {
    display: block;
    font-size: 0.6rem;
    margin-top: 0.2rem;
}

.staff-status.online {
    color: #30E070;
}

.staff-status.busy {
    color: #ffa500;
}

.location-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid #40A0F0;
    border-radius: 50%;
    animation: locationPulse 3s infinite;
}

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

@keyframes locationPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.map-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #40A0F0, #30E070);
    animation: connectionPulse 3s infinite;
}

.line-1 {
    top: 30%;
    left: 20%;
    width: 30%;
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    right: 30%;
    width: 25%;
    animation-delay: 1s;
}

.line-3 {
    bottom: 30%;
    left: 50%;
    width: 20%;
    animation-delay: 2s;
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .workflow-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .monitoring-dashboard {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .data-visualization {
        flex-direction: column;
        align-items: center;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
    }
    
    .chart-legend {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Page Load Animations */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.logo {
    animation: slideInLeft 0.8s ease-out;
}

.nav-links {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.header-contact {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

/* Section Animations */
.section-title {
    animation: fadeInUp 0.8s ease-out;
}

.feature-item {
    animation: bounceIn 0.8s ease-out;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.service-feature-item {
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
}

.service-feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service-feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.service-feature-item:nth-child(5) {
    animation-delay: 0.5s;
}

.service-feature-item:nth-child(6) {
    animation-delay: 0.6s;
}

.pricing-card {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

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

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Demo Cards Animation */
.demo-card {
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.demo-card:nth-child(1) {
    animation-delay: 0.1s;
}

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

.demo-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Mobile Screenshots Animation */
.screenshot-item {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.screenshot-item:nth-child(1) {
    animation-delay: 0.1s;
}

.screenshot-item:nth-child(2) {
    animation-delay: 0.2s;
}

.screenshot-item:nth-child(3) {
    animation-delay: 0.3s;
}

.screenshot-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Feature Cards Animation */
.feature-card {
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

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

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.hero-buttons .btn {
    animation: pulse 2s infinite;
}

/* Text selection color */
::selection {
    background-color: rgba(100, 255, 218, 0.3);
}

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

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .vs-logo {
        font-size: 6rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-line-1 {
        font-size: 2.5rem;
    }

    .hero-line-2 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-us-content {
        flex-direction: column;
    }

    .md-profile {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Background Activities - Mobile */
    .software-activities-background {
        opacity: 0.25;
    }
    
    .bg-activity-item {
        padding: 0.5rem;
        font-size: 1rem;
        opacity: 0.2;
    }
    
    .bg-activity-item i {
        font-size: 1.3rem;
    }
    
    .activity-label {
        font-size: 0.6rem;
    }
    
    .header-contact {
        display: none;
    }

    /* Ensure logo is clearly visible on mobile */
    .logo img {
        height: 50px;
        max-width: 150px;
        opacity: 1;
        filter: brightness(1.15) contrast(1.15);
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        background-color: var(--secondary-color);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    /* Adjust digital logo for tablet */
    .logo-container {
        width: 300px;
        height: 150px;
    }

    .upward-arrow {
        font-size: 2.5rem;
        top: 15%;
        right: 8%;
    }

    /* Adjust circuit pattern for tablet */
    .circuit-pattern::before {
        background-size: 150px 150px, 120px 120px, 140px 140px, 130px 130px;
        background-position: 0% 82%, 8% 87%, 87% 87%, 92% 82%;
    }

    .circuit-pattern::after {
        background-size: 80px 80px, 60px 60px, 100px 100px, 80px 80px, 60px 60px, 100px 100px, 150px 150px, 150px 150px, 200px 200px, 200px 200px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 90vh;
        padding: 2rem 0;
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
    }

    /* Adjust digital logo for mobile */
    .logo-container {
        width: 250px;
        height: 125px;
    }

    .upward-arrow {
        font-size: 2rem;
        top: 10%;
        right: 5%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-line-1 {
        font-size: 2.5rem;
    }

    .title-line-2 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-actions {
        justify-content: center;
        gap: 1.5rem;
    }

    .btn-learn-more, .btn-get-quote {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    /* Adjust circuit pattern for mobile */
    .circuit-pattern::before {
        background-size: 100px 100px, 80px 80px, 90px 90px, 80px 80px;
        background-position: 0% 85%, 10% 90%, 85% 90%, 90% 85%;
    }

    .circuit-pattern::after {
        background-size: 50px 50px, 40px 40px, 60px 60px, 50px 50px, 40px 40px, 60px 60px, 100px 100px, 100px 100px, 150px 150px, 150px 150px;
    }
}

/* Mobile Screenshots Section */
.mobile-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.screenshot-item {
    text-align: center;
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    max-width: 250px;
    width: 100%;
}

.screenshot-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px -10px rgba(2, 12, 27, 0.8);
    animation: float 2s infinite;
}

.screenshot-item:hover .mobile-screenshot {
    animation: pulse 1s infinite;
}

.screenshot-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.screenshot-container {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-screenshot {
    max-width: 120px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.mobile-screenshot:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.screenshot-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.8rem;
}

@media (max-width: 768px) {
    .mobile-screenshots {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .screenshot-item {
        padding: 1rem;
        max-width: 100%;
    }
    
    .mobile-screenshot {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    /* Background Activities - Small Mobile */
    .software-activities-background {
        opacity: 0.2;
    }
    
    .bg-activity-item {
        padding: 0.3rem;
        font-size: 0.8rem;
        opacity: 0.15;
    }
    
    .bg-activity-item i {
        font-size: 1rem;
    }
    
    .activity-label {
        font-size: 0.5rem;
        display: none; /* Hide labels on very small screens */
    }
    
    .mobile-screenshots {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .screenshot-item {
        padding: 1rem;
    }
    
    .mobile-screenshot {
        max-width: 120px;
    }
}

/* WhatsApp Contact Section */
.whatsapp-contact {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.whatsapp-contact h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.whatsapp-contact p {
    color: var(--gray-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.whatsapp-btn-primary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn-secondary {
    background: linear-gradient(135deg, #64ffda, #0a192f);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.whatsapp-btn-accent {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: pulse 1s infinite;
}

.whatsapp-btn:hover i {
    animation: bounceIn 0.5s ease-out;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.whatsapp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.whatsapp-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.whatsapp-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.whatsapp-features .feature-item span {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .whatsapp-buttons {
        gap: 0.8rem;
    }
    
    .whatsapp-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .whatsapp-features .feature-item {
        flex-direction: row;
        justify-content: center;
        padding: 0.8rem;
    }
}

/* Role-Based Mobile App Section */
.mobile-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    justify-items: center;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.manager-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.fi-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.collection-badge {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.dashboard-badge {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
}

.role-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-features {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.mobile-features h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

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

.feature-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.feature-card li {
    color: var(--gray-color);
    padding: 0.3rem 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.feature-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .mobile-screenshots {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .mobile-features {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* Software Demo Appointment Section */
.demo-appointment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.demo-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.demo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px -15px rgba(2, 12, 27, 0.8);
    animation: glow 2s infinite;
}

.demo-card:hover i {
    animation: pulse 1s infinite;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.8));
}

.demo-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.demo-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.demo-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.demo-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.demo-card li {
    color: var(--gray-color);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.demo-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.demo-features {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.demo-features h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.features-row .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: var(--transition);
}

.features-row .feature-item:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: translateY(-3px);
}

.features-row .feature-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.features-row .feature-item span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .demo-appointment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .demo-card {
        padding: 1.5rem;
    }
    
    .features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .demo-features {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* Products Grid Responsive */
@media (max-width: 992px) {
    .products-grid .featured-product {
        grid-column: span 1 !important;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }
    
    .featured-product .featured-product > div {
        flex-direction: column !important;
        text-align: center;
    }
}

/* ============================================
   ChitFund Activities Animation Section
   ============================================ */

.chitfund-animations-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.chitfund-animations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(100, 255, 218, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.sub-lead {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

/* Slideshow Container */
.animations-slideshow {
    position: relative;
    margin-top: 3rem;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.slideshow-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    will-change: transform;
}

.slideshow-wrapper .animation-card {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slideshow-wrapper .animation-card.active {
    opacity: 1;
    transform: scale(1);
}

/* Navigation Buttons */
.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(100, 255, 218, 0.2);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slideshow-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.slideshow-prev {
    left: 20px;
}

.slideshow-next {
    right: 20px;
}

/* Dot Indicators */
.slideshow-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
    padding: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(100, 255, 218, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--accent-color);
    width: 14px;
    height: 14px;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.8);
    border-color: var(--accent-color);
}

/* Auto-play Controls */
.slideshow-controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.autoplay-toggle {
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.3);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.autoplay-toggle:hover {
    background: rgba(100, 255, 218, 0.2);
    border-color: var(--accent-color);
}

.autoplay-toggle.paused i::before {
    content: "\f04b"; /* play icon */
}

.autoplay-toggle.playing i::before {
    content: "\f04c"; /* pause icon */
}

/* Legacy grid support (hidden) */
.animations-grid {
    display: none;
}

.animation-card {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.animation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.5s;
}

.animation-card:hover::before {
    left: 100%;
}

.animation-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 50px rgba(100, 255, 218, 0.3);
}

.animation-card.full-width {
    grid-column: 1 / -1;
}

.software-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-color), #30E070);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(100, 255, 218, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

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

.animation-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
    position: relative;
}

.animation-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.animation-header h3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.3rem;
    flex: 1;
    min-width: 200px;
}

.activity-type {
    display: block;
    width: 100%;
    color: var(--gray-color);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.3rem;
    padding-left: 2.5rem;
}

.animation-container {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Chit Cycle Animation */
.chit-cycle-animation {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cycle-center {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), #30E070);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(100, 255, 218, 0.5); }
    50% { box-shadow: 0 0 50px rgba(100, 255, 218, 0.8); }
}

.center-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cycle-label {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.cycle-ring {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cycle-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cycle-item:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.6);
}

.item-1 { 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    animation: rotate-cycle-1 20s linear infinite;
}
.item-2 { 
    top: 20%; 
    right: 10%; 
    animation: rotate-cycle-2 20s linear infinite;
}
.item-3 { 
    bottom: 20%; 
    right: 10%; 
    animation: rotate-cycle-3 20s linear infinite;
}
.item-4 { 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%);
    animation: rotate-cycle-4 20s linear infinite;
}
.item-5 { 
    bottom: 20%; 
    left: 10%; 
    animation: rotate-cycle-5 20s linear infinite;
}
.item-6 { 
    top: 20%; 
    left: 10%; 
    animation: rotate-cycle-6 20s linear infinite;
}

@keyframes rotate-cycle-1 {
    0% { transform: translateX(-50%) rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg) translateX(100px) rotate(-360deg); }
}
@keyframes rotate-cycle-2 {
    0% { transform: rotate(60deg) translateX(100px) rotate(-60deg); }
    100% { transform: rotate(420deg) translateX(100px) rotate(-420deg); }
}
@keyframes rotate-cycle-3 {
    0% { transform: rotate(120deg) translateX(100px) rotate(-120deg); }
    100% { transform: rotate(480deg) translateX(100px) rotate(-480deg); }
}
@keyframes rotate-cycle-4 {
    0% { transform: translateX(-50%) rotate(180deg) translateX(100px) rotate(-180deg); }
    100% { transform: translateX(-50%) rotate(540deg) translateX(100px) rotate(-540deg); }
}
@keyframes rotate-cycle-5 {
    0% { transform: rotate(240deg) translateX(100px) rotate(-240deg); }
    100% { transform: rotate(600deg) translateX(100px) rotate(-600deg); }
}
@keyframes rotate-cycle-6 {
    0% { transform: rotate(300deg) translateX(100px) rotate(-300deg); }
    100% { transform: rotate(660deg) translateX(100px) rotate(-660deg); }
}

.item-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.item-label {
    font-size: 0.7rem;
    color: var(--text-color);
    text-align: center;
}

.cycle-connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    left: 50%;
    top: 50%;
    transform-origin: top center;
    opacity: 0.3;
    animation: line-pulse 2s ease-in-out infinite;
}

.line-1 { transform: translate(-50%, -50%) rotate(0deg); animation-delay: 0s; }
.line-2 { transform: translate(-50%, -50%) rotate(60deg); animation-delay: 0.3s; }
.line-3 { transform: translate(-50%, -50%) rotate(120deg); animation-delay: 0.6s; }
.line-4 { transform: translate(-50%, -50%) rotate(180deg); animation-delay: 0.9s; }
.line-5 { transform: translate(-50%, -50%) rotate(240deg); animation-delay: 1.2s; }
.line-6 { transform: translate(-50%, -50%) rotate(300deg); animation-delay: 1.5s; }

@keyframes line-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Money Flow Animation */
.money-flow-animation {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    position: relative;
}

.flow-source, .flow-destination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.source-icon, .destination-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #30E070);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
    animation: icon-bounce 2s ease-in-out infinite;
}

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

.source-label, .destination-label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.flow-path {
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    position: relative;
    margin: 0 2rem;
    overflow: visible;
}

.flow-line {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: flow-line 2s linear infinite;
}

@keyframes flow-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.money-particle {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: money-flow 3s linear infinite;
}

.particle-1 { top: -15px; animation-delay: 0s; }
.particle-2 { top: -15px; animation-delay: 0.75s; }
.particle-3 { top: -15px; animation-delay: 1.5s; }
.particle-4 { top: -15px; animation-delay: 2.25s; }

@keyframes money-flow {
    0% { left: 0; opacity: 0; transform: scale(0.5); }
    10% { opacity: 1; transform: scale(1); }
    90% { opacity: 1; transform: scale(1); }
    100% { left: 100%; opacity: 0; transform: scale(0.5); }
}

.accumulated-amount {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(100, 255, 218, 0.2);
    border-radius: 10px;
    border: 1px solid var(--accent-color);
}

.amount-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
}

/* Auction Animation */
.auction-animation {
    width: 100%;
    padding: 1.5rem;
}

.auction-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
}

.auction-timer {
    position: relative;
}

.timer-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.timer-svg {
    transform: rotate(-90deg);
}

.timer-bg {
    fill: none;
    stroke: rgba(100, 255, 218, 0.2);
    stroke-width: 4;
}

.timer-fill {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 4;
    stroke-dasharray: 220;
    stroke-dashoffset: 0;
    animation: timer-countdown 30s linear infinite;
    stroke-linecap: round;
}

@keyframes timer-countdown {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 220; }
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
}

.auction-title {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Fixed Auction Display */
.fixed-auction-display {
    margin-bottom: 2rem;
}

.fixed-amount-box {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.2), rgba(48, 224, 112, 0.2));
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
    animation: fixed-amount-pulse 3s ease-in-out infinite;
}

@keyframes fixed-amount-pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(100, 255, 218, 0.3); }
    50% { box-shadow: 0 0 50px rgba(100, 255, 218, 0.6); }
}

.fixed-label {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fixed-amount-value {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.fixed-note {
    color: var(--text-color);
    font-size: 0.85rem;
    opacity: 0.8;
}

.auction-participants {
    margin-bottom: 1.5rem;
}

.participant-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
}

.participant-header i {
    font-size: 1.2rem;
}

.participants-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.participant {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: var(--transition);
}

.participant:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: translateX(5px);
}

.participant-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #30E070);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.participant-info {
    flex: 1;
}

.participant-name {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.participant-status {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
}

.participant-status.confirmed {
    color: #30E070;
}

.participant-status.pending {
    color: #FFA500;
}

.participant-status i {
    font-size: 0.9rem;
}

.participant-amount {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.auction-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.summary-item {
    text-align: center;
}

.summary-label {
    color: var(--gray-color);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: bold;
}

/* Growth Animation */
.growth-animation {
    width: 100%;
}

.growth-chart {
    margin-bottom: 2rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    gap: 1rem;
    padding: 1rem;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent-color), #30E070);
    border-radius: 5px 5px 0 0;
    position: relative;
    min-width: 40px;
    animation: bar-grow 1.5s ease-out;
    transition: var(--transition);
}

.chart-bar:hover {
    transform: scaleY(1.1);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

@keyframes bar-grow {
    0% { height: 0; }
    100% { height: var(--bar-height, 100%); }
}

.bar-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.9rem;
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    margin-top: 0.5rem;
    color: var(--gray-color);
    font-size: 0.8rem;
}

.growth-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #30E070);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.stat-content {
    flex: 1;
}

.stat-value {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--gray-color);
    font-size: 0.8rem;
}

/* Payment Animation */
.payment-animation {
    width: 100%;
}

.payment-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.payment-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(100, 255, 218, 0.2);
    z-index: 0;
}

.payment-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: rgba(100, 255, 218, 0.2);
    border: 2px solid rgba(100, 255, 218, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    font-weight: bold;
    transition: var(--transition);
}

.payment-step.active .step-number {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.6);
    animation: step-pulse 2s ease-in-out infinite;
}

@keyframes step-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.step-icon {
    font-size: 1.5rem;
    color: var(--gray-color);
    transition: var(--transition);
}

.payment-step.active .step-icon {
    color: var(--accent-color);
    animation: icon-rotate 2s ease-in-out infinite;
}

@keyframes icon-rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.step-label {
    font-size: 0.8rem;
    color: var(--gray-color);
    text-align: center;
    transition: var(--transition);
}

.payment-step.active .step-label {
    color: var(--accent-color);
    font-weight: 600;
}

.step-progress {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 1s ease-in-out;
    z-index: 2;
}

.payment-step.active .step-progress {
    width: 100%;
    animation: progress-fill 2s ease-in-out infinite;
}

@keyframes progress-fill {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 100%; }
}

.payment-amount-display {
    text-align: center;
    padding: 1.5rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 10px;
    border: 1px solid var(--accent-color);
}

.amount-label {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.payment-amount-display .amount-value {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: bold;
}

/* Dashboard Animation */
.dashboard-animation {
    width: 100%;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: var(--transition);
}

.metric-card:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #30E070);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
}

.metric-label {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
}

.metric-trend.up {
    color: #30E070;
}

.metric-trend.down {
    color: #ff6b6b;
}

.metric-trend.neutral {
    color: var(--gray-color);
}

.dashboard-chart {
    padding: 1.5rem;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.chart-title {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mini-chart {
    height: 150px;
    position: relative;
}

.chart-line {
    position: relative;
    width: 100%;
    height: 100%;
}

.line-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, 50%);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.6);
    animation: point-pulse 2s ease-in-out infinite;
}

@keyframes point-pulse {
    0%, 100% { transform: translate(-50%, 50%) scale(1); }
    50% { transform: translate(-50%, 50%) scale(1.3); }
}

.line-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .animations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .animation-card {
        padding: 1.5rem;
    }
    
    .chit-cycle-animation {
        height: 250px;
    }
    
    .money-flow-animation {
        flex-direction: column;
        gap: 2rem;
    }
    
    .flow-path {
        width: 4px;
        height: 100px;
        margin: 0;
    }
    
    .payment-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .payment-steps::before {
        display: none;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
    
    .growth-stats {
        grid-template-columns: 1fr;
    }
    
    .auction-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fixed-amount-value {
        font-size: 2rem;
    }
    
    .participant {
        flex-wrap: wrap;
    }
    
    .participant-amount {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    /* Slideshow Mobile Styles */
    .slideshow-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slideshow-prev {
        left: 10px;
    }
    
    .slideshow-next {
        right: 10px;
    }
    
    .slideshow-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 12px;
        height: 12px;
    }
}