/* General Setup */
:root {
    --primary-blue: #00a8e8;
    --primary-orange: #f37021;
    --dark-bg: #0a0a0a;
    --card-bg: #141414;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    background-image: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('https://www.transparenttextures.com/patterns/circuit-board.png');
}

h1, h2, h3 {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-orange));
    margin: 10px auto 0;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Hero Section (Top) */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
    padding: 60px 0 100px;
    text-align: center;
    border-bottom: 2px solid var(--primary-blue);
}

/* ---- UPDATED LOGO STYLING ---- */
.main-logo {
    max-width: 500px; /* INCREASED SIZE: Changed from 250px to 500px */
    width: 100%;      /* Ensures it still shrinks on mobile phones */
    height: auto;
    display: block;   /* Changed to block so we can center it with margins */
    margin: 0 auto 30px auto; /* CENTERED: Top 0, Auto Left/Right, Bottom 30px */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 168, 232, 0.5);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--primary-orange);
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-blue));
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(0, 168, 232, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-orange));
    box-shadow: 0 0 20px rgba(243, 112, 33, 0.6);
    transform: translateY(-2px);
    color: #fff;
}

/* Sections */
section {
    padding: 80px 0;
}

.about {
    text-align: center;
    background: var(--card-bg);
    border-bottom: 1px solid #333;
}

/* Service Grid */
.service-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border: 1px solid #333;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 8px;
    text-align: left;
    position: relative;
    overflow: hidden;
    flex: 1 1 300px;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.card-blue::before {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-orange));
}

.card h3 {
    margin-top: 0;
    color: var(--primary-blue);
}

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

.card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
}

.card ul li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 0.8rem;
    top: 13px;
}

/* Footer / Contact */
footer {
    background: #050505;
    color: var(--text-muted);
    text-align: center;
    padding: 60px 0;
    border-top: 2px solid var(--primary-orange);
}

.contact-link {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 168, 232, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

