/* ==========================================================================
   EazyLife Robotics & Electronics - Custom CSS
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    
    /* Brand Colors */
    --brand-navy: #0A2540;
    --brand-teal: #2AC5C5;
    --brand-green: #88C888;
    
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-20: rgba(255, 255, 255, 0.2);
    
    /* Navigation */
    --nav-bg: rgba(10, 37, 64, 0.4); /* Navy Tint */
    --nav-bg-scrolled: rgba(10, 37, 64, 0.95);
    
    --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Reset & Base --- */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--white);
    background-color: var(--brand-navy);
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- Navigation Enhancements --- */
#templatemo-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-smooth);
}

#templatemo-nav.scrolled {
    background: var(--nav-bg-scrolled);
    height: 60px;
}

.nav-links a {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--white-70);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-teal); /* Teal Active Link */
}

/* --- Hero & Section Improvements --- */
.parallax-overlay {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.8) 0%, rgba(10, 37, 64, 0.4) 100%);
}

.hero-title {
    font-weight: 600;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* --- Modernized About Columns --- */
.about-col {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(42, 197, 197, 0.2); /* Teal Border */
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-col:hover {
    transform: translateY(-5px);
    border-color: var(--brand-teal);
}

/* --- High-Tech Service Icons --- */
.service-icon {
    display: inline-flex;
    padding: 20px;
    border-radius: 50%;
    background: rgba(42, 197, 197, 0.1);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: var(--brand-teal);
    box-shadow: 0 0 20px rgba(42, 197, 197, 0.5);
}

.service-item:hover .service-icon svg {
    stroke: var(--brand-navy) !important;
}

.service-item h3 {
    color: var(--brand-teal);
    font-weight: 600;
}

/* --- Buttons --- */
.btn-scroll, .btn-submit {
    border-radius: 50px; /* Modern Rounded Buttons */
    border: 2px solid var(--brand-teal);
    color: var(--white);
    background: transparent;
    padding: 14px 40px;
    font-weight: 600;
}

.btn-scroll:hover, .btn-submit:hover {
    background: var(--brand-teal);
    color: var(--brand-navy);
    box-shadow: 0 5px 15px rgba(42, 197, 197, 0.4);
}

/* --- Stats Highlight --- */
.stat-number {
    color: var(--brand-green); /* Green for Numbers */
    font-weight: 700;
}

/* --- Contact Form UI --- */
.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 10px rgba(42, 197, 197, 0.2);
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .nav-links {
        background: var(--brand-navy);
    }
    .btn-submit {
        background: var(--brand-teal);
        color: var(--brand-navy);
    }
}
