/*
  Project: Metflux Multi-Brand Website
  Author: Gemini
  Goal: Futuristic, clean design using Metflux and Fixonity brand colors.
*/

/* -------------------------------------
   1. FONT IMPORT (Poppins)
   ------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Apply Poppins to all elements */
* {
    font-family: 'Poppins', sans-serif;
}

/* -------------------------------------
   2. GLASS/NEUMORPHIC EFFECT
   ------------------------------------- */

.glass-card {
    background: rgba(255, 255, 255, 0.1); /* Slightly visible white background */
    backdrop-filter: blur(10px);        /* Key to the glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* Futuristic shadow */
    border-radius: 10px;
}

/* -------------------------------------
   3. HERO BACKGROUND ANIMATION (index.html)
   ------------------------------------- */

.hero-bg {
    background-color: #2C3D99; /* Deep Blue fallback */
    background-image: linear-gradient(135deg, #2C3D99 0%, #30CEFB 100%); /* Metflux Gradient */
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(48, 206, 251, 0.3) 0%, rgba(44, 61, 153, 0) 70%);
    animation: pulseGlow 15s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.5;
    }
}
.metflux {
    height: 60px;
    object-fit: contain;
}
