:root {
    --brand-color: #062f62;
    --brand-color-light: #0a4482;
    --text-main: #ffffff;
    --text-muted: #e0e6ed;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --card-bg: rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-color) 0%, #031429 100%);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    padding: 2rem 0;
}

/* Animated background elements */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 40vw;
    height: 40vw;
    background: var(--brand-color-light);
    top: -10vw;
    left: -10vw;
    opacity: 0.5;
}

.shape-2 {
    width: 30vw;
    height: 30vw;
    background: #0088ff;
    bottom: -5vw;
    right: -5vw;
    opacity: 0.3;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -50px); }
    66% { transform: translate(-20px, 20px); }
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 4rem;
    max-width: 1000px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.logo-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.logo {
    max-width: 250px;
    height: auto;
    display: block;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.service-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #a5c6ff;
    text-transform: uppercase;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

/* Title and Company Name margins */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.3;
    background: linear-gradient(to right, #ffffff, #a5c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.company-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.divider {
    height: 1px;
    background: var(--glass-border);
    margin: 0 auto 2rem;
    width: 80%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
}

.contact-info p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.contact-link {
    color: #6bb0ff;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
    position: relative;
}

.contact-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(107, 176, 255, 0.6);
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #ffffff;
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}

.contact-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media (max-width: 768px) {
    .container {
        padding: 2.5rem 1.5rem;
        width: 95%;
    }
    .logo-container {
        margin-bottom: 1.5rem;
    }
    h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    .logo {
        max-width: 200px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
}
