/* ========================================================================
   GLOBAL RESET
========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #05070a;
    color: #e8e8e8;
    overflow-x: hidden;
}

/* ========================================================================
   GLOBAL LAYOUT
========================================================================= */
section {
    padding: 100px 10%;
}

/* ========================================================================
   NAVBAR
========================================================================= */
nav {
    width: 100%;
    padding: 20px 10%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

nav .logo {
    font-size: 22px;
    font-weight: 700;
    color: #00eaff;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #e8e8e8;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00eaff;
}

/* ========================================================================
   HERO SECTION
========================================================================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 10% 0;
    background: radial-gradient(circle at top, rgba(0,255,255,0.15), transparent 70%),
                url('assets/grid.svg') repeat;
    background-size: cover;
    position: relative;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.2;
    color: #fff;
}

.hero p {
    font-size: 18px;
    margin-top: 20px;
    max-width: 500px;
    color: #cfcfcf;
}

.btn-primary {
    margin-top: 40px;
    display: inline-block;
    padding: 12px 35px;
    background: #00eaff;
    color: #001a1d;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(0,255,255,0.6);
}

.btn-primary:hover {
    background: #00bcd4;
    box-shadow: 0 0 25px rgba(0,255,255,0.8);
}

/* ========================================================================
   SERVICES SECTION
========================================================================= */
.services {
    text-align: center;
}

.section-title {
    font-size: 40px;
    color: #fff;
    margin-bottom: 40px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-box {
    padding: 35px 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    cursor: pointer;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: #00eaff;
    box-shadow: 0 0 25px rgba(0,255,255,0.4);
}

.service-box h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #00eaff;
}

.service-box p {
    color: #c7c7c7;
}

/* ========================================================================
   PROJECTS SECTION
========================================================================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.project-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s ease;
}

.project-card:hover {
    border-color: #00eaff;
    transform: translateY(-10px);
}

.project-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.project-card h4 {
    color: #00eaff;
    margin-bottom: 10px;
}

.project-card p {
    color: #d0d0d0;
}

/* ========================================================================
   PARTNERS SECTION
========================================================================= */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.partner-logo {
    width: 160px;
    height: 90px;
    object-fit: contain;
    opacity: 0.7;
    transition: 0.3s;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ========================================================================
   CONTACT FORM
========================================================================= */
.contact-form {
    max-width: 650px;
    margin: auto;
    padding: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    border: none;
    border-radius: 12px;
    background: rgba(0,0,0,0.4);
    color: #e8e8e8;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: #00eaff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

.contact-form button:hover {
    background: #00bcd4;
}

/* ========================================================================
   FOOTER
========================================================================= */
footer {
    text-align: center;
    padding: 40px 10%;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    margin-top: 80px;
}
