* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-weight: bold;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: #4da6ff;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1473968512647-3e447244af8f') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* CONTENT */
.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  margin-top: 20px;
  color: #ccc;
  font-size: 18px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background: #2f5cff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background: #1d3fd1;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .navbar {
    padding: 15px 20px;
  }

  nav ul {
    gap: 15px;
  }
}
/* SLIDER BAR */
.slider {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #020c1b, #041a3a);
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* TRACK */
.slider-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: scroll 20s linear infinite;
}

/* TEXT STYLE */
.slider-track span {
  font-size: 14px;
  letter-spacing: 2px;
  color: #cfd8ff;
  white-space: nowrap;
}

/* DOT STYLE */
.slider-track span:nth-child(2n) {
  color: #4da6ff;
}

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* SECTION */
.why {
  padding: 100px 50px;
  background: #000;
  text-align: center;
}

.why h2 {
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
}

/* CARDS LAYOUT */
.cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: #0a0f1a;
  border-radius: 15px;
  overflow: hidden;
  width: 320px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

/* IMAGE */
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 25px;
  text-align: left;
}

.card-content .icon {
  font-size: 22px;
  color: #4da6ff;
  margin-bottom: 15px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-content p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.card img {
  transition: 0.4s;
}

.card:hover img {
  transform: scale(1.05);
}
/* CTA SECTION */
.cta {
  padding: 120px 20px;
  text-align: center;
  background: #000;
}

/* TITLE */
.cta h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* SUBTEXT */
.cta p {
  color: #aaa;
  font-size: 18px;
  margin-bottom: 40px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #2f5cff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER EFFECT */
.cta-btn:hover {
  background: #1d3fd1;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(47, 92, 255, 0.4);
}
/* ABOUT SECTION */
.about {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  background: #000;
}

/* CARD */
.about-card {
  max-width: 900px;
  background: #050a14;
  padding: 50px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* TITLE */
.about-card h1 {
  font-size: 36px;
  margin-bottom: 25px;
}

/* TEXT */
.about-card p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* HIGHLIGHT LINK STYLE */
.highlight {
  color: #4da6ff;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-card {
    padding: 30px;
  }

  .about-card h1 {
    font-size: 28px;
  }
}
/* ABOUT HERO (NEW) */
.about-hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;

  background: radial-gradient(circle at center, #0a1a3a 0%, #000 80%);
  overflow: hidden;
}

/* OVERLAY PATTERN */
.about-hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
  opacity: 0.08;
}

/* HERO TEXT */
.about-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.about-hero h1 {
  font-size: 64px;
  font-weight: 800;
  color: #e6e6e6;
}

.about-hero p {
  margin-top: 20px;
  font-size: 20px;
  color: #b3c6ff;
}
