﻿
/* BODY */
body {
    background: #ffffff;
    overflow-x: hidden;
}

/* HERO SECTION */

.premium-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

/* Animated Blur Circles */

.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: moveBlur 10s infinite alternate;
}

.blur-1 {
    width: 400px;
    height: 400px;
    background: #009ff2;
    top: -100px;
    left: -100px;
}

.blur-2 {
    width: 350px;
    height: 350px;
    background: #00d4ff;
    bottom: -100px;
    right: -100px;
}

/* Blur Animation */

@keyframes moveBlur {

    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(50px);
    }
}

/* Subtitle */

.premium-subtitle {
    color: #009ff2;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Title */

.premium-title {
    font-size: 85px;
    font-weight: 900;
    line-height: 1.1;
    color: #081120;
    margin-bottom: 25px;
}

    .premium-title span {
        background: linear-gradient(135deg,#009ff2,#00d4ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* Text */

.premium-text {
    color: #5b6573;
    font-size: 18px;
    line-height: 1.9;
    max-width: 650px;
}

/* Buttons */

.hero-buttons {
    margin-top: 40px;
}

.premium-btn {
    background: linear-gradient(135deg,#009ff2,#00d4ff);
    color: #fff;
    padding: 16px 38px;
    border-radius: 50px;
    margin-right: 15px;
    font-weight: 600;
    transition: 0.4s;
    border: none;
}

    .premium-btn:hover {
        transform: translateY(-5px);
        color: #fff;
        box-shadow: 0 10px 40px rgba(0,159,242,0.35);
    }

/* Outline Button */

.premium-btn-outline {
    border: 1px solid rgba(0,0,0,0.12);
    color: #081120;
    padding: 16px 38px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.7);
}

    .premium-btn-outline:hover {
        background: rgba(0,159,242,0.08);
        color: #081120;
    }

/* Stats */

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* Glass Card */

.glass-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 25px 35px;
    text-align: center;
    color: #081120;
    transition: 0.4s;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

    .glass-card:hover {
        transform: translateY(-10px);
    }

/* Stats Text */

.stat-box h2 {
    font-size: 38px;
    font-weight: 800;
    color: #009ff2;
}

/* Machine Image */

.hero-machine {
    max-height: 650px;
    animation: floating 5s ease-in-out infinite;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.15));
}

/* Floating Animation */

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Mobile */

@media(max-width:991px) {

    .premium-title {
        font-size: 48px;
    }

    .premium-hero {
        padding: 120px 0;
    }
}


