* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-color: #000000;
}

.snowflake {
    position: fixed;
    top: -10px;
    z-index: 100;
    user-select: none;
    cursor: default;
    animation: snowfall linear forwards;
    pointer-events: none;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes snowfall {
    0% {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
    to {
        opacity: 0;
        transform: translateY(100vh) translateX(var(--drift, 0px));
    }
}

.cursor {
    width: 20px;
    height: 20px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
}

.cursor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cursor.pointer {
    transform: scale(1.15);
}

.cursor.click {
    animation: cursorClick 0.3s ease;
}

@keyframes cursorClick {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    animation: navSlideDown 0.8s ease-out 0.2s both;
}

@keyframes navSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.5) 0%, rgba(20, 20, 35, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 10px 20px;
    backdrop-filter: blur(50px) saturate(200%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 80px rgba(88, 101, 242, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-container:hover {
    background: linear-gradient(135deg, rgba(40, 25, 25, 0.6) 0%, rgba(25, 35, 25, 0.5) 100%);
    border-color: linear-gradient(90deg,rgba(87, 204, 210, 1) 0%, rgba(0, 127, 168, 1) 50%, rgba(0, 115, 163, 1) 100%);
    transform: scale(1.08);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8), 0 0 120px rgba(220, 38, 38, 0.4);
}

.nav-icon {
    background: rgb(25, 40, 53);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: inset -10px -10px 20px rgba(255, 255, 255, 0.1);
}

.nav-icon:hover {
    background: linear-gradient(90deg,rgba(87, 204, 210, 1) 0%, rgba(0, 127, 168, 1) 50%, rgba(0, 115, 163, 1) 100%);
    border-color: rgba(30, 0, 255, 0.6);
    transform: rotate(360deg);
}

.nav-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 11px 20px;
    border-radius: 22px;
    display: block;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: #00D9FF;
    border: none;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, rgba(0, 217, 255, 0.1) 70%, transparent 100%);
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.4),
        0 0 60px rgba(0, 217, 255, 0.2),
        0 0 90px rgba(0, 217, 255, 0.1),
        inset 0 0 20px rgba(0, 217, 255, 0.15);
    backdrop-filter: blur(10px);
}

.download-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #0a0a0a;
    border: none;
    padding: 11px 28px;
    border-radius: 24px;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    * {
        cursor: auto;
    }
    
    .cursor {
        display: none;
    }
    
    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        display: flex;
        justify-content: center;
    }
    
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        padding: 8px 12px;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 4px;
        padding: 4px 0 0 0;
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nav-icon {
        width: 38px;
        height: 38px;
    }
    
    .nav-icon img {
        width: 24px;
        height: 24px;
    }
    
    .download-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .nav-container:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 480px) {
    .nav-link {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .nav-icon {
        width: 36px;
        height: 36px;
    }
    
    .nav-icon img {
        width: 22px;
        height: 22px;
    }
    
    .download-btn {
        padding: 7px 16px;
        font-size: 12px;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("img/background4 2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.hero-content {
    width: 100%;
    height: 100%;
}

/* Hero Section Mobile - Different Image */
@media (max-width: 768px) {
    .hero-section {
        background-image: url("img/background-mobile.png");
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        background-image: url("img/background-mobile.png");
        background-size: cover;
        background-position: center center;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

/* Gradient Blob Background */
.gradient-blob {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, rgba(138, 43, 226, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatingBlob 8s ease-in-out infinite;
}

@keyframes floatingBlob {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-30px) scale(1.1);
    }
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -1px;
    background: Linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(2, 126, 250, 0.615) 50%, rgba(255, 255, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
}

.services-title.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
}

.services-description.animate {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, rgba(13, 31, 45, 0.6) 0%, rgba(10, 20, 35, 0.8) 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card.animate:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card.animate:nth-child(2) {
    animation-delay: 0.3s;
}

.service-card.animate:nth-child(3) {
    animation-delay: 0.5s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 24px;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(10, 20, 35, 0.9) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(37, 99, 235, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: #3b82f6;
    transition: all 0.4s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.service-card:hover .service-icon {
    transform: translateY(-3px) scale(1.05);
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.service-card:hover .service-icon svg {
    color: #60a5fa;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
}

.service-card h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #60a5fa;
}

.service-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.75);
}

/* Mobile Responsiveness for Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 20px;
    }
    
    .gradient-blob {
        width: 600px;
        height: 600px;
    }
    
    .services-title {
        font-size: 42px;
    }
    
    .services-description {
        font-size: 16px;
        margin-bottom: 50px;
    }
    
    .services-grid {
        margin-top: 40px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 15px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-description {
        font-size: 15px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* Pricing Section */
.pricing-section {
    background: #000000;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-bg-text {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 280px;
    font-weight: 900;
    color: rgba(252, 252, 252, 0.95);
    letter-spacing: -10px;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    opacity: 0;
}

.pricing-bg-text.animate {
    animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(40px);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card.animate {
    animation: slideUpFade 0.8s ease-out forwards;
}

.pricing-card.animate:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card.animate:nth-child(2) {
    animation-delay: 0.3s;
}

.pricing-card.animate:nth-child(3) {
    animation-delay: 0.5s;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-header {
    margin-bottom: 32px;
}

.plan-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.plan-price {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0;
}

.plan-price span {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.plan-features li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.plan-features li svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-btn {
    width: 100%;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.plan-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.featured-btn {
    background: #ffffff;
    color: #000000;
    border: none;
}

.featured-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 20px;
    }
    
    .pricing-bg-text {
        font-size: 150px;
        letter-spacing: -5px;
        top: 3%;
    }
    
    .pricing-grid {
        margin-top: 40px;
    }
    
    .pricing-card {
        padding: 35px 28px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 15px;
    }
    
    .pricing-bg-text {
        font-size: 100px;
        letter-spacing: -3px;
        top: 2%;
    }
    
    .plan-price {
        font-size: 40px;
    }
    
    .pricing-card {
        padding: 30px 24px;
    }
}

/* Carousel Section */
.carousel-section {
    background: linear-gradient(180deg, #000000 0%, #0E0C15 50%, #000000 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.15);
    }
}

.carousel-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.carousel-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(30px);
}

.carousel-title.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.carousel-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 400;
}

.carousel-subtitle.animate {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.carousel-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    padding: 0 120px;
    overflow: hidden;
}

.carousel-container {
    flex: 1;
    overflow: visible;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.carousel-track {
    display: flex;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 32px;
    padding: 0 20px;
}

.carousel-box {
    min-width: 400px;
    height: 420px;
    background: rgba(15, 13, 28, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px 40px 36px;
    text-align: left;
    transition: all 0.8s ease;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    position: relative;
    overflow: hidden;
    opacity: 0.4;
    transform: scale(0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.carousel-box.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(20, 18, 35, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.carousel-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 50%;
    filter: blur(50px);
}

.carousel-box.active::before {
    opacity: 1;
}

.box-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 28px;
    position: relative;
    z-index: 2;
}

.box-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.carousel-box.active .box-icon {
    transform: scale(1.05);
}

.box-icon.purple {
    background: linear-gradient(135deg, #9B7FDB 0%, #7C5FBD 100%);
}

.box-icon.yellow {
    background: linear-gradient(135deg, #FDB755 0%, #F59E0B 100%);
}

.box-icon.green {
    background: linear-gradient(135deg, #6EE7B7 0%, #34D399 100%);
}

.box-icon.orange {
    background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
}

.box-icon.pink {
    background: linear-gradient(135deg, #F472B6 0%, #EC4899 100%);
}

.box-icon svg {
    width: 32px;
    height: 32px;
    color: rgba(0, 0, 0, 0.9);
    transition: all 0.5s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.carousel-box.active .box-icon svg {
    color: #000000;
}

.explore-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.explore-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.explore-link:hover {
    color: #ffffff;
}

.explore-link:hover svg {
    transform: translateX(4px);
}

.carousel-box.active .explore-link {
    color: rgba(255, 255, 255, 0.7);
}

.carousel-box h3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
}

.carousel-box.active h3 {
    color: #ffffff;
}

.carousel-box p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
}

.carousel-box.active p {
    color: rgba(255, 255, 255, 0.7);
}

.carousel-nav {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(20, 18, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 10;
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    background: rgba(138, 43, 226, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.carousel-nav:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 15px 60px rgba(138, 43, 226, 0.5),
        0 0 80px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.carousel-nav:hover svg {
    color: #ffffff;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: none;
    transition: all 0.3s ease;
    position: relative;
}

.indicator.active {
    width: 32px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Mobile Responsiveness for Carousel */
@media (max-width: 1024px) {
    .carousel-wrapper {
        padding: 0 90px;
    }
    
    .carousel-box {
        min-width: 350px;
        height: 360px;
    }
    
    .carousel-nav.prev {
        left: 15px;
    }
    
    .carousel-nav.next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 80px 20px;
    }
    
    .carousel-header {
        margin-bottom: 60px;
    }
    
    .carousel-title {
        font-size: 42px;
    }
    
    .carousel-subtitle {
        font-size: 16px;
    }
    
    .carousel-wrapper {
        gap: 20px;
        padding: 0 70px;
    }
    
    .carousel-box {
        min-width: 300px;
        height: 340px;
        padding: 32px 28px 28px;
    }
    
    .carousel-box h3 {
        font-size: 26px;
    }
    
    .carousel-box p {
        font-size: 14px;
    }
    
    .box-icon {
        width: 48px;
        height: 48px;
    }
    
    .box-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .carousel-nav {
        width: 48px;
        height: 48px;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
    
    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .carousel-section {
        padding: 60px 15px;
    }
    
    .carousel-title {
        font-size: 32px;
    }
    
    .carousel-subtitle {
        font-size: 14px;
    }
    
    .carousel-wrapper {
        padding: 0 60px;
    }
    
    .carousel-box {
        min-width: 280px;
        height: 320px;
        padding: 28px 24px 24px;
    }
    
    .box-icon {
        width: 44px;
        height: 44px;
    }
    
    .box-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .carousel-box h3 {
        font-size: 22px;
    }
    
    .carousel-box p {
        font-size: 13px;
    }
    
    .explore-link {
        font-size: 10px;
    }
    
    .explore-link svg {
        width: 14px;
        height: 14px;
    }
    
    .carousel-nav {
        width: 44px;
        height: 44px;
    }
    
    .carousel-nav.prev {
        left: 5px;
    }
    
    .carousel-nav.next {
        right: 5px;
    }
    
    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }
}

/* Box Visual Elements */
.box-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 180px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    transition: all 0.6s ease;
}

.carousel-box.active .box-visual {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Orb with Ring (Ask anything) */
.visual-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(155, 127, 219, 0.6) 0%, rgba(124, 95, 189, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    animation: orbPulse 4s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(155, 127, 219, 0.4);
}

@keyframes orbPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
        box-shadow: 0 0 60px rgba(155, 127, 219, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 1;
        box-shadow: 0 0 100px rgba(155, 127, 219, 0.6);
    }
}

.visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(155, 127, 219, 0.4);
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
    box-shadow: 0 0 30px rgba(155, 127, 219, 0.3);
}

@keyframes ringRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.visual-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.visual-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(155, 127, 219, 0.8);
    border-radius: 50%;
    animation: particleFloat 5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(155, 127, 219, 0.6);
}

.visual-particles span:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.visual-particles span:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 1.7s;
}

.visual-particles span:nth-child(3) {
    top: 80%;
    left: 40%;
    animation-delay: 3.4s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) scale(1.3);
        opacity: 1;
    }
}

/* Chart Bars (Improve everyday) */
.visual-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    padding: 30px 20px;
}

.chart-bar {
    width: 24px;
    background: linear-gradient(180deg, rgba(253, 183, 85, 0.8) 0%, rgba(245, 158, 11, 0.4) 100%);
    border-radius: 6px 6px 0 0;
    animation: barGrow 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(253, 183, 85, 0.4);
    position: relative;
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 6px 6px 0 0;
}

.chart-bar:nth-child(1) { animation-delay: 0s; }
.chart-bar:nth-child(2) { animation-delay: 0.3s; }
.chart-bar:nth-child(3) { animation-delay: 0.6s; }
.chart-bar:nth-child(4) { animation-delay: 0.9s; }
.chart-bar:nth-child(5) { animation-delay: 1.2s; }

@keyframes barGrow {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.8;
    }
    50% {
        transform: scaleY(1.15);
        opacity: 1;
    }
}

/* Network Nodes (Connect everywhere) */
.visual-network {
    position: relative;
    width: 100%;
    height: 100%;
}

.network-node {
    position: absolute;
    width: 16px;
    height: 16px;
    background: rgba(52, 211, 153, 0.8);
    border: 2px solid rgba(52, 211, 153, 1);
    border-radius: 50%;
    animation: nodePulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.5);
}

.network-node:nth-child(1) { animation-delay: 0s; }
.network-node:nth-child(2) { animation-delay: 0.6s; }
.network-node:nth-child(3) { animation-delay: 1.2s; }
.network-node:nth-child(4) { animation-delay: 1.8s; }

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(52, 211, 153, 0.5), 0 0 0 0 rgba(52, 211, 153, 0.6);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 30px rgba(52, 211, 153, 0.7), 0 0 0 12px rgba(52, 211, 153, 0);
    }
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Speed Waves (Fast responses) */
.visual-speed {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speed-wave {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 3px solid rgba(251, 146, 60, 0.6);
    border-radius: 50%;
    animation: waveExpand 2.5s ease-out infinite;
    box-shadow: 0 0 30px rgba(251, 146, 60, 0.4);
}

.speed-wave:nth-child(1) { animation-delay: 0s; }
.speed-wave:nth-child(2) { animation-delay: 0.8s; }
.speed-wave:nth-child(3) { animation-delay: 1.6s; }

@keyframes waveExpand {
    0% {
        transform: scale(0.4);
        opacity: 1;
        border-width: 3px;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
        border-width: 1px;
    }
}

/* Shield (Secure & Private) */
.visual-shield {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    width: 120px;
    height: 140px;
    animation: shieldFloat 4s ease-in-out infinite;
}

@keyframes shieldFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.shield-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 40px rgba(244, 114, 182, 0.5));
}

.shield-icon svg path:first-child {
    animation: shieldGlow 3s ease-in-out infinite;
}

@keyframes shieldGlow {
    0%, 100% {
        stroke: rgba(244, 114, 182, 0.5);
        fill: rgba(244, 114, 182, 0.1);
    }
    50% {
        stroke: rgba(244, 114, 182, 0.8);
        fill: rgba(244, 114, 182, 0.2);
    }
}
