:root {
  --bg: #0b1220;
  --bg-soft: #10192b;
  --bg-card: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.10);
  --text: #ffffff;
  --muted: #b9c6d3;
  --accent: #ff8c2f;
  --accent-2: #ff5e00;
  --white: #ffffff;
  --dark: #0f172a;
  --success-bg: rgba(34, 197, 94, 0.14);
  --success-line: rgba(34, 197, 94, 0.35);
  --success-text: #bbf7d0;
  --error-bg: rgba(239, 68, 68, 0.14);
  --error-line: rgba(239, 68, 68, 0.35);
  --error-text: #fecaca;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.30);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 140, 47, 0.10), transparent 18%),
    radial-gradient(circle at bottom left, rgba(255, 94, 0, 0.08), transparent 18%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.glass {
  background: var(--bg-card);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.topbar {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 10px 0;
  font-size: 14px;
}

.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar-right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 18, 32, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 94, 0, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 16px;
}

.logo-text span {
  font-size: 11px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav a {
  color: #edf2f7;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transition: var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 14px 32px rgba(255, 94, 0, 0.20);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.btn-white {
  background: #fff;
  color: #111827;
}

.btn-dark {
  background: #111827;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
}

.hero {
  position: relative;
  padding: 90px 0 60px;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.hero-shape-1 {
  width: 240px;
  height: 240px;
  background: rgba(255, 140, 47, 0.18);
  top: 40px;
  right: 6%;
}

.hero-shape-2 {
  width: 180px;
  height: 180px;
  background: rgba(255, 94, 0, 0.14);
  bottom: 40px;
  left: 6%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 140, 47, 0.12);
  border: 1px solid rgba(255, 140, 47, 0.24);
  color: #ffbb82;
  font-size: 13px;
  font-weight: 600;
}

.eyebrow.light {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.20);
  color: #fff;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.12;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-content h1 span {
  color: #ff9e52;
}

.hero-content p {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  color: #d8e3ed;
  font-size: 14px;
}

.hero-card {
  position: relative;
}

.hero-image {
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(rgba(12,18,28,0.18), rgba(12,18,28,0.48)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-overlay-box {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(11, 18, 32, 0.78);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.hero-overlay-box h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.hero-overlay-box p {
  color: var(--muted);
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
  color: #111827;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.floating-card-1 {
  top: 24px;
  left: -18px;
}

.floating-card-2 {
  right: -18px;
  bottom: 34px;
}

.stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.stat-card {
  padding: 22px;
  border-radius: 22px;
  text-align: center;
}

.stat-card h3 {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
  color: #ff9b4a;
}

.stat-card p {
  color: var(--muted);
  font-size: 14px;
}

.trust-bar {
  padding: 24px 0;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  text-align: center;
  padding: 10px;
}

.trust-item h4 {
  color: #ff9b4a;
  margin-bottom: 6px;
  font-size: 20px;
}

.trust-item p {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 95px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.about-image-box {
  min-height: 460px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(12,18,28,0.18), rgba(12,18,28,0.40)),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.about-content h2,
.section-head h2,
.contact-info h2,
.cta-left h2 {
  font-size: 42px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.about-content p,
.section-head p,
.contact-info p,
.cta-left p {
  color: var(--muted);
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.feature-pill {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e8eef5;
  font-size: 14px;
}

.section-head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 46px;
}

.services-grid,
.projects-grid,
.why-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.projects-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.project-card,
.why-card,
.process-card,
.info-card,
.contact-form {
  border-radius: 22px;
  transition: var(--transition);
}

.service-card,
.process-card,
.contact-form {
  padding: 28px;
}

.project-card,
.why-card,
.info-card {
  overflow: hidden;
}

.service-card:hover,
.project-card:hover,
.why-card:hover,
.process-card:hover,
.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 140, 47, 0.28);
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,140,47,0.16), rgba(255,94,0,0.18));
}

.service-card h3,
.project-content h3,
.why-card h3,
.process-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-card p,
.project-content p,
.why-card p,
.process-card p {
  color: var(--muted);
}

.project-image {
  height: 250px;
}

.project-img-1 {
  background: url('https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

.project-img-2 {
  background: url('https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

.project-img-3 {
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

.project-content {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
}

.project-meta {
  font-size: 12px;
  font-weight: 700;
  color: #ffb27d;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.project-content span {
  display: inline-block;
  margin-top: 10px;
  color: #d4dee8;
  font-size: 14px;
}

.why-card {
  padding: 26px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.process-card span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.cta-section {
  padding: 20px 0 95px;
}

.cta-box {
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-left p {
  color: #fff2e9;
}

.cta-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.info-card {
  padding: 18px 20px;
  margin-top: 16px;
}

.info-card h4 {
  color: #ff9b4a;
  margin-bottom: 6px;
}

.contact-form h3 {
  margin-bottom: 18px;
  font-size: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(11, 18, 32, 0.72);
  color: #fff;
  outline: none;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #97a8ba;
}

.full-width {
  width: 100%;
}

.alert {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 500;
}

.alert.success {
  background: var(--success-bg);
  border: 1px solid var(--success-line);
  color: var(--success-text);
}

.alert.error {
  background: var(--error-bg);
  border: 1px solid var(--error-line);
  color: var(--error-text);
}

.footer {
  background: #09111d;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  padding-bottom: 34px;
}

.footer h3,
.footer h4 {
  margin-bottom: 14px;
}

.footer p,
.footer li,
.footer a {
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #94a4b5;
  font-size: 14px;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  z-index: 999;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 1100px) {
  .hero-grid,
  .section-grid,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .projects-grid,
  .why-grid,
  .process-grid,
  .stats-wrap,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .cta-box {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: rgba(11, 18, 32, 0.98);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px;
    display: none;
    flex-direction: column;
    gap: 18px;
  }

  .nav.show {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .services-grid,
  .projects-grid,
  .why-grid,
  .process-grid,
  .stats-wrap,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-content h1,
  .about-content h2,
  .section-head h2,
  .contact-info h2,
  .cta-left h2 {
    font-size: 32px;
  }

  .hero-image,
  .about-image-box {
    min-height: 360px;
  }

  .floating-card-1,
  .floating-card-2 {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }

  .topbar-wrap {
    flex-direction: column;
    text-align: center;
  }

  .cta-box {
    padding: 28px;
  }
}