* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-color: #0f172a; /* Tech Blue / Slate Navy */
    --accent-color: #10b981;  /* Light Green */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif, system-ui;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Header & Navigation */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); letter-spacing: 1px; }
.logo span { color: var(--accent-color); }
.logo a { display: block; line-height: 0; }
.logo-image { width: 96px; height: auto; }

.nav-menu ul { display: flex; list-style: none; align-items: center; gap: 25px; }
.nav-menu a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent-color); }

.btn-nav { background-color: var(--primary-color); color: var(--white) !important; padding: 10px 20px; border-radius: 4px; }
.btn-nav:hover { background-color: var(--accent-color); }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}
.hero-content { max-width: 800px; margin: 0 auto; }
.badge { display: inline-block; background-color: rgba(16, 185, 129, 0.15); color: var(--accent-color); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.15rem; color: #cbd5e1; margin-bottom: 40px; }
.hero-buttons { display: flex; justify-content: center; gap: 15px; }

/* Buttons */
.btn-primary { background-color: var(--accent-color); color: var(--primary-color); padding: 14px 28px; border-radius: 4px; text-decoration: none; font-weight: 700; transition: var(--transition); display: inline-block; text-align: center; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-secondary { background-color: transparent; color: var(--white); border: 2px solid var(--white); padding: 14px 28px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: var(--transition); display: inline-block; }
.btn-secondary:hover { background-color: var(--white); color: var(--primary-color); }

/* Sections & Grids */
.section-block { padding: 90px 0; background-color: var(--bg-light); }
.section-title { text-align: center; max-width: 600px; margin: 0 auto 60px auto; }
.section-title h2 { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 10px; }
.section-title p { color: var(--text-light); }

.service-grid, .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card, .product-card { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: var(--transition); border-top: 4px solid transparent; display: flex; flex-direction: column; justify-content: space-between; }
.service-card:hover, .product-card:hover { transform: translateY(-5px); border-top-color: var(--accent-color); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.card-link { color: var(--accent-color); text-decoration: none; font-weight: 600; font-size: 0.9rem; margin-top: 15px; display: inline-block; }

/* Store Elements */
.page-header { background-color: var(--primary-color); color: var(--white); padding: 60px 0; text-align: center; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-header p { color: #94a3b8; font-size: 1.1rem; }
.product-development-notice { background-color: #fef3c7; color: #92400e; padding: 16px 0; }
.product-development-notice .container { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; text-align: center; }
.product-development-notice strong { color: #78350f; }
.product-image-placeholder { height: 180px; background-color: #e2e8f0; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-weight: 600; border-radius: 6px; margin-bottom: 20px; overflow: hidden; }
.product-image-placeholder img { display: block; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; }
.product-detail-image { height: 350px; background: #e2e8f0; border-radius: 8px; overflow: hidden; }
.product-detail-image img { width: 100%; height: 100%; object-fit: contain; }
.product-tag { display: inline-block; background-color: rgba(16, 185, 129, 0.15); color: var(--accent-color); padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; width: fit-content; }
.product-info h3 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 10px; }
.product-desc { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f1f5f9; padding-top: 20px; }
.price { font-size: 1.2rem; font-weight: 700; color: var(--primary-color); }

/* Footer */
.site-footer { background-color: var(--primary-color); color: var(--white); padding: 60px 0 20px 0; }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 40px; }
.footer-brand { max-width: 350px; }
.footer-brand h3 { margin-bottom: 15px; color: var(--accent-color); }
.footer-brand p { color: #94a3b8; font-size: 0.95rem; }
.footer-links h4 { margin-bottom: 15px; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; color: #64748b; font-size: 0.85rem; }

/* Advanced Hero Section */
.hero-advanced {
    position: relative;
    background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: var(--white);
    padding: 160px 0;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
}

.hero-content-advanced {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

/* Icon Boxes */
.card-icon-box {
    width: 60px; height: 60px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-color);
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Product Preview Cards on Homepage */
.product-card-preview {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.preview-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.preview-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.preview-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-top: 20px;
}
/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.announcement-bar a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

/* Sectors Bar */
.sectors-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px 0;
    border-bottom: 3px solid var(--accent-color);
}
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.sector-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.sector-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}
/* Global Image Safeguard (Prevents any image from expanding past its container) */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Specific Sizing for Your Service Lifecycle Image Slots */
.image-slot {
    width: 100%;
    height: 320px; /* Controls the exact height of the image container */
    border-radius: 6px;
    overflow: hidden;
    background-color: #e2e8f0;
    position: relative;
    border: 1px solid #cbd5e1;
    margin-top: 15px;
}

.image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image neatly fills the box without distortion */
}

.image-placeholder-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    background-color: #f1f5f9;
}