:root {
  --header-height: 76px;
  --bg: #ffffff;
  --surface: #ffffff;
  --card: #f0ece3;
  --text: #2e2a25;
  --muted: #6b6255;
  --accent: #062b45 ;
  --accent-dark: #062b45 ;
  --border: rgba(46, 42, 37, 0.12);
  --shadow: 0 20px 45px rgba(23, 18, 11, 0.08);
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 65px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}



body {
  margin: 0;
   font-family:
    -apple-system, /* iOS, macOS */
    BlinkMacSystemFont, /* Chrome on macOS */
    "Segoe UI", /* Windows */
    Roboto, /* Android */
    Helvetica, Arial, sans-serif;
  /* font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  padding-top: var(--header-height);
}
img {
  max-width: 100%;
  display: block;
}

a {
  color: #252525;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
    width: 100%;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  font-family:
    -apple-system, /* iOS, macOS */
    BlinkMacSystemFont, /* Chrome on macOS */
    "Segoe UI", /* Windows */
    Roboto, /* Android */
    Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4 {
   font-family:
    -apple-system, /* iOS, macOS */
    BlinkMacSystemFont, /* Chrome on macOS */
    "Segoe UI", /* Windows */
    Roboto, /* Android */
    Helvetica, Arial, sans-serif;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
  color: #252525;
}

.section {
  padding: 5rem 0;
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.section:nth-of-type(even) {
  background: var(--surface);
}

.section:nth-of-type(odd) {
  background: var(--bg);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.split.align-center {
  align-items: center;
}

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

.card {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(23, 18, 11, 0.13);
}

.btn {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.85rem 2rem;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

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

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.ghost:hover {
  background: var(--accent);
  color: #1a1a1a;
}

/* .site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(248, 246, 241, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
} */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(rgba(88, 132, 163, 0.85), rgba(78, 116, 143, 0.75)),
              url('../images/header_img.jpg') center/cover no-repeat;
  background-attachment: scroll;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}





.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  position: relative;
  width: 100%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  text-decoration: none;
}

.logo h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  font-family: 'Great Vibes', cursive;    /*Sacramento , Great Vibes*/
  letter-spacing: 0.05em;
  text-transform: none;
  white-space: nowrap;
  line-height: 1.2;
}

.logo span {
  color: var(--accent);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 0.5rem 0;
  position: relative;
  color: #ffffff;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle {
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s ease;
}

.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;           /* Image covers full area */
  background-position: center;      /* Keep image centered */
  background-repeat: no-repeat;     /* No white gaps */
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 3, 0, 0.6), rgba(6, 3, 0, 0.2));
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  animation: fadeUp 1s ease;
  margin: 0 auto;
  margin-right: clamp(2rem, 5vw, 4rem);
  padding: 2rem 1rem;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-content .lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
  margin: 0;
  padding: 0;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}

.intro h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.experience img {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.metrics span {
  display: block;
  font-size: 2.5rem;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card::after {
  content: 'View';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
}

.gallery-card:hover::after {
  opacity: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(23, 18, 11, 0.13);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 1rem;
  background: #f1ede4;
}

.site-footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.site-footer .eyebrow {
  margin-bottom: 0.5rem;
}

.footer-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.badge::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--muted);
}

.success-message {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(64, 147, 109, 0.3);
  background: rgba(64, 147, 109, 0.08);
  color: #2f6a4e;
  font-size: 0.9rem;
  display: none;
}

.success-message.visible {
  display: block;
}

.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
}

.page-hero p {
  max-width: 640px;
  margin: 0.5rem auto 0;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 6rem 0 3rem;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 5rem 0 2.5rem;
  }
  
  .page-hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .page-hero p {
    padding: 0 1rem;
  }
}

.steps {
  counter-reset: step;
}

.steps li {
  padding-left: 3rem;
  position: relative;
  margin-bottom: 1.5rem;
}

.steps li::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  font-family:
    -apple-system, /* iOS, macOS */
    BlinkMacSystemFont, /* Chrome on macOS */
    "Segoe UI", /* Windows */
    Roboto, /* Android */
    Helvetica, Arial, sans-serif;
  color: var(--accent);
  font-weight: 600;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header {
    background: linear-gradient(rgba(88, 132, 163, 0.85), rgba(78, 116, 143, 0.75)),
              url('../images/header_img.jpg') center/cover no-repeat;
    background-attachment: scroll;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  .logo h3 {
    font-size: 1.5rem;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: var(--shadow);
    text-align: left;
    z-index: 9998;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    color: var(--text);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    height: auto;
    max-height: 90vh;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .hero-slider {
    height: 100%;
    position: relative;
  }

  .hero-slide {
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    min-height: 100%;
    padding-bottom: 0;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    margin-right: 0;
    padding: 2rem 1.5rem 3rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-content .lead {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 1.5rem;
  }

  .slider-controls {
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 20;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section:first-of-type {
    padding-top: 0;
    margin-top: 0;
    scroll-margin-top: 0;
  }

  .lightbox-nav {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .contact-wrapper,
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split {
    gap: 2rem;
  }

  .card,
  .service-card,
  .contact-card {
    padding: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .experience img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 60vh;
    height: auto;
    max-height: 85vh;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .hero-slider {
    height: 100%;
    position: relative;
  }

  .hero-slide {
    padding: 0;
    min-height: 100%;
    align-items: flex-end;
    padding-bottom: 0;
  }

  .hero-content {
    max-width: 100%;
    margin: 0;
    padding: 1.5rem 1rem 2.5rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .hero-content .lead {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  .hero-content .eyebrow {
    font-size: clamp(0.65rem, 2.5vw, 0.75rem);
    margin-bottom: 0.5rem;
  }

  .slider-controls {
    bottom: 0.75rem;
    gap: 0.5rem;
    position: absolute;
    z-index: 20;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section:first-of-type {
    padding-top: 0;
    margin-top: 0;
    scroll-margin-top: 0;
  }

  .section.intro,
  .section.experience {
    padding: 2.5rem 0;
  }

  .intro h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.25rem 0;
  }

  .metrics span {
    font-size: 1.75rem;
  }

  .btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
  }

  .site-footer {
    padding: 1.5rem 0 1rem;
  }

  .site-footer .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }

  .steps li {
    padding-left: 2.5rem;
    margin-bottom: 1.25rem;
  }

  .steps li::before {
    font-size: 0.9rem;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    font-size: 32px;
    width: 36px;
    height: 36px;
  }

  .lightbox-nav {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  #lightboxImg {
    max-width: 95%;
    max-height: 80vh;
    padding: 0 0.5rem;
  }
}



/* Masonry container */
.masonry-section {
  padding: 5rem 0;
  background: var(--bg);
}

.masonry-section .container {
  margin-bottom: 2rem;
}

.masonry {
  column-count: 3;
  column-gap: 1rem;
  width: 100%;
}

.masonry-item {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  position: relative;
  overflow: hidden;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* Hover animation */
.masonry-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightboxImg {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
  animation: fadeIn 0.3s ease;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 45px;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
  line-height: 1;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: rotate(90deg);
}

/* Navigation buttons */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  z-index: 10000;
  user-select: none;
  line-height: 1;
}

.lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Additional responsive improvements for masonry */
@media (max-width: 960px) {
  .masonry-section {
    padding: 3rem 0;
  }
  
  .masonry-section .container {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .masonry {
    column-count: 2;
    column-gap: 0.75rem;
  }
  
  .masonry-item {
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 600px) {
  .masonry-section {
    padding: 2.5rem 0;
  }
  
  .masonry-section .container {
    margin-bottom: 1rem;
    padding: 0 1rem;
  }
  
  .masonry {
    column-count: 1;
    column-gap: 0;
  }
  
  .masonry-item {
    margin-bottom: 0.75rem;
    border-radius: 8px;
  }
  
  .masonry-item img {
    border-radius: 8px;
  }
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .logo-img {
    height: 45px;
  }
}

@media (max-width: 600px) {
  .logo-img {
    height: 40px;
  }

  .logo h3 {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }

  .site-header {
    background: linear-gradient(rgba(88, 132, 163, 0.85), rgba(78, 116, 143, 0.75)),
              url('../images/header_img.jpg') center/cover no-repeat;
    background-attachment: scroll;
    background-size: cover;
  }
}


.service-icon {
  width: 60px;
  height: 60px;
  background-color: #260a88;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

/* individual icons */
.service-icon.bathroom {
  mask-image: url("assets/images/service/bathroom.png");
  -webkit-mask-image: url("assets/images/service/bathroom.png");
}

.service-icon.kitchen {
  mask-image: url("assets/images/service/kitchen.png");
  -webkit-mask-image: url("assets/images/service/kitchen.png");
}

.service-icon.bedroom {
  mask-image: url("assets/images/service/bedroom.png");
  -webkit-mask-image: url("assets/images/service/bedroom.png");
}

.service-icon.living {
  mask-image: url("assets/images/service/living.png");
  -webkit-mask-image: url("assets/images/service/living.png");
}