/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important; /* Forces 0px border radius everywhere */
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

/* Background Effect */
body {
    background-image: url('image_f6891f.jpg'); /* Using your uploaded background image */
    background-size: cover;
    background-position: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,124,238,0.2) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
}

/* Header/Logo */
.logo {
    max-width: 250px;
    height: auto;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 30px;
}

.services-list {
    font-weight: bold;
    color: #007CEE; /* Brand Blue */
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.dot {
    margin: 0 10px;
    color: #fff;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #007CEE;
    color: white;
}

.btn-primary:hover {
    background-color: #fff;
    color: #000;
}

.btn-secondary {
    border: 2px solid #fff;
    color: white;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Footer */
footer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .services-list { font-size: 0.7rem; }
}