/* Home Page Specific Styles */

/* Force Space Mono Font for all elements except Font Awesome icons */
*:not(.fas):not(.fab):not(.far):not(.fal):not(.fa) {
    font-family: 'Space Mono', monospace !important;
}

/* Video Section Styles */
.video-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0057B8, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 87, 184, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 87, 184, 0.6);
}

.play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a2e 50%, #0f0f23 100%);
    overflow: hidden;
    padding: 0;
    margin-top: -2rem;
}

/* Grid Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 87, 184, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 184, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.8;
    z-index: 1;
    box-shadow: 
        inset 0 0 50px rgba(0, 87, 184, 0.1),
        0 0 100px rgba(0, 87, 184, 0.05);
}

/* Rotating Sphere Background */
.rotating-sphere {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 87, 184, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(32, 201, 151, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(0, 87, 184, 0.2) 0%, transparent 80%);
    border-radius: 50%;
    z-index: 0;
    animation: sphereRotate 20s linear infinite;
    opacity: 0.9;
    filter: blur(0.5px);
    box-shadow: 
        0 0 50px rgba(0, 87, 184, 0.3),
        inset 0 0 30px rgba(0, 87, 184, 0.2);
}

/* Gradient Overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 87, 184, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(32, 201, 151, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 87, 184, 0.1) 0%, transparent 70%);
    z-index: 2;
    animation: gridGlow 4s ease-in-out infinite alternate;
}

@keyframes sphereRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes gridGlow {
    0% {
        opacity: 0.7;
        box-shadow: 
            inset 0 0 30px rgba(0, 87, 184, 0.1),
            0 0 50px rgba(0, 87, 184, 0.05);
    }
    100% {
        opacity: 1;
        box-shadow: 
            inset 0 0 60px rgba(0, 87, 184, 0.2),
            0 0 80px rgba(0, 87, 184, 0.1);
    }
}

/* Responsive styles for rotating sphere */
@media (max-width: 1200px) {
    .rotating-sphere {
        width: 350px;
        height: 350px;
        top: 75%;
    }
}

@media (max-width: 768px) {
    .rotating-sphere {
        width: 300px;
        height: 300px;
        top: 80%;
        opacity: 0.8;
    }
}

@media (max-width: 576px) {
    .rotating-sphere {
        width: 250px;
        height: 250px;
        top: 85%;
        opacity: 0.7;
    }
}











.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 2rem);
    padding-top: 2rem;
    gap: 2rem;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin-bottom: 0;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    text-align: center;
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    color: var(--zasti-blue);
    z-index: -1;
    animation: glitch-animation 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    color: var(--zasti-green);
    z-index: -2;
    animation: glitch-animation 2s infinite linear alternate-reverse;
}

@keyframes glitch-animation {
    0% {
        transform: translate(0);
        opacity: 0;
    }
    1% {
        transform: translate(-2px, 1px);
        opacity: 0.2;
    }
    2% {
        transform: translate(2px, -1px);
        opacity: 0;
    }
    3% {
        transform: translate(0);
        opacity: 0;
    }
    50% {
        transform: translate(0);
        opacity: 0;
    }
    51% {
        transform: translate(1px, -1px);
        opacity: 0.2;
    }
    52% {
        transform: translate(-1px, 1px);
        opacity: 0;
    }
    53% {
        transform: translate(0);
        opacity: 0;
    }
    90% {
        transform: translate(0);
        opacity: 0;
    }
    91% {
        transform: translate(-1px, 2px);
        opacity: 0.2;
    }
    92% {
        transform: translate(1px, -2px);
        opacity: 0;
    }
    93% {
        transform: translate(0);
        opacity: 0;
    }
}

.hero-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #0057B8 0%, #20c997 100%);
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 87, 184, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 250px;
    justify-content: center;
}

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

.hero-cta .btn-primary:hover::before {
    left: 100%;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 87, 184, 0.6);
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}



.hero-visual {
    display: none;
}

.atom-animation {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: rotate-atom 20s linear infinite;
}

.nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: var(--zasti-blue);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 87, 184, 0.8);
    animation: pulse 3s ease-in-out infinite;
}

.electron-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.electron-orbit:nth-child(2) {
    transform: translate(-50%, -50%) rotate(60deg);
}

.electron-orbit:nth-child(3) {
    transform: translate(-50%, -50%) rotate(120deg);
}

.electron {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background-color: var(--zasti-green);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(32, 201, 151, 0.8);
    animation: orbit 3s linear infinite;
}

.electron-orbit:nth-child(2) .electron {
    animation-duration: 4s;
    background-color: var(--zasti-purple);
    box-shadow: 0 0 10px rgba(111, 66, 193, 0.8);
}

.electron-orbit:nth-child(3) .electron {
    animation-duration: 5s;
}

@keyframes rotate-atom {
    0% {
        transform: rotate3d(1, 1, 1, 0deg);
    }
    100% {
        transform: rotate3d(1, 1, 1, 360deg);
    }
}

@keyframes orbit {
    0% {
        transform: translateX(-50%) rotate(0deg) translateY(-100px) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg) translateY(-100px) rotate(-360deg);
    }
}

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

.data-stats {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 1;
}

.stat {
    background-color: var(--zasti-dark-gray);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 1s);
}

.stat:nth-child(1) {
    --delay: 0;
}

.stat:nth-child(2) {
    --delay: 1;
}

.stat:nth-child(3) {
    --delay: 2;
}

.stat .value {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zasti-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.stat .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 6px;
    height: 6px;
    background-color: var(--zasti-blue);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    margin: -5px;
    animation: arrow 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

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

/* ATOMICITY Overview Section */
.atomicity-overview {
    background-color: var(--zasti-gray);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.atomicity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.atomicity-card {
    background-color: var(--zasti-dark-gray);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all var(--transition-medium);
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.atomicity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: rgba(0, 87, 184, 0.05);
    border-color: var(--zasti-blue);
}

.letter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-secondary);
    font-size: 8rem;
    font-weight: 700;
    color: var(--zasti-blue);
    opacity: 0.05;
    z-index: 0;
    transition: all var(--transition-medium);
}

.atomicity-card:hover .letter {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.1);
}

.content {
    position: relative;
    z-index: 1;
    transition: all var(--transition-medium);
}

.hover-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: var(--zasti-blue);
    color: var(--zasti-white);
    opacity: 0;
    transform: translateY(100%);
    transition: all var(--transition-medium);
    z-index: 2;
}

.atomicity-card:hover .hover-info {
    opacity: 1;
    transform: translateY(0);
}

.atomicity-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.atomicity-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.hover-info p {
    color: var(--zasti-white);
    line-height: 1.6;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Floating particles in ATOMICITY section */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background-color: rgba(0, 87, 184, 0.2);
    border-radius: 50%;
    animation: float-particle 15s linear infinite;
}

.particle:nth-child(odd) {
    background-color: rgba(32, 201, 151, 0.2);
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) translateX(100px);
        opacity: 0;
    }
}

/* Tech Stack Section */
.tech-stack {
    background-color: var(--zasti-black);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

/* Circuit board background */
.circuit-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 87, 184, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 87, 184, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}

.circuit-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(0, 87, 184, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: 1;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.tech-card {
    background-color: var(--zasti-gray);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: rgba(0, 87, 184, 0.05);
    border-color: var(--zasti-blue);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--zasti-blue);
    margin-bottom: 1.5rem;
}

.tech-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tech-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.tech-specs li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.tech-specs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--zasti-blue);
    border-radius: 50%;
}

/* NVIDIA Inception Grid - UPDATED VERSION */
.nvidia-inception-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    margin: 3rem auto 0 !important;
    max-width: 1200px !important;
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    padding: 2rem !important;
}

  .inception-card {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 16px !important;
    padding: 2.5rem !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: left !important;
    min-height: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    /* Extra visibility for testing */
    box-shadow: 0 10px 30px rgba(0, 87, 184, 0.3) !important;
  }

.inception-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0057b8, #20c997);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.inception-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 87, 184, 0.4);
    box-shadow: 0 25px 50px rgba(0, 87, 184, 0.15);
    background: rgba(255, 255, 255, 0.12);
}

.inception-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0057b8, #20c997);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 87, 184, 0.2);
}

.inception-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.inception-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.inception-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

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

.inception-card ul li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.7rem 0;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.inception-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #20c997;
    font-weight: bold;
    font-size: 1.1rem;
}

.benefits ul li:hover {
    color: white;
    transform: translateX(8px);
    transition: all 0.3s ease;
}

.ceo-quote blockquote {
    background: rgba(0, 87, 184, 0.15);
    border-left: 4px solid #0057b8;
    padding: 1.8rem;
    margin: 1rem 0;
    border-radius: 12px;
    position: relative;
    flex-grow: 1;
}

.ceo-quote blockquote p {
    margin: 0 0 1rem 0;
    font-style: italic;
    color: white;
    font-size: 1.1rem;
    line-height: 1.5;
}

.ceo-quote cite {
    color: #0057b8;
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
}

/* Specific card styling for better visual hierarchy */
.main-announcement {
    background: linear-gradient(135deg, rgba(0, 87, 184, 0.1), rgba(255, 255, 255, 0.05));
}

.benefits {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.1), rgba(255, 255, 255, 0.05));
}

.impact {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.1), rgba(255, 255, 255, 0.05));
}

.ceo-quote {
    background: linear-gradient(135deg, rgba(0, 87, 184, 0.15), rgba(255, 255, 255, 0.08));
}

/* Video Section */
.video-section {
    background-color: var(--zasti-dark-gray);
    position: relative;
    padding: 4rem 0;
    overflow: visible;
}

.video-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.video-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.video-section .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Wave animation background */
.wave-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230057b8" fill-opacity="0.1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: repeat-x;
    background-position: 0 bottom;
    background-size: 1440px 320px;
    animation: wave 20s linear infinite;
    z-index: 1;
}

.wave2 {
    animation-delay: -5s;
    opacity: 0.7;
    bottom: -10px;
}

.wave3 {
    animation-delay: -10s;
    bottom: -20px;
    opacity: 0.5;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.feature-video {
    width: 100%;
    height: auto;
    display: block;
    background-color: var(--zasti-gray);
    border-radius: var(--border-radius-lg);
    max-height: 600px;
    position: relative;
    z-index: 10;
}

.video-error {
    background-color: var(--zasti-gray);
    color: var(--zasti-white);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-placeholder {
    width: 100%;
    height: 450px;
    background-color: var(--zasti-gray);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, var(--zasti-blue) 0%, var(--zasti-black) 100%);
    opacity: 0.2;
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--zasti-white);
    margin-bottom: 1rem;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

.video-placeholder span {
    font-size: 1.2rem;
    color: var(--zasti-white);
    font-weight: 500;
}

/* Solutions Overview */
.solutions-overview {
    background: linear-gradient(90deg, #0a0a0a 0%, #0057B8 50%, #00e6cc 100%);
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    font-family: 'Space Mono', monospace;
}

.solutions-overview .section-container {
    position: relative;
    z-index: 5;
}

.solutions-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 87, 184, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 230, 204, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Gradient background for verticals */
.verticals-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0a0a0a 0%, #0057B8 50%, #00e6cc 100%);
    z-index: 0;
}

.verticals-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.vertical-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.vertical-video-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.vertical-video-link:hover::before {
    left: 100%;
}

.vertical-video-link:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vertical-video-link:hover .vertical-video-container {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
}

.vertical-video-link:hover .vertical-label {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.vertical-video-link:active {
    transform: translateY(-2px);
    transition: transform 0.1s ease;
}

.vertical-video-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--zasti-dark-gray);
    border: 2px solid var(--zasti-dark-gray);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Make sustainability icon background black */
.vertical-item.sustainability .vertical-video-container {
    background: #000000;
    border: 2px solid #000000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 87, 184, 0.3);
    transition: all 0.3s ease;
}

.vertical-item.sustainability .vertical-video-container:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 87, 184, 0.5);
    transform: scale(1.05);
}

/* Zoom in sustainability video */
.vertical-item.sustainability .vertical-video {
    object-fit: cover;
    transform: scale(1.3);
    transition: transform 0.3s ease;
}

.vertical-item.sustainability .vertical-video-container:hover .vertical-video {
    transform: scale(1.4);
}

/* Motion Gradient Glow Grid Background */
.motion-gradient-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 87, 184, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 184, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

.motion-gradient-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 87, 184, 0.2) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite alternate;
}

.motion-gradient-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 87, 184, 0.1) 50%, transparent 70%);
    animation: gradientSweep 8s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes gradientSweep {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.vertical-video-container:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.vertical-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.vertical-label {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.solutions-overview .section-title {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.solutions-overview .section-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    text-transform: none;
    letter-spacing: 1px;
    text-align: left;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.solutions-overview .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

/* Hexagon background */
.hexagon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%230057b8" stroke-width="0.2" stroke-opacity="0.2"><polygon points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"/></svg>');
    background-size: 120px 120px;
    opacity: 0.3;
    z-index: 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.solution-card {
    background-color: var(--zasti-dark-gray);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-medium);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.solution-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.agri-card .solution-icon {
    color: var(--zasti-green);
}

.health-card .solution-icon {
    color: var(--zasti-blue);
}

.solution-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.solution-features li i {
    color: var(--zasti-green);
}

.health-card .solution-features li i {
    color: var(--zasti-blue);
}

.solution-stats {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.agri-card .solution-stats .value {
    color: var(--zasti-green);
}

.health-card .solution-stats .value {
    color: var(--zasti-blue);
}

.agri-card:hover {
    background-color: rgba(32, 201, 151, 0.05);
    border-color: var(--zasti-green);
}

.health-card:hover {
    background-color: rgba(0, 87, 184, 0.05);
    border-color: var(--zasti-blue);
}

/* Floating leaves animation in agriculture card */
.floating-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.agri-card:hover .floating-leaves {
    opacity: 1;
}

.floating-leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2320c997" opacity="0.2"><path d="M17,8C8,10,5.9,16.17,3.82,21.34L5.71,22l1-2.3A4.49,4.49,0,0,0,8,20C19,20,22,3,22,3,21,5,14,5.25,9,6.25S2,11.5,2,13.5a6.52,6.52,0,0,0,1.5,4.07L3.2,18.93,4.5,21C7.75,15.5,9,12,17,8Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    animation: float-leaf 10s linear infinite;
    animation-delay: calc(var(--delay) * 1s);
}

@keyframes float-leaf {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translate(40px, -60px) rotate(360deg);
        opacity: 0;
    }
}

/* Pulse animation in healthcare card */
.pulse-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.health-card:hover .pulse-animation {
    opacity: 1;
}

.pulse-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--zasti-blue);
    border-radius: 50%;
    animation: pulse-dot 3s infinite;
    animation-delay: calc(var(--delay) * 0.5s);
}

.pulse-line {
    position: absolute;
    width: 2px;
    background-color: var(--zasti-blue);
    opacity: 0.3;
    animation: pulse-line 2s infinite;
    animation-delay: calc(var(--delay) * 0.5s);
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

@keyframes pulse-line {
    0% {
        height: 0;
        top: 50%;
        opacity: 0.7;
    }
    100% {
        height: 100%;
        top: 0;
        opacity: 0;
    }
}

/* Clients Section */
.clients-section {
    background-color: var(--zasti-black);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

/* Data flow background */
.data-flow-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    background-image: linear-gradient(to right, var(--zasti-blue) 50%, transparent 50%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
    animation: data-flow 15s linear infinite;
}

@keyframes data-flow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.clients-slider {
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.logo-item {
    background-color: var(--zasti-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    filter: none;
    opacity: 0.8;
    transition: all var(--transition-medium);
}

.logo-item:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    position: relative;
    padding: 2rem 3rem;
    margin-bottom: 2rem;
}

.testimonial-quote i {
    position: absolute;
    font-size: 1.5rem;
    color: var(--zasti-blue);
    opacity: 0.5;
}

.testimonial-quote i.fa-quote-left {
    top: 0;
    left: 0;
}

.testimonial-quote i.fa-quote-right {
    bottom: 0;
    right: 0;
}

.testimonial-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--zasti-white);
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
    border: 2px solid var(--zasti-blue);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Awards Section */
.awards-section {
    background-color: #0a0a0a;
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    font-family: 'Space Mono', monospace;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Particle glow background */
.particle-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.glow-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--zasti-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px 2px var(--zasti-blue);
    opacity: 0.3;
    animation: glow 4s infinite;
    animation-delay: calc(var(--delay) * 1s);
}

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

.awards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.award-card {
    background-color: var(--zasti-gray);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-medium);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: rgba(0, 87, 184, 0.05);
    border-color: var(--zasti-blue);
}

.award-icon {
    font-size: 2rem;
    color: var(--zasti-blue);
    margin-bottom: 1rem;
}

.award-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
}

.award-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-family: 'Space Mono', monospace;
    line-height: 1.4;
}

.awards-video-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: #0a0a0a;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #0a0a0a;
}

.awards-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), transparent, rgba(0, 0, 0, 0.1));
    z-index: 1;
    pointer-events: none;
}

.awards-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    background: #0a0a0a;
    position: relative;
    z-index: 0;
}

.awards-section .section-title {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    background-color: var(--zasti-black);
    padding: 0;
}

/* Animated gradient background */
.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 87, 184, 0.3), rgba(32, 201, 151, 0.3), rgba(111, 66, 193, 0.3));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    z-index: 0;
    opacity: 0.2;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-container {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 0 1rem;
    }

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

    .hero-text p {
        font-size: 1.2rem;
    }

    .hero-cta .btn-primary {
        padding: 1.3rem 2.5rem;
        font-size: 1.1rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
        margin-top: -1rem;
    }

    .hero-content {
        min-height: calc(100vh - 1rem);
        padding-top: 1rem;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 0;
    }

    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-cta {
        gap: 1.5rem;
    }

    .hero-cta .btn-primary {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: 200px;
    }

    .rotating-sphere {
        width: 300px;
        height: 300px;
        top: 80%;
        opacity: 0.8;
    }

    .atom-animation {
        width: 300px;
        height: 300px;
        display: block;
    }

    .data-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .atomicity-grid {
        grid-template-columns: 1fr;
    }

    .letter {
        font-size: 3rem;
    }

    .atomicity-card h3 {
        font-size: 1.5rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .nvidia-inception-grid {
        grid-template-columns: 1fr;
    }

    .client-logos {
        flex-wrap: wrap;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-quote p {
        font-size: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    /* New sections responsive styles */
    .verticals-content {
        flex-direction: column;
        gap: 3rem;
    }

    .vertical-video-container {
        width: 250px;
        height: 250px;
    }

    .partners-logos {
        flex-direction: column;
        gap: 2rem;
    }

    .logo-shape {
        width: 300px;
        height: 200px;
    }

    .awards-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .awards-video-container {
        height: 400px;
    }

    .award-card {
        min-height: 180px;
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 0 0.5rem;
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 1.3rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .atom-animation {
        width: 150px;
        height: 150px;
    }
    
    .letter {
        font-size: 5rem;
    }
    
    .atomicity-card {
        padding: 1.5rem;
        min-height: 150px;
    }
    
    .inception-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .inception-card h3 {
        font-size: 1.2rem;
    }
    
    .video-placeholder {
        height: 300px;
    }
}

.client-ticker-wrapper {
    overflow: hidden;
    background-color: #1f1919;
    padding: 10px 0;
    width: 100%;
    border-top: 1px solid #0a0909;
    border-bottom: 1px solid #0d0b0b;
    box-sizing: border-box;
  }
  
  .client-ticker {
    display: flex;
    align-items: center;
    animation: ticker-scroll 30s linear infinite;
    width: max-content;
    gap: 60px; /* spacing between logos */
  }
  
  .client-ticker img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    filter: none; /* Remove any grayscale or filter effects */
    transition: filter 0.3s ease;
  }
  
  
  @keyframes ticker-scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-33.33%);
    }
  }
  
/* Partners Section */
.partners-section {
    background-color: #0a0a0a;
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    font-family: 'Space Mono', monospace;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.partners-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    height: 100%;
}

.partners-video-container {
    position: relative;
    width: 100%;
    height: 80vh;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--zasti-dark-gray);
    background: var(--zasti-dark-gray);
}

.partners-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.partners-section .section-title {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.awards-section .section-title {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 230, 204, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 230, 204, 0.6);
    }
}

@keyframes border-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Responsive styles for new changes */
@media (max-width: 768px) {
    .verticals-content {
        flex-direction: column;
        gap: 3rem;
    }

    .vertical-video-container {
        width: 250px;
        height: 250px;
    }

    .vertical-video-link {
        padding: 0.8rem;
    }

    .vertical-video-link:hover {
        transform: translateY(-3px);
    }

    .partners-video-container {
        height: auto; /* allow stacking of multiple mobile videos */
        border-radius: 15px;
    }

    .partners-video {
        border-radius: 15px;
    }

    .awards-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .awards-video-container {
        height: 400px;
    }

    .award-card {
        min-height: 180px;
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .partners-video-container {
        height: auto; /* ensure stacking */
        border-radius: 10px;
        margin: 0 1rem; /* Add horizontal margin to prevent cropping */
    }

    .partners-video {
        border-radius: 10px;
        object-fit: contain; /* prevent cropping */
        height: auto;
    }

    .partners-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .awards-video-container {
        height: 350px;
        border-radius: 15px;
    }

    .awards-video {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .partners-video-container {
        height: auto; /* ensure stacking on very small screens */
        margin: 0 0.5rem;
    }
    
    .partners-section .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
}

/* Rotating Words Effect */
.rotating-words {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    color: #e0e0e0;
    text-align: center;
}

.static-text {
    color: #e0e0e0;
    font-weight: 700;
    font-size: 1.4rem;
}

.dynamic-text {
    position: relative;
    display: inline-block;
    min-width: 250px;
    height: 1.8em;
    overflow: hidden;
}

.word {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    color: #20c997;
    font-weight: 900;
    font-size: 1.4rem;
    white-space: nowrap;
}

.word.active {
    opacity: 1;
    transform: translateY(0);
}

.word.next {
    opacity: 0;
    transform: translateY(-20px);
}

/* Animation for word transitions */
@keyframes wordSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive styles for rotating words */
@media (max-width: 768px) {
    .rotating-words {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 1.2rem;
        margin-top: 1rem;
    }
    
    .static-text {
        font-size: 1.2rem;
    }
    
    .dynamic-text {
        min-width: 220px;
        height: 1.6em;
    }
    
    .word {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .rotating-words {
        font-size: 1rem;
        gap: 6px;
        margin-top: 0.5rem;
    }
    
    .static-text {
        font-size: 1rem;
    }
    
    .dynamic-text {
        min-width: 180px;
        height: 1.4em;
    }
    
    .word {
        font-size: 1rem;
    }
}

/* Enhanced Mobile Improvements */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .hero-text h1 {
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .hero-cta .btn {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        min-height: 50px;
    }
    
    /* Video container improvements */
    .video-container {
        margin: 2rem auto;
        border-radius: 12px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button i {
        font-size: 1.8rem;
    }
    
    /* Better touch targets */
    .vertical-video-link {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    .btn, .cta-btn {
        min-height: 44px;
        touch-action: manipulation;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 0.5rem;
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 1.1rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-cta .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .video-container {
        margin: 1.5rem auto;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }

    .rotating-words {
        font-size: 0.9rem;
        gap: 4px;
        margin-top: 0.5rem;
    }
    
    .static-text {
        font-size: 0.9rem;
    }
    
    .dynamic-text {
        min-width: 160px;
        height: 1.3em;
    }
    
    .word {
        font-size: 0.9rem;
    }
}
  