/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a0f1f;
    color: #e0e0e0;
    line-height: 1.6;
}

/* ===== Container ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== Header ===== */
.header {
    background: #0d1326;
    padding: 20px 0;
    border-bottom: 2px solid #007bff;
}

.header .logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #fff;
}

.header .logo span {
    color: #007bff;
}

.header .nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.header .nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.header .nav a:hover, 
.header .nav a.active {
    color: #007bff;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(to right, #0a0f1f, #101832);
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ccc;
}

.hero .btn {
    background: #007bff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.hero .btn:hover {
    background: #005fcc;
}

/* ===== Services Section ===== */
.services {
    padding: 80px 0;
    background-color: #0f152a;
}

.services h3 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 40px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #161d38;
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h4 {
    font-family: 'Poppins', sans-serif;
    color: #007bff;
    margin-bottom: 10px;
}

.card p {
    color: #ccc;
}

/* ===== Footer ===== */
.footer {
    background: #0d1326;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #007bff;
    font-size: 0.9rem;
    color: #aaa;
}

/* ===== Page Banner ===== */
.page-banner {
    background: linear-gradient(to right, #0a0f1f, #101832);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 2px solid #007bff;
}

.page-banner h2 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.page-banner p {
    color: #ccc;
    font-size: 1.1rem;
}

/* ===== Service Page ===== */
.services-page {
    background: #0f152a;
    padding: 60px 0;
}

.service-item {
    background: #161d38;
    margin-bottom: 25px;
    padding: 25px;
    border-left: 4px solid #007bff;
    border-radius: 6px;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateX(5px);
}

.service-item h3 {
    font-family: 'Poppins', sans-serif;
    color: #007bff;
    margin-bottom: 10px;
}

.service-item p {
    color: #ccc;
    font-size: 1rem;
}

/* ===== About Section ===== */
.about-section {
    background: #0f152a;
    padding: 80px 0;
}

.about-content {
    margin-bottom: 50px;
    text-align: center;
}

.about-content h3 {
    font-family: 'Poppins', sans-serif;
    color: #007bff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-content p {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 15px auto;
    font-size: 1rem;
    line-height: 1.7;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-box {
    background: #161d38;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s;
}

.value-box:hover {
    transform: translateY(-5px);
}

.value-box h4 {
    color: #007bff;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.value-box {
    color: #ccc;
    font-size: 0.95rem;
}

/* ===== Contact Sectio ===== */
.contact-section {
    background: #0f152a;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-form, .contact-info {
    background: #161d38;
    padding: 30px;
    border-radius: 10px;
}

.contact-form h3, .contact-info h3 {
    font-family: 'Poppins', sans-serif;
    color: #007bff;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #e0e0e0;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    background: #0d1326;
    color: #fff;
    font-size: 1rem;
}

textarea {
    resize: none;
    height: 120px;
}

button.btn {
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

button.btn:hover {
    background: #005fcc;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 10px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

#form-status {
    margin-top: 10px;
    color: #00c851;
    font-size: 0.9rem;
}