/* Modern Light Tech Theme */

:root {
    --primary-blue: #1d3557;
    --accent-red: #e63946;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    padding: 20px;
}

.main-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 60px 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.logo {
    max-width: 320px;
    height: auto;
    margin-bottom: 40px;
    /* This ensures no weird shadows interfere with your clean logo */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
}

h1 {
    font-weight: 700;
    font-size: 2.8rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.highlight {
    color: var(--accent-red);
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.service-chip {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.btn-main {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 18px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-main:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

footer {
    margin-top: 60px;
    border-top: 1px solid #edf2f7;
    padding-top: 30px;
}

.contact-info {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.divider {
    margin: 0 15px;
    color: #cbd5e1;
}

.copyright {
    font-size: 0.8rem;
    color: #a0aec0;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .main-card { padding: 40px 20px; }
    h1 { font-size: 2rem; }
    .logo { max-width: 240px; }
    .divider { display: block; height: 10px; visibility: hidden; }
}