:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #b8c6db;
    --glow-primary: #667eea;
    --glow-secondary: #f093fb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Upper Section - Hero with Logo */
.hero-section {
    height: 100vh;
    background: var(--dark-gradient);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Meteor Background Animation */
.meteor {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #fff, #667eea);
    border-radius: 50%;
    box-shadow: 0 0 10px #667eea, 0 0 20px #667eea, 0 0 30px #667eea;
    animation: meteor 3s linear infinite;
}

@keyframes meteor {
    0% {
        transform: translate(-100px, -100px) rotate(45deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(100vw, 100vh) rotate(45deg);
        opacity: 0;
    }
}

/* Logo Container with Sparkles */
.logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    z-index: 10;
}

.logo {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow:
        0 0 60px rgba(102, 126, 234, 0.5),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
    animation: logoFloat 6s ease-in-out infinite;
    position: relative;
    margin-left: 39%;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.company-name {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 1200;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: relative;
    animation: textGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.7));
}

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.7));
    }

    100% {
        filter: drop-shadow(0 0 50px rgba(102, 126, 234, 1));
    }
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.9;
    position: relative;
    text-align: center;
}

/* Sparkles Animation */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #fff, #667eea);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    box-shadow: 0 0 10px #667eea;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Floating Scroll Button */
.scroll-button {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: translateX(-50%) translateY(0px);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-button:hover {
    background: rgba(102, 126, 234, 0.2);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

/* Content Section */
.content-section {
    min-height: 100vh;
    background: var(--dark-gradient);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.content-section {
    position: relative;
    overflow: hidden;
    background: var(--dark-gradient);
    /* Optional fallback background */
}

.content-wrapper {
    position: relative;
    z-index: 1;
    /* Ensures content stays above the particles */
    padding: 2rem;
    color: white;
}

/* Particles Background */
/* .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
 */


@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}


/* Content Cards */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.maintenance-card {
    backdrop-filter: blur(10px);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.maintenance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.maintenance-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.maintenance-msg {
    font-size: 1.5rem;
    color: #f093fb;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
     background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #667eea;
    width: 20px;
}

.contact-info a {
    color: #4facfe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #667eea;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.social-link.facebook:hover {
    border-color: #1877f2;
}

.social-link.twitter:hover {
    border-color: #1da1f2;
}

.social-link.linkedin:hover {
    border-color: #0077b5;
}

.social-link.instagram:hover {
    border-color: #e4405f;
}

/* Footer */
.footer {
    background: var(--dark-gradient);
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
    
    position: relative;
    z-index: 1; /* ensures it's above the background */
    width: 100%; /* allows full width without stretching height */
    box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem;
    }

    .company-name {
        font-size: 3rem;
    }

    .maintenance-card {
        padding: 2rem;
    }

    .maintenance-title {
        font-size: 2rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }
}