* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

:root {
  --primary: #0b3d91;
  --primary-dark: #072c66;
  --accent: #f28c28;
  --text: #1a1a1a;
  --muted: #5d6673;
  --bg: #f8f9fb;
  --white: #ffffff;
  --border: #e7ebf0;
  --shadow: 0 14px 30px rgba(8, 23, 53, 0.08);
  --construction-yellow: #DEA731;
  --construction-yellow-dark: #c99527;
  --dark-gray: #222;
  --light-gray: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(90%, 1200px);
  margin: auto;
}

.narrow {
  max-width: 860px;
}

.text-center {
  text-align: center;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: #333;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #dd7d20;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-image {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 15, 31, 0.78) 0%, rgba(8, 15, 31, 0.55) 45%, rgba(8, 15, 31, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 760px;
  padding: 100px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 0;
}

.trust-item {
  text-align: center;
}

.trust-item h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 6px;
}

.trust-item p {
  color: var(--muted);
  font-size: 15px;
}

.hero-text-section {
  text-align: center;
  padding: 84px 0;
  background: var(--white);
}

.hero-text-section h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text-section p {
  color: var(--muted);
  margin-bottom: 34px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.form-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 26px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-box input {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #d7dde5;
  min-width: 220px;
  background: var(--white);
}

.pricing-bar {
  background: var(--construction-yellow);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.pricing-bar h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.pricing-bar p {
  color: rgba(255, 255, 255, 0.88);
}

.section {
  padding: 84px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.projects-section {
  background: #f1f4f8;
}

.projects-section p {
  color: var(--muted);
}

.reviews {
  background: #f1f3f6;
}

.white-cta {
  background: var(--white);
  padding: 84px 0;
  text-align: center;
}

.white-cta h2 {
  margin-bottom: 16px;
}

.white-cta p {
  color: var(--muted);
}

.social-section {
  margin-top: 26px;
}

.social-section p {
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f3f5f8;
  color: var(--primary);
  transition: 0.25s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background: #eaf0fb;
}

footer {
  background: #111;
  color: #bbb;
  padding: 34px 0;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-image {
    min-height: 72vh;
  }

  .hero-content {
    text-align: center;
    padding: 72px 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text-section h2,
  .section h2,
  .pricing-bar h2 {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .logo {
    font-size: 18px;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .hero-image {
    min-height: 68vh;
  }

  .hero-content p {
    font-size: 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .form-box {
    padding: 18px;
  }

  .form-box input,
  .form-box .btn-primary {
    width: 100%;
  }
  
  
    .projects-list {
      padding: 30px 0 90px;
    }

    .project-item {
      display: grid;
      grid-template-columns: minmax(250px, 528px) 1fr;
      gap: 40px;
      align-items: center;
      background: white;
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
      margin-bottom: 28px;
    }

    .project-item img {
      width: 100%;
      max-width: 528px;
      aspect-ratio: 528 / 960;
      object-fit: cover;
      border-radius: 16px;
      display: block;
    }

    .project-slider {
      position: relative;
      width: 100%;
      max-width: 528px;
    }

    .project-slider img {
      max-width: none;
    }

    .project-slide {
      display: none;
    }

    .project-slide.active {
      display: block;
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 50%;
      background: rgba(17, 17, 17, 0.7);
      color: #fff;
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.25s ease;
    }

    .slider-btn:hover {
      background: rgba(17, 17, 17, 0.9);
    }

    .slider-btn.prev {
      left: 14px;
    }

    .slider-btn.next {
      right: 14px;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 16px;
    }

    .slider-dot {
      width: 11px;
      height: 11px;
      border: none;
      border-radius: 50%;
      background: rgba(11, 61, 145, 0.25);
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .slider-dot.active {
      background: #0b3d91;
      transform: scale(1.12);
    }

    .project-content h3 {
      font-size: 30px;
      margin-bottom: 12px;
      color: #111;
    }

    .project-content p {
      color: #555;
      margin-bottom: 14px;
      font-size: 17px;
    }

    .project-tag {
      display: inline-block;
      margin-bottom: 14px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(11, 61, 145, 0.08);
      color: #0b3d91;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
	
	  .project-item {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 20px;
      }

      .project-content h3 {
        font-size: 24px;
      }
}
