/* Global Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Content Layout */
.content {
    display: none;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Font Families */
.company-title,
.company-tagline,
.links-title,
.link-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hindi-text {
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Background Animation Container */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF0080 0%, #FF8C00 100%);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #00D2FF 0%, #3A7BD5 100%);
    bottom: -50px;
    left: -50px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #9D50BB 0%, #6E48AA 100%);
    top: 50%;
    left: 10%;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #FF512F 0%, #F09819 100%);
    bottom: 30%;
    right: 15%;
}

/* Light Beam */
.light-beam {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 25%,
        transparent 70%);
    z-index: 1;
}

/* Particle Field */
.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle-field::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 300px 300px, 400px 400px, 500px 500px, 600px 600px;
    animation: particleFloat 20s linear infinite;
}

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

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

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF0080, #00D2FF);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FF0080, #3A7BD5);
}

/* Selection Color */
::selection {
    background: rgba(255, 0, 128, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(255, 0, 128, 0.3);
    color: #ffffff;
}

/* Focus Styles */
:focus {
    outline: 2px solid rgba(0, 210, 255, 0.5);
    outline-offset: 2px;
}

/* Loading State */
.loading * {
    cursor: wait !important;
}

/* Print Styles */
@media print {
    .background-animation,
    .action-btn::before,
    .link-card::before {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .action-btn,
    .link-card {
        border: 1px solid black !important;
        color: black !important;
    }
}