body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background: #0f172a;
  color: white;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  padding: 15px 30px;
  z-index: 1000;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 65px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

.nav-call {
  background: #2563eb;
  padding: 10px 18px;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  white-space: nowrap;
}

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("images/deck-hero.jpg");
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 95px;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 20px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 22px;
  line-height: 1.5;
  margin: 10px 0;
}

.button {
  background: #2563eb;
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  border-radius: 6px;
  font-weight: 500;
}

.trust {
  margin-top: 10px;
  font-size: 18px;
  color: #93c5fd;
  font-weight: 500;
}

.trust-bar {
  background: #111827;
  padding: 20px;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 16px;
  color: #cbd5f5;
}

.services {
  padding: 80px 20px;
  text-align: center;
}

.services h2,
.projects h2,
.about h2,
.contact h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  display: block;
  background: #1e293b;
  color: #ffffff;
  text-decoration: none;
  padding: 30px 24px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.service-card h3 {
  margin: 0 0 12px 0;
  color: #ffffff;
}

.service-card p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.6;
}

#projects {
  padding: 80px 20px;
  background: #111827;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}


.project-shot {
  position: relative;
  margin: 0;
}

.project-shot img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.project-shot:hover img {
  transform: scale(1.05);
}

.comparison-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.before-label {
  background: rgba(15, 23, 42, 0.82);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.after-label {
  background: rgba(37, 99, 235, 0.18);
  color: #dbeafe;
  border: 1px solid rgba(147, 197, 253, 0.35);
}

.about {
  padding: 70px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.about p {
  font-size: 18px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.contact {
  padding: 60px 20px;
  text-align: center;
  background: #1e293b;
}

.contact p {
  margin: 10px 0;
  font-size: 18px;
}

.contact a {
  color: #93c5fd;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.footer {
  background: #0f172a;
  text-align: center;
  padding: 30px;
  color: #94a3b8;
  font-size: 14px;
}

.nav-links a:hover,
.nav-call:hover,
.button:hover {
  opacity: 0.85;
  transition: 0.2s ease;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 60vh;
    padding: 60px 0;
    margin-top: 90px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-overlay {
    padding: 30px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-call {
    font-size: 14px;
    padding: 8px 14px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}
/* REVIEW BOX */
.review-box-section {
  padding: 80px 20px;
  background: #111827;
}

.review-box-container {
  max-width: 700px;
  margin: 0 auto;
  background: #1f2937;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.review-box-container h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
}

.review-box-container p {
  text-align: center;
  color: #d1d5db;
  margin-bottom: 25px;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #374151;
  border-radius: 10px;
  background: #0f172a;
  color: #ffffff;
  font-size: 1rem;
  box-sizing: border-box;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: #9ca3af;
}

.review-form textarea {
  resize: vertical;
  min-height: 130px;
}

.review-form button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
}

.review-form button:hover {
  background: #1d4ed8;
}
/* TESTIMONIALS */
.testimonials-section {
  padding: 80px 20px;
  background: #0f172a;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.testimonials-container p {
  color: #d1d5db;
  margin-bottom: 35px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #1f2937;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  text-align: left;
}

.testimonial-stars {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testimonial-text {
  color: #e5e7eb;
  line-height: 1.7;
  margin-bottom: 18px;
}

.testimonial-name {
  color: #ffffff;
  margin: 0;
  font-size: 1rem;
}