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

body {
    background: linear-gradient(135deg, #0a0e14 0%, #0d1218 50%, #0b0f14 100%);
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    line-height: 1.6;
}

header {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    position: relative;
}

.header-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
}

.hero-banner {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

header p {
    font-size: 1.2rem;
    color: #00ff88;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    color: #00ff88;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.card {
    background: linear-gradient(135deg, rgba(18, 24, 33, 0.9) 0%, rgba(13, 18, 24, 0.9) 100%);
    margin: 30px 0;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.1);
}

.card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card p {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    color: #e2e8f0;
    font-size: 1.1rem;
}

.card li:last-child {
    border-bottom: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.value-card {
    background: rgba(0, 255, 136, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-5px);
}

.value-card h3 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.value-card p {
    color: #a0aec0;
    font-size: 0.95rem;
}

.services-section {
    background: rgba(0, 255, 136, 0.03);
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.services-section h3 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.service-item {
    background: rgba(18, 24, 33, 0.8);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.15);
    text-align: center;
    color: #e2e8f0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
}

.contact-info {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 255, 136, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.contact-info a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

form {
    max-width: 600px;
    margin: 0 auto;
}

input, textarea {
    display: block;
    width: 100%;
    margin: 15px 0;
    padding: 15px;
    background: rgba(18, 24, 33, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

input::placeholder, textarea::placeholder {
    color: #6b7280;
}

button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #0a0e14;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.page-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.page-header p {
    color: #a0aec0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .card {
        padding: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Section Styling for Intelligence Form */
.form-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.form-section h3 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #00ff88;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(18, 24, 33, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select:focus {
    outline: none;
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
}

.form-group select option {
    background: #0d1218;
    color: #ffffff;
}
