/* GLOBAL STYLES */
body {
    font-family: 'Inter', sans-serif;
    background-color: #020617;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* BACKGROUNDS & PATTERNS */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-color: #020617;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.15), transparent 80%),
        radial-gradient(#1e293b 1.5px, transparent 1.5px);
    background-size: 100% 100%, 32px 32px;
    background-repeat: no-repeat, repeat;
}

/* VIDEO HERO STYLES */
.video-docker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-docker video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.3;
    filter: contrast(1.1) saturate(1.1);
}

.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(20, 184, 166, 0.25) 0%,
            rgba(2, 6, 23, 0.6) 60%,
            #020617 100%);
    z-index: 1;
}

/* COMPONENT STYLES */
.nav-blur {
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(16px);
}

.footer-card {
    backdrop-filter: blur(1.5px);
}

/* CHANGED: Enhanced Industrial Card Styles for a more aesthetic look */
.industrial-card {
    /* Subtle gradient background */
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.4), rgba(20, 184, 166, 0.05));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    /* Slightly rounder corners */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smoother transition */
    height: 100%;
    /* Add a subtle inner glow */
    box-shadow: inset 0 0 20px rgba(20, 184, 166, 0.05);
}

.industrial-card:hover {
    border-color: rgba(45, 212, 191, 0.6);
    /* Slightly lighter background on hover */
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(20, 184, 166, 0.1));
    /* 3D lift and scale effect */
    transform: translateY(-8px) scale(1.02) rotateX(2deg);
    /* Enhanced outer glow */
    box-shadow: 0 15px 35px -10px rgba(20, 184, 166, 0.3), inset 0 0 30px rgba(20, 184, 166, 0.1);
}

/* New wrapper for icons to add a glow effect */
.industrial-card .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.1);
    transition: all 0.3s ease;
}

.industrial-card:hover .icon-wrapper {
    background: rgba(20, 184, 166, 0.2);
    border-color: rgba(20, 184, 166, 0.4);
    box-shadow: 0 0 25px rgba(20, 184, 166, 0.3);
    transform: scale(1.1);
}

.text-glow {
    text-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

/* MARQUEE ANIMATION STYLES */
.scroller-mask {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.animate-marquee {
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}