:root {
    --accent-color: #FF4500;
    --bg-dark: #0a0a0a;
    --card-bg: rgba(25, 25, 25, 0.7);
    --card-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: #f8f9fa; /* Lighter base text color */
    font-size: 15px; /* Proper baseline font size */
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: radial-gradient(circle at top right, rgba(255, 69, 0, 0.15), transparent 400px),
                      radial-gradient(circle at bottom left, rgba(255, 69, 0, 0.1), transparent 400px);
    background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 69, 0, 0.4);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Typography overrides for better scaling */
h1 { font-size: calc(1.5rem + 1.2vw); color: #fff; }
h2 { font-size: calc(1.3rem + .8vw); color: #fff; }
h3 { font-size: calc(1.1rem + .5vw); color: #fff; }

p { color: rgba(255, 255, 255, 0.85); line-height: 1.6; }

/* Bootstrap utility overrides for Dark Theme */
.text-muted {
    color: rgba(255, 255, 255, 0.7) !important; /* Fix contrast issue */
}

/* Navbar */
.navbar {
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    padding: 15px 0;
}

.navbar-brand img {
    max-width: 60px;
    filter: invert(1) brightness(10);
}
.nav-brand-text {
    font-size: 1.2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #fff !important;
}

.navbar-toggler-custom {
    filter: invert(1);
}

/* Hero Area */
.hero-section {
    padding: 100px 0 60px;
    text-align: center;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Scaled down for better fit */
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Product Cards */
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 69, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.1);
}

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

.product-card h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-tagline {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.product-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-product {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
}

.btn-product:hover {
    background: #e63e00;
    color: #fff;
}

/* Simple Pages (About/Contact) */
.page-header {
    padding: 80px 0 40px;
    text-align: center;
}

.page-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem; /* Slightly larger text for readability on text-heavy pages */
}

/* Mobile Specific Overrides */
@media (max-width: 768px) {
    .page-content {
        padding: 25px;
        font-size: 1rem;
    }
    .page-header {
        padding: 50px 0 30px;
    }
}

/* MINIMALIST FOOTER */
.footer-modern {
    background: #0a0a0a;
    color: rgba(255,255,255,0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

.footer-link-min {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-link-min:hover {
    color: #fff;
    transform: translateX(2px);
    text-decoration: none;
}

.tracking-wide {
    letter-spacing: 1px;
}

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

.footer-tag-pill {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.76rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-logo {
    width: 120px;
    height: auto;
    animation: pulse 1.5s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.4));
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 30px rgba(255, 69, 0, 0.8)); }
    100% { transform: scale(0.9); opacity: 0.7; }
}
