/* =========================================================
   GLOBAL STYLES – Futuristic AI SaaS Theme
========================================================= */

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #F4F8FF;
    color: #0D2A52;
}

/* =========================================================
   HEADER — Futuristic Gradient Navigation Bar
========================================================= */

header {
    background: linear-gradient(to right, #001F3F, #003C7A);
    padding: 18px 40px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

/* LOGO WITH PNG */
header .logo {
    background-image: url('logo.png');
    background-size: 38px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 50px;
    height: 38px;

    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.7px;

    display: flex;
    align-items: center;
}

/* NAVIGATION */
nav a {
    color: #D9E8FF;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

nav a:hover {
    color: #00C4FF;
    text-shadow: 0 0 8px #00C4FF;
}

/* =========================================================
   CONTENT PANELS — Glassmorphic AI Panels
========================================================= */

.content-box {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    max-width: 1050px;
    margin: 50px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    font-weight: 800;
    margin-bottom: 10px;
    color: #0D2A52;
}

ul {
    padding-left: 20px;
}

/* =========================================================
   SERVICES GRID — Responsive Futuristic Tiles
========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1.5px solid rgba(0, 50, 120, 0.25);
    border-radius: 14px;
    padding: 25px;
    color: #0D2A52;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: 0.25s ease;
}

.service-card:hover {
    background: #003A8C;
    color: white;
    box-shadow: 0 12px 30px rgba(0, 100, 255, 0.5);
    transform: translateY(-5px);
}

.service-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
}

/* =========================================================
   FORMS — Clean AI Input Panels
========================================================= */

.form-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.1);
    max-width: 550px;
    margin: 30px auto;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #0D2A52;
    background: #F2F7FF;
    font-size: 15px;
}

/* CTA Buttons */
.btn {
    background: #003A8C;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.25s ease;
}

.btn:hover {
    background: #00C4FF;
    box-shadow: 0 0 12px #00C4FF;
}

/* =========================================================
   FOOTER — Clean Futuristic Footer
========================================================= */

footer {
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    background: #001F3F;
    color: #D9E8FF;
    border-top: 3px solid #004A98;
}

footer p {
    margin: 4px 0;
}

/* =========================================================
   RESPONSIVE — Mobile Layout
========================================================= */

@media (max-width: 700px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    nav a {
        margin-left: 12px;
    }

    .content-box {
        margin: 20px;
        padding: 25px;
    }
}
