* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0b0e14;
  color: white;
  line-height: 1.7;
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(10, 12, 18, 0.85);
  backdrop-filter: blur(10px);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
}

nav a {
  margin-left: 20px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: #00f7ff;
}

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 800;
}

.hero-content p {
  margin: 20px auto;
  max-width: 650px;
  color: rgba(255,255,255,0.75);
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00f7ff, #7c5cff);
  color: black;
  font-weight: 800;
  text-decoration: none;
}

.section {
  padding: 110px 0;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 25px;
}

.section-text {
  max-width: 700px;
  color: rgba(255,255,255,0.75);
}

.dark {
  background: #11182c;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.security-list {
  margin-top: 25px;
  list-style: none;
}

.security-list li {
  margin: 10px 0;
  font-weight: 600;
}

.center {
  text-align: center;
}

.footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

/* SLIDE ANIMATIONS */
.slide-up,
.slide-left,
.slide-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.slide-left {
  transform: translateX(-60px);
}

.slide-right {
  transform: translateX(60px);
}

.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.the_motto {
  margin-top: 18px;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}
