* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0f1720;
  color: #fff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

img {
  width: 100%;
  display: block;
}

/* ================= HEADER ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 25, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo img {
  width: 170px;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #f9be17;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #f9be17;
  color: #000;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
}

.btn:hover {
  transform: translateY(-5px);
}

.btn-outline {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #f9be17;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  transition: 0.4s;
}

.btn-outline:hover {
  background: #f9be17;
  color: #000;
}

/* ================= HERO ================= */

.hero {
  padding: 120px 0 100px;
  background:
    radial-gradient(
      circle at top left,
      rgba(249, 190, 23, 0.2),
      transparent 35%
    ),
    #0f1720;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.hero-text h1 {
  font-size: 65px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-text span {
  color: #f9be17;
}

.hero-text p {
  color: #bfc7cf;
  line-height: 1.9;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image img {
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ================= ABOUT ================= */

.about {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  border-radius: 30px;
}

.about-content h2 {
  font-size: 45px;
  margin-bottom: 25px;
}

.about-content p {
  color: #bfc7cf;
  line-height: 1.9;
  margin-bottom: 30px;
}

.about-points {
  display: grid;
  gap: 18px;
}

.about-points div {
  color: #d5dde4;
}

.about-points i {
  color: #f9be17;
  margin-right: 10px;
}

/* ================= SERVICES ================= */

.services {
  padding: 100px 0;
  background: #121c28;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 50px;
  margin-bottom: 15px;
}

.section-title p {
  color: #bfc7cf;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #192533;
  padding: 40px 30px;
  border-radius: 25px;
  transition: 0.4s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-12px);
  border: 1px solid #f9be17;
}

.service-card i {
  font-size: 45px;
  color: #f9be17;
  margin-bottom: 25px;
}

.service-card h3 {
  margin-bottom: 18px;
}

.service-card p {
  color: #bfc7cf;
  line-height: 1.8;
}

/* ================= PROCESS ================= */

.process {
  padding: 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  background: #192533;
  padding: 50px 20px;
  border-radius: 25px;
  text-align: center;
  transition: 0.4s;
}

.process-card:hover {
  transform: translateY(-10px);
}

.process-card i {
  font-size: 50px;
  color: #f9be17;
  margin-bottom: 20px;
}

/* ================= PORTFOLIO ================= */

.portfolio {
  padding: 100px 0;
  background: #121c28;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-item img {
  border-radius: 25px;
  transition: 0.4s;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

/* ================= CTA ================= */

.cta {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, #f9be17, #ffdc6b);
  padding: 70px;
  border-radius: 35px;
  text-align: center;
  color: #000;
}

.cta-box h2 {
  font-size: 45px;
  margin-bottom: 30px;
}

/* ================= FOOTER ================= */

.footer {
  background: #0a1119;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 60px;
}

.footer h3 {
  margin-bottom: 20px;
}

.footer p,
.footer a {
  color: #bfc7cf;
  line-height: 2;
  text-decoration: none;
}

.footer a:hover {
  color: #f9be17;
}

.footer ul {
  list-style: none;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  text-align: center;
  color: #bfc7cf;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .hero-content,
  .about-grid,
  .service-grid,
  .process-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-text h1 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hero-content,
  .about-grid,
  .service-grid,
  .process-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .section-title h2,
  .about-content h2,
  .cta-box h2 {
    font-size: 35px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cta-box {
    padding: 50px 30px;
  }
}
/* ```

---

# Preview Structure

* Sticky modern navbar
* Animated hero section
* About section
* Services cards
* Process timeline
* Portfolio gallery
* CTA banner
* Responsive footer
* Fully responsive mobile layout
* Modern yellow + dark theme for PIXELINE */
