/*
Theme Name: ScalerPilot Theme
Author: ScalerPilot
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --primary: #000080;
  --secondary: #FF4500;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: #111;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  z-index: 9999;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}

.logo {
  color: white;
  font-size: 22px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  color: var(--secondary);
}

/* HERO */
.hero {
  margin-top: 70px;
  height: 90vh;
  background: linear-gradient(135deg, #000080, #001f4d);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero h2 {
  font-size: 42px;
}

.hero p {
  margin: 15px 0;
}

/* BUTTON */
button {
  background: var(--secondary);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* SECTIONS */
section {
  padding: 80px 20px;
  text-align: center;
  background: white;
}

/* SERVICES */
.services {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-box {
  background: rgba(0,0,0,0.05);
  padding: 25px;
  width: 260px;
  border-radius: 10px;
}

/* CONTACT */
.contact {
  background: var(--primary);
  color: white;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.socials a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}