/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    overflow: hidden; /* Prevents scrollbars on full screen */
    background-color: #0f172a; /* Deep Industrial Navy */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background with a subtle engineering grid or gradient */
.container {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Optional: Add a subtle mesh pattern overlay if you have one, otherwise this gradient works well */

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
}

/* Typography & Branding */
.brand-name {
    font-family: 'Rajdhani', sans-serif; /* Square, technical font */
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.highlight {
    color: #f59e0b; /* Safety Orange/Yellow - common in heavy machinery */
}

.tagline {
    font-size: 1.1rem;
    color: #94a3b8; /* Cool Grey */
    letter-spacing: 1px;
    margin-bottom: 3rem;
    border-bottom: 1px solid #334155;
    display: inline-block;
    padding-bottom: 10px;
}

/* Main Message */
.main-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.main-message p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Buttons & Links */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #f59e0b;
    color: #0f172a;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.cta-button:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

/* Contact Details */
.contact-text {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #94a3b8;
}

.contact-details {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #64748b;
}

.divider {
    margin: 0 10px;
    color: #334155;
}

footer {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #475569;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .brand-name { font-size: 2.5rem; }
    .main-message h2 { font-size: 1.8rem; }
}