/* VRA Engineering Works - Custom Styles */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.025em;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0f1c3f;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e63946;
}

/* Engineering Stripes Pattern */
.bg-engineering-stripes {
    background-image: linear-gradient(135deg, #f2f2f2 25%, #ffffff 25%, #ffffff 50%, #f2f2f2 50%, #f2f2f2 75%, #ffffff 75%, #ffffff 100%);
    background-size: 20px 20px;
}

/* Glassmorphism Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Premium Primary Gradient */
.bg-premium-blue {
    background: linear-gradient(135deg, #0f1c3f 0%, #1a365d 100%);
}

/* Premium Card Hover */
.premium-card-hover {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card-hover:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(15, 28, 63, 0.12);
}

/* Floating Animation */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-floating {
    animation: floating 3s ease-in-out infinite;
}

/* Text Shimmer Effect */
.text-shimmer {
    background: linear-gradient(90deg, #ffffff 0%, #e63946 50%, #ffffff 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

[x-cloak] {
    display: none !important;
}