/* Branding Colors */
:root {
    --exopid-red: #d84733;
    --exopid-dark: #1a1a1a;
    --exopid-black: #000000;
    --exopid-gray-light: #f8f9fa;
    --exopid-text-muted: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--exopid-gray-light);
    color: #333;
    margin: 0;
}

/* Navbar */
.exopid-navbar {
    background: #fff;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-img { height: 40px; }

/* Hero Section from Exopid News */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('https://exopid.com/wp-content/themes/exopid-classic/assets/media/carousel-1.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

/* --- Layout Patterns --- */
.product-section {
    padding: 100px 0;
    border-bottom: 1px solid #eee;
}

.product-section:nth-child(even) {
    background-color: #fcfcfc;
}

.product-section:nth-child(even) .row {
    flex-direction: row-reverse;
}

/* Product Showcase Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 50px 0;
}

.product-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Match attached style */
    transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-10px); }

.product-card i {
    font-size: 2.5rem;
    color: var(--exopid-red);
    margin-bottom: 15px;
}

/* Blog Section */
.latest-news-section { background: white; padding: 60px 0; }

.post-card {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 20px;
}

/* Footer */
.main-footer {
    background-color: var(--exopid-black);
    color: white;
    padding: 60px 20px 20px;
}

.footer-bottom {
    background-color: #000;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: var(--exopid-text-muted);
}

.btn-exopid {
    background-color: var(--exopid-red);
    color: white !important;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.nav-links a {
    background-color: #f91515;
    padding: 10px 25px;
    text-decoration: none;
    color: white;
    font-weight: 400;
    border-radius: 5px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--exopid-red);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(216, 71, 51, 0.2);
}

.feature-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.seo-keyword-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.seo-keyword-list li {
    display: inline-block;
    background: #f1f1f1;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0 5px 5px 0;
    font-weight: 600;
}

/* --- Attached Style Matches --- */
.showcase-visual {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Match from Exopid News.htm */
    max-width: 100%;
}