/* ===============================
   GLOBAL RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0f0f0f;
  color: #e6e6e6;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: #e6e6e6;
  text-decoration: none;
}

/* ===============================
   HEADER & NAVIGATION
================================ */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 50px;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}


nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  font-size: 15px;
  opacity: 0.9;
}

nav a:hover {
  opacity: 1;
}

.lang-switch {
  margin-left: 30px;
  font-size: 14px;
  opacity: 0.7;
}

/* -------------------- HERO -------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;        /* adjust as needed */
  min-height: 400px;
  max-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  display: none; /* remove old pseudo-element */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* dark overlay */
  z-index: 1;
}

.hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: heroZoom 20s infinite alternate;
  transform-origin: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: #E6E6E6;
  animation: fadeUp 1.2s ease forwards;
}

/* -------------------- QUICK SERVICES -------------------- */
/* Center the Our Services title */
.home-services .center-title {
  text-align: center;
  margin-bottom: 30px; /* keep the spacing below */
}
.home-services .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 30px;
}

.service-card {
  flex: 1 1 250px;
  max-width: 320px;
  aspect-ratio: 1/1; /* roughly square */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E6E6E6;
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.service-card h3 {
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* -------------------- TEXT SECTIONS -------------------- */
section.intro, section.why-choose, section.testimonials {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  flex-direction: column;
  gap: 25px;
}

section.why-choose .features-grid, section.testimonials .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.feature, .testimonial {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 10px;
  flex: 1 1 250px;
  max-width: 300px;
  color: #E6E6E6;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* -------------------- STICKY CTA -------------------- */
.sticky-cta {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #E6B200;
  color: #111;
  font-weight: bold;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  z-index: 100;
  transition: transform 0.3s;
}

.sticky-cta:hover {
  transform: scale(1.05);
}

/* Make body full height and use flex */
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #111;
  color: #E6E6E6;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Make main content stretch to push footer down */
main {
  flex: 1 0 auto;
}

/* Footer */
footer {
  background: #111;
  color: #E6E6E6;
  padding: 25px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0; /* ensure footer doesn't shrink */
}
/* -------------------- ANIMATIONS -------------------- */
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------------------- RESPONSIVE -------------------- */
@media(max-width:900px){
  .service-card { aspect-ratio: auto; min-height: 250px; }
  section.why-choose .features-grid, section.testimonials .testimonial-grid {
    flex-direction: column;
  }
}

/* SERVICE DETAIL CENTERING */
.service-detail {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.service-detail .intro-card {
  max-width: 900px;
  width: 100%;
  background: rgba(255,255,255,0.05);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center; /* center all text inside */
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
  display: inline-block; /* center the list */
  text-align: left; /* optional: keep bullets aligned left inside card */
}

.service-detail ul li {
  margin-bottom: 10px;
}

/* SERVICES HERO TEXT ADJUSTMENT */
.services-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: #E6E6E6;
  animation: fadeUp 1.2s ease forwards;
  margin-top: 100px; /* adjust this value to move the text lower */
  text-align: center;
}
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: heroZoom 20s infinite alternate;
  transform-origin: center;
}

/* GENERAL CONTENT SECTIONS */
.section-card {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 3rem 2.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.section-card h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.section-card h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.section-card p,
.section-card li {
  line-height: 1.8;
  font-size: 1.05rem;
}

.section-card {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 3rem 2.5rem;

  background: rgba(0, 0, 0, 0.55); /* dark glass effect */
  backdrop-filter: blur(6px);

  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);

  color: #E6E6E6;
}

/* -------------------- PORTFOLIO -------------------- */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 3rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Portfolio Grid - keep dark overlay by default */
#portfolio-grid .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* dark overlay */
  transition: background 0.3s, transform 0.5s;
  border-radius: 10px;
  z-index: 1;
}

/* Hover effect: remove dark overlay only for hovered card and zoom */
#portfolio-grid .service-card:hover::before {
  background: rgba(0,0,0,0); /* remove overlay */
}

#portfolio-grid .service-card:hover {
  transform: scale(1.5);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Full-page overlay for clicked image */
#portfolio-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

#portfolio-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Arrow buttons */
#portfolio-overlay .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: rgba(255,255,255,0.6);
  padding: 20px;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

#portfolio-overlay .arrow:hover {
  color: rgba(255,255,255,1);
}

#portfolio-overlay .arrow-left {
  left: 20px;
}

#portfolio-overlay .arrow-right {
  right: 20px;
}

html, body {
  overflow-x: hidden; /* prevent horizontal scroll */
}

body {
  position: relative;
  background-color: #0f0f0f; /* or your existing background */
  overflow-x: hidden;
}

/* Transparent logo pattern overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/logo-pattern.png");
  background-repeat: repeat;
  background-size: 1500px; /* adjust size */
  opacity: 0.5; /* VERY IMPORTANT – subtle */
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

/* -------------------- CONTACT FORM -------------------- */
.contact-section {
  padding: 80px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-section .intro-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-section label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #E6E6E6;
  font-size: 16px;
  transition: all 0.3s ease;
  resize: none;
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 10px rgba(230,178,0,0.7);
}

.contact-section button {
  padding: 12px 30px;
  background: #E6B200;
  color: #111;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}

.contact-section button:hover {
  transform: scale(1.05);
  background: #c69500;
}

/* -------------------- RESPONSIVE -------------------- */
@media(max-width:900px){
  .contact-section {
    padding: 60px 30px;
  }

  .contact-section .intro-card {
    padding: 30px 20px;
  }
}

@media(max-width:500px){
  .contact-section h2 {
    font-size: 24px;
  }

  .contact-section input,
  .contact-section textarea {
    font-size: 14px;
  }

  .contact-section button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.fade-up {
  animation: fadeUp 1.2s ease forwards;
}

.fade-up {
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

.fade-up.delay-1 {
  animation-delay: 0.2s;
}

.fade-up.delay-2 {
  animation-delay: 0.6s;
}

.hero-contact {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url('images/contact-hero.jpg'); /* your contact hero image */
  background-size: cover;
  background-position: center;
  filter: brightness(0.65); /* slightly darkened */
  animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: #E6E6E6;
}

.social-icon svg {
  transition: transform 0.3s, fill 0.3s;
}

.social-icon:hover svg {
  transform: scale(1.2);
  fill: #E6B200; /* highlight color on hover */
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #E6E6E6;
  cursor: pointer;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

@media(max-width:900px){
  .nav-links {
    display: none; /* hidden by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 80px; /* below header */
    right: 0;
    background: #111;
    width: 200px;
    padding: 20px;
    border-left: 1px solid #E6E6E6;
    gap: 15px;
    box-shadow: -5px 5px 20px rgba(0,0,0,0.3);
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.logo-symbol img {
  display: block;
  margin: 0 auto;
}

/* FORCE LOGO IMAGE SIZE */
header .logo img {
  height: 76px !important;
  width: auto !important;
  max-height: none !important;
}

.hero {
  position: relative;
  z-index: 1;
}

header {
  position: fixed;
  z-index: 1000;
}

.hero {
  overflow: hidden;
}

/* VIDEO SECTION */
.hero-video {
  position: relative;
  width: 100%;
  height: 70vh; /* same height as carousel */
  min-height: 400px;
  max-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill the container like carousel */
}

/* Optional: zoom animation similar to carousel */
@keyframes videoZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

/* VIDEO SECTION */
.hero-video {
  position: relative;
  width: 100%;
  height: 70vh; /* same height as carousel */
  min-height: 400px;
  max-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill container like carousel */
}

/* Overlay content on top of video */
.hero-video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

/* Optional fade up animation like carousel hero */
.hero-video-content h1, 
.hero-video-content p {
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

.hero-video-content h1 { animation-delay: 0.3s; }
.hero-video-content p { animation-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Zoom effect */
@keyframes videoZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

/* Responsive adjustments */
@media(max-width:900px){
  .hero-video { height: 50vh; min-height: 300px; }
  .hero-video-content { padding: 10px; }
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps the video full in the container */
}

/* -------------------- SERVICES CARDS FIX -------------------- */
.home-services .service-grid a.service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #E6E6E6;
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-services .service-grid a.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
  transition: background 0.3s;
}

.home-services .service-grid a.service-card h3 {
  position: relative;
  z-index: 2;
}

.home-services .service-grid a.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.home-services .service-grid a.service-card:hover::before {
  background: rgba(0,0,0,0.1);
}

/* -------------------- PORTFOLIO FIX -------------------- */
.portfolio-grid a.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.portfolio-grid a.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.portfolio-grid a.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-grid a.portfolio-item .portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.portfolio-grid a.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-grid a.portfolio-item .portfolio-overlay h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
}

/* -------------------- CONTACT FORM NETLIFY FIX -------------------- */
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-section form input,
.contact-section form textarea {
  background: rgba(255,255,255,0.1);
  color: #E6E6E6;
}

.contact-section form button {
  background: #E6B200;
  color: #111;
  cursor: pointer;
}

/* -------------------- PRICING CARDS -------------------- */
.pricing-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.pricing-title {
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.5);
}

.price-card h4 {
  margin-bottom: 15px;
}

.price {
  font-size: 2.6rem;
  font-weight: 800;
  color: #E6B200;
  margin-bottom: 15px;
}

.price-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 600px) {
  .price {
    font-size: 2.2rem;
  }
}

/* ---------- PRICING GRID ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 30px;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.pricing-card .price {
  font-size: 2.2rem; /* bigger price */
  font-weight: bold;
  color: #E6B200;
  margin-bottom: 15px;
}

.pricing-card .price span {
  font-size: 0.9rem;
  color: #ccc;
}

.pricing-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #ddd;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
  }
}

.no-models-card {
  border: 1px solid rgba(230,178,0,0.4);
  background: rgba(255,255,255,0.04);
}

/* PRICE CARDS */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.price-card {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.price-card h4 {
  margin-bottom: 10px;
}

.price {
  font-size: 28px;
  font-weight: bold;
  color: #E6B200;
  margin-bottom: 15px;
}

/* Responsive */
@media(max-width:900px){
  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* SERVICE CARDS - About Page Only */
#about-page .services-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* allows wrapping if screen is smaller */
}

#about-page .service-card {
  display: flex;
  flex-direction: column; /* content inside each card stacked vertically */
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  padding: 20px 25px;
  width: 320px; /* adjust width to fit more text */
  min-height: 520px;  /* adjust height, remove extra empty space */
}

#about-page .service-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

#about-page .service-card-content h3 {
  margin: 0 0 10px 0;
}

#about-page .service-card-content ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.5;
}

/* Media query only for small screens */
@media(max-width:900px){
  #about-page .services-container {
    flex-direction: column; /* stack cards vertically on small screens */
    align-items: center;
  }
}

.hero-video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

#fullscreenBtn {
  margin-top: 15px;
  padding: 12px 25px;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.1); /* barely visible */
  color: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

#fullscreenBtn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.service-card.real-estate { 
  background-image: url('images/real-estate.jpg'); 
}
.service-card.product { 
  background-image: url('images/product.jpg'); 
}
.service-card.food { 
  background-image: url('images/food.jpg'); 
}

/* SERVICE CARD BACKGROUND IMAGES - ROOT FOLDER VERSION */
.service-card.real-estate {
  background-image: url('/real-estate.jpg');
}

.service-card.product {
  background-image: url('/product.jpg');
}

.service-card.food {
  background-image: url('/food.jpg');
}

/* Ensure background properties are applied */
.service-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}