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

:root {
    --primary-color: #0d6efd;
    --secondary-color: #198754;
    --dark-bg: #0b2136; /* Slightly lighter navy for better depth */
    --card-bg: #111b27;
    --text-muted: #c9d1d9; /* Much lighter for visibility */
    --accent-color: #00ff88;
}

.text-muted {
    color: var(--text-muted) !important;
}

body {
    font-family: 'Inter', sans-serif;
    color: #e6edf3;
    background-color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(rgba(11, 15, 25, 0.8), rgba(11, 15, 25, 0.8)), url('techlab_hero_background.png');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05); /* Lighter translucent background */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.glass-card p {
    color: #cbd5e0; /* Explicitly lighter text for cards */
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Badge Styling */
.badge-custom {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Footer */
footer {
    background-color: #06090f;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
}

/* Buttons */
.btn-primary-custom {
    background: var(--accent-color);
    border: none;
    color: var(--dark-bg);
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: opacity 0.3s;
}

.btn-primary-custom:hover {
    opacity: 0.9;
    color: var(--dark-bg);
}

.btn-outline-custom {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Animation */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
