@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-bg: #050505;
    --secondary-bg: #0a0a0a;
    --card-bg: #0f0f0f;
    --card-bg-light: #151515;
    --accent-color: #00e600; /* Bright neon green from image */
    --accent-hover: #00b300;
    --text-main: #ffffff;
    --text-muted: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-title {
    font-family: var(--font-heading);
}

.text-accent { color: var(--accent-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-section-dark { background-color: var(--secondary-bg); }
.text-muted { color: #ffffff !important; }

/* Top Bar */
.top-bar {
    background-color: #000000;
    border-bottom: 1px solid #111;
}

/* Main Navbar */
.main-navbar {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1a1a1a;
    padding: 15px 0;
}
.nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 10px 15px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent-color) !important;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -15px; /* adjust to touch border */
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--accent-color);
}
.nav-actions .form-control {
    background-color: #111;
    border: 1px solid #333;
    color: #fff;
    font-size: 0.8rem;
    width: 100%;
}
.search-form {
    width: 100%;
}
@media (min-width: 992px) {
    .search-form {
        width: 250px;
    }
    .nav-actions {
        width: auto !important;
    }
}
.nav-actions .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}
.nav-icon-link {
    color: #fff;
    transition: color 0.3s;
}
.nav-icon-link:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn-accent {
    background-color: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 0;
    transition: all 0.3s;
}
.btn-accent:hover {
    background-color: var(--accent-hover);
    color: #000;
}
.btn-outline-accent {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 0;
    transition: all 0.3s;
}
.btn-outline-accent:hover {
    background-color: rgba(0, 230, 0, 0.1);
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    padding: 80px 0 20px;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="hex" width="50" height="86.6" patternUnits="userSpaceOnUse"><path d="M25 0L50 14.43V43.3L25 57.73L0 43.3V14.43Z" fill="none" stroke="%23111" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hex)"/></svg>') top center/cover;
}
.tracking-wider {
    letter-spacing: 2px;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
}
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
}
.hero-image {
    mix-blend-mode: lighten;
}
.hero-subtitle {
    max-width: 450px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Feature Highlights */
.feature-highlights {
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
}

/* Categories */
.category-card {
    background-color: var(--card-bg);
    border: 1px solid #222;
    border-radius: 5px;
    transition: all 0.3s;
}
.category-card:hover {
    border-color: var(--accent-color);
    background-color: var(--card-bg-light);
}

/* Section Header */
.section-header h2 {
    font-weight: 800;
}

/* Product Card v2 */
.product-card-v2 {
    background-color: var(--card-bg);
    border: 1px solid #222;
    border-top: 1px solid rgba(0, 230, 0, 0.5); /* subtle green top border */
    border-radius: 5px;
    transition: all 0.3s;
}
.product-card-v2:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 230, 0, 0.1);
}
.product-img-wrapper img {
    mix-blend-mode: lighten;
}
.action-icon {
    font-size: 1.1rem;
    transition: transform 0.2s;
}
.action-icon:hover {
    transform: scale(1.2);
}

/* Service Card */
.service-card {
    background-color: var(--card-bg);
    border: 1px solid #222;
    border-top: 2px solid var(--accent-color);
    border-radius: 5px;
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
}

/* Why Choose Us */
.why-choose-list li {
    font-size: 0.9rem;
}
.stat-card {
    background-color: var(--card-bg);
    border: 1px solid #222;
    border-radius: 5px;
}
.glow-effect-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,230,0,0.3) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
}

/* Testimonial Card */
.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid #222;
    border-radius: 5px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.slider-dot.active {
    background-color: var(--accent-color);
    border-radius: 10px;
    width: 25px;
}

/* Newsletter */
.newsletter-section {
    background-color: var(--card-bg-light);
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="hex2" width="100" height="173.2" patternUnits="userSpaceOnUse"><path d="M50 0L100 28.86V86.6L50 115.47L0 86.6V28.86Z" fill="none" stroke="%2300e600" stroke-width="0.3" stroke-opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hex2)"/></svg>') center;
}

/* Footer */
.footer {
    background-color: #000;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--accent-color);
}
.social-icons a {
    color: #888;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: var(--accent-color);
}
.scroll-top {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    text-decoration: none;
}
.scroll-top:hover {
    background-color: #fff !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}
