* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Syne", sans-serif;
  background-color: #191717;
}

/* All Navbar */
.navbar {
  background: rgba(39, 39, 39, 0.6);
  padding: 15px 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: sticky; /* sticky navbar */
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  width: 164px;
  height: auto;
}

/* Nav Links (Centered) */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #c8c8c8;
}

.nav-links a:hover,
.nav-links .active {
  color: #c79d89;
}

/* Contact Button (Right) */
.desktop-contact {
  margin-left: auto;
}

/* Contact Button Style */
.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #c79d89;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  color: white !important;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.contact-btn:hover {
  background: #b4846c;
}

.contact-btn img {
  width: 22px;
  height: 22px;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile Menu (Fullscreen Drawer) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%; /* hidden initially */
  width: 100%;
  height: 100vh;
  background: rgba(39, 39, 39, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: left 0.4s ease;
  z-index: 2000; /* higher than navbar */
}

.mobile-menu.open {
  left: 0;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.mobile-links a {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #c8c8c8;
  transition: color 0.3s ease;
}

.mobile-links a:hover,
.mobile-links .active {
  color: #c79d89;
}

/* Mobile Contact Button */
.mobile-links .contact-btn {
  justify-content: center;
  margin-top: 20px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 2100; /* ensure above everything */
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-contact {
    display: none; /* hide desktop contact on mobile */
  }
}
/* /all navbar */

/* All Main Hero Section */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px; /* gap between text block & buttons */
}

/* Title + Subtitle Container */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0; /* no gap between title and subtitle */
}

.hero-title {
  font-size: 100px; /* Desktop */
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

.hero-subtitle {
  font-size: 26px;
  font-weight: 400;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 30px;
  text-decoration: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.btn img {
  width: 24px;
  height: 24px;
}

.btn-primary {
  background: #c79d89;
  color: white;
}

.btn-primary:hover {
  background: #b88973;
}

.btn-outline {
  border: 1.5px solid #c79d89;
  color: #c79d89;
  background: transparent;
}

.btn-outline:hover {
  background: #c79d89;
  color: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 100px;
  }
  .hero-subtitle {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh; /* reduce hero image height */
    padding: 60px 20px;
  }
  .hero-title {
    font-size: 70px; /* bigger on tablets */
  }
  .hero-subtitle {
    font-size: 22px;
  }
  .btn {
    font-size: 1.05rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 65vh; /* smaller hero section on mobile */
    padding: 50px 15px;
  }
  .hero-title {
    font-size: 50px; /* increase size on mobile for readability */
  }
  .hero-subtitle {
    font-size: 18px; /* also bigger on mobile */
  }
  .btn {
    font-size: 1rem;
    padding: 8px 14px;
  }
}
/* / All Main Hero Section */

/* Interior About Section */
.about-section {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("/images/") center/cover no-repeat;
  padding: 65px 30px;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 1380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Text block */
.about-text-block {
  max-width: 767px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.about-icon {
  width: 37px;
  height: 37px;
}

.about-description {
  color: #d8d8d8;
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 1px;
}

/* Gallery layout */
.about-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
}

/* Hide all images by default */
.gallery-img {
  display: none !important;
  border-radius: 10px;
  object-fit: cover;
}

/* Image sizes */
.img-large  { width: 360px; height: 520px; }
.img-medium { width: 250px; height: 350px; }
.img-small  { width: 200px; height: 280px; }

/* Responsive Visibility */

/* Mobile (≤768px): show only .img-mobile */
@media (max-width: 768px) {
  .about-gallery .img-mobile {
    display: block !important;
    max-width: 90%;
    margin: 0 auto;
  }

  .about-description {
    font-size: 18px;
    line-height: 1.4;
  }
}

/* Tablets & small laptops (769px–1024px): show .img-mobile + .img-tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-gallery .img-mobile,
  .about-gallery .img-tablet {
    display: block !important;
  }

  .about-gallery {
    justify-content: center;
    gap: 20px;
  }
}

/* Large laptops & desktops (≥1025px): show all images */
@media (min-width: 1025px) {
  .about-gallery .img-mobile,
  .about-gallery .img-tablet,
  .about-gallery .img-desktop {
    display: block !important;
  }
}

/* Interior Section */
.interior-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 80px;
  padding: 50px 100px 50px 100px;
  flex-wrap: wrap;
}

.interior-img {
  width: 650px;
  height: 600px;
  border-radius: 10px;
  object-fit: cover;
}

.interior-content h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 1.2px;
  color: #d4d4d4;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 400px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 22px;
  font-weight: 500;
  color: #d8d8d8;
  align-self: flex-start;
}

.service-item .number {
  color: #c79d89;
  font-size: 24px;
  font-weight: 600;
}

/* 📱 Responsive - Tablet (≤1024px) */
@media (max-width: 1024px) {
  .interior-section {
    padding: 40px 60px;
    gap: 50px;
    text-align: center;
  }

  .interior-img {
    width: 500px;
    height: auto;
  }
}

/* 📱 Responsive - Tablet Portrait (≤768px) */
@media (max-width: 768px) {
  .interior-section {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }

  .interior-img {
    width: 100%;
    height: auto;
    max-width: 400px; /* shrink on tablets */
  }

  .service-list {
    align-items: center;
  }

  .service-item {
    font-size: 20px;
  }
}

/* 📱 Responsive - Mobile (≤480px) */
@media (max-width: 480px) {
  .interior-img {
    max-width: 300px; /* smaller on small mobiles */
  }

  .interior-content h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .service-item {
    font-size: 18px;
  }

  .service-item .number {
    font-size: 20px;
  }
}

/* All Image Section */
.image-section {
  width: 100%;
  max-width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  width: 100%;
  max-width: 1440px; /* keeps layout balanced on large screens */
}

.image-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 10px;
  object-fit: cover; /* keeps image neat */
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .image-container img {
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  .image-container img {
    max-height: 180px;
    border-radius: 8px;
  }
}
/* / All Image Section */

/* Interior Services Section */
.services {
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.process {
  color: #c79d89;
  letter-spacing: 2px;
  font-size: 16px;
}

.services-title {
  font-size: 28px;
  font-weight: bold;
  color: #d8d8d8;
}

/* Container */
.services-container {
  position: relative;
  width: 100%;
  max-width: 1264px;
  height: 1100px;
}

/* Divider Line */
.divider {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  background: #777;
  transform: translateX(-50%);
}

/* Service Cards */
.service {
  position: absolute;
  max-width: 400px;
}

.service .number {
  font-size: 40px;
  font-weight: normal;
  color: #c79d89;
}

.service .service-title {
  font-size: 30px;
  font-weight: bold;
  color: #c79d89;
  margin: 5px 0;
}

.service .service-text {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  max-width: 100%;
}

.service .service-text li {
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 600;
  color: #d8d8d8;
  line-height: 1.8;
  max-width: 100%;
  align-content: flex-start;
}

/* Positions */
.service-1 {
  top: 45px;
  left: 180px;
  text-align: right;
}
.service-2 {
  top: 288px;
  right: 180px;
  text-align: left;
}
.service-3 {
  top: 508px;
  left: 180px;
  text-align: right;
}
.service-4 {
  top: 721px;
  right: 180px;
  text-align: left;
}

/* Large Laptops & Desktops (≥1440px) */
@media (min-width: 1440px) {
  .process {
    font-size: 18px;
  }
  .services-title {
    font-size: 40px;
  }
  .service .number {
    font-size: 48px;
  }
  .service .service-title {
    font-size: 34px;
  }
  .service .service-text li {
    font-size: 20px;
  }
}

/* Laptops (1025px–1439px) */
@media (min-width: 1025px) and (max-width: 1439px) {
  .process {
    font-size: 16px;
  }
  .services-title {
    font-size: 34px;
  }
  .service .number {
    font-size: 44px;
  }
  .service .service-title {
    font-size: 30px;
  }
  .service .service-text li {
    font-size: 18px;
  }
}

/* Tablets (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .process {
    font-size: 15px;
  }
  .services-title {
    font-size: 28px;
  }
  .service .number {
    font-size: 38px;
  }
  .service .service-title {
    font-size: 26px;
  }
  .service .service-text li {
    font-size: 16px;
  }
}

/* Mobiles (≤768px) */
@media (max-width: 768px) {
  .process {
    font-size: 14px;
  }
  .services-title {
    font-size: 24px;
  }
  .service .number {
    font-size: 32px;
  }
  .service .service-title {
    font-size: 22px;
  }
  .service .service-text li {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Mobile Small (≤480px) */
@media (max-width: 480px) {
  .process {
    font-size: 12px;
  }
  .services-title {
    font-size: 24px;
  }
  .service .number {
    font-size: 28px;
  }
  .service .service-title {
    font-size: 20px;
  }
  .service .service-text li {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Responsive Layout Fix for Tablet & Mobile */
@media (max-width: 1024px) {
  .services-container {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .divider {
    display: none;
  }

  .service {
    position: static;
    text-align: center;
    margin: 20px 0;
  }

  .service .service-text li {
    white-space: normal;
    text-overflow: unset;
  }
}

/* Design Section */
.design-section {
  padding: 40px 20px;
}

/* Container */
.design-container {
  background: #0d0d0d;
  border-radius: 20px;
  padding: 50px 45px;
  display: flex;
  align-items: center;
  gap: 64px;
}

/* Text Area */
.design-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.design-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.design-title {
  color: #c79d89;
  font-size: 32px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

.design-subtitle {
  color: #d8d8d8;
  font-size: 18px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  line-height: 1.6;
}

/* Bullet List */
.design-points {
  list-style-type: disc;
  padding-left: 20px; /* indent bullets */
  color: #d8d8d8;
  font-size: 20px;
  font-family: "Syne", sans-serif;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.8px;
}

.design-points li {
  margin-bottom: 10px;
}

/* Image */
.design-image img {
  width: 607px;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .design-container {
    flex-direction: column;
    text-align: center;
  }

  .design-text {
    align-items: flex-start;
  }

  .design-points {
    padding-left: 30px;
  }

  .design-image img {
    width: 607px;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .design-title {
    font-size: 26px;
  }

  .design-subtitle {
    font-size: 16px;
  }

  .design-points {
    font-size: 18px;
    line-height: 32px;
  }
}

@media (max-width: 600px) {
  /* Make image appear first */
  .design-image {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
/* Interior Service Section */

/* Interior Client Section */
.client-section {
  padding: 40px 20px;
}

.client-container {
  background: #0d0d0d;
  border-radius: 20px;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
}

/* Image */
.client-image img {
  width: 607px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Text */
.client-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.client-title {
  color: #c79d89;
  font-size: 32px;
  font-weight: 700;
}

/* Points */
.client-points {
  list-style-type: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.client-points li {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.8px;
  color: #d8d8d8;
}

.client-points .highlight {
  color: #c79d89;
  font-weight: 600;
  margin-right: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .client-container {
    flex-direction: column;
    text-align: center;
  }

  .client-text {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .client-title {
    font-size: 26px;
  }

  .client-points li {
    font-size: 18px;
    line-height: 1.5;
  }
}
/* Interior Client Section */

/* Interior Contact Box Section */
.contact-box-section {
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-box-container {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  background-image: url("images/image-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.contact-box-text h2 {
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  font-size: 40px;
  font-family: Syne, sans-serif;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 1.6px;
  margin: 0;
}

.contact-box-text p {
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  font-size: 20px;
  font-family: Syne, sans-serif;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin: 0;
}

.contact-box-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-box-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #c79d89;
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
  font-size: 20px;
  font-family: Syne, sans-serif;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
}

.contact-box-btn:hover {
  background: #b58976;
}

.contact-box-btn img {
  width: 24px;
  height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-box-container {
    padding: 60px 20px;
  }

  .contact-box-text h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .contact-box-text p {
    font-size: 16px;
  }

  .contact-box-btn {
    font-size: 16px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .contact-box-buttons {
    flex-direction: column;
    gap: 15px;
  }
}
/* /Interior Image Box Section */

/* All Working Process Section */
.working-section {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.working-container {
  background: #0d0d0d;
  border-radius: 20px;
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 100%;
  width: 100%;
}

.working-text {
  max-width: 495px;
  text-align: center;
}

.working-subtitle {
  color: #c79d89;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.28px;
}

.working-title {
  color: #d8d8d8;
  font-size: 30px;
  font-weight: 700;
}

.working-image {
  width: 100%;
  max-width: 844px;
  border-radius: 10px;
  height: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .working-container {
    padding: 40px 30px;
    gap: 40px;
  }

  .working-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .working-container {
    padding: 30px 20px;
    gap: 30px;
  }

  .working-title {
    font-size: 22px;
  }

  .working-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .working-title {
    font-size: 20px;
  }

  .working-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
  }
}
/* All Working Process Section */

/* Interior Post Section */
.post-section {
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-container {
  width: 100%;
  max-width: 100%;
  padding: 50px;
  border-radius: 20px;
  background: url("/images/project-bg.webp") center/cover no-repeat;
  text-align: center;
}

.post-header {
  margin-bottom: 40px;
}

.post-subtitle {
  color: #c79d89;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.2px;
}

.post-title {
  color: #d8d8d8;
  font-size: 30px;
  font-weight: 700;
}

/* Post Cards */
.post-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.post-card {
  background: #0d0d0d;
  border-radius: 25px;
  padding: 20px 15px 40px;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.post-card img {
  width: 100%;
  height: auto;
  max-height: 323px;
  border-radius: 10px;
  object-fit: cover;
}

.post-card h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
}

/* Read Post Button */
.read-post {
  display: inline-block; /* ensures <a> behaves like button */
  text-decoration: none; /* removes underline */
  background: transparent;
  color: #e1e1e1;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  border: 2px solid #c79d89;
  font-family: "Syne", sans-serif;
  border-radius: 30px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.read-post:hover {
  background: #c79d89;
  color: #0d0d0d;
}

/* Responsive */
@media (max-width: 768px) {
  .post-container {
    padding: 30px 20px;
  }

  .post-cards {
    gap: 20px;
  }

  .post-card {
    max-width: 100%;
  }
}
/* Interior Post Section */

/* All Testimonial Section */
.testimonial-section {
  padding: 30px 15px;
  display: flex;
  justify-content: center;
}

.testimonial-container {
  background: #464443;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
  position: relative;
}

/* Left & Right Layout (desktop) */
.testimonial-left,
.testimonial-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Arrow Button Styling */
.arrow-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.arrow-btn img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.arrow-btn img:hover {
  transform: scale(1.1);
}

/* Main Images */
.main-img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
}

/* Text Styling */
.testimonial-text {
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 15px;
}

.quote {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #d8d8d8;
}

.author {
  font-size: 18px;
  font-weight: 500;
  color: #c79d89;
}

/* Hide mobile box by default */
.testimonial-mobile-box {
  display: none;
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .testimonial-container {
    flex-direction: column;
    gap: 25px;
    padding: 30px 20px;
    text-align: center;
  }

  .main-img {
    width: 160px;
  }

  .quote {
    font-size: 18px;
  }

  .author {
    font-size: 16px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-container {
    padding: 20px 15px;
    gap: 20px;
    flex-direction: column;
    text-align: center;
    position: relative;
  }

  /* Hide desktop images & arrows */
  .testimonial-left,
  .testimonial-right {
    display: none;
  }
  .second-img {
    display: none;
  }

  /* Show mobile image + arrows */
  .testimonial-mobile-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    order: 1; /* Image box first */
    width: 100%;
  }

  .testimonial-text {
    order: 2; /* Text second */
  }

  .testimonial-mobile-box .mobile-main-img {
    width: 160px;
    margin: 0 50px; /* space for arrows */
  }

  /* Prev button left center */
  .prev-btn-mobile {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Next button right center */
  .next-btn-mobile {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* 🔹 Smaller arrows for mobile */
  .arrow-btn img {
    width: 25px;
    height: 25px;
  }

  .quote {
    font-size: 16px;
    line-height: 1.5;
  }

  .author {
    font-size: 14px;
  }
}

/* Extra Small Mobile (max 480px) */
@media (max-width: 480px) {
  .testimonial-mobile-box .mobile-main-img {
    width: 140px;
    margin: 0 40px;
  }

  .arrow-btn img {
    width: 24px;
    height: 24px;
  }

  .quote {
    font-size: 15px;
  }

  .author {
    font-size: 13px;
  }
}
/* /All Testimonial Section */

/* All Contact Section */
.contact-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
}

/* Left Content */
.contact-content {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 20px;
}

.contact-title-box {
  text-align: center;
}

.contact-subtitle {
  color: #c79d89;
  font-size: 16px;
  letter-spacing: 1.2px;
}

.contact-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 500px;
  margin: 0 auto;
  color: #ffffff;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Syne", sans-serif;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  background: #c7c7c7;
  font-size: 16px;
  color: white;
  outline: none;
  font-family: "Syne", sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: white;
  font-weight: 500;
}

.contact-form textarea {
  resize: none;
  min-height: 150px;
}

.contact-form button {
  padding: 15px;
  border: none;
  border-radius: 30px;
  background: #c79d89;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: "Syne", sans-serif;
}

.contact-form button:hover {
  background: #b1836e;
}

/* Right Image */
.contact-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 14px;
  }

  .contact-title {
    font-size: 24px;
    line-height: 1.2;
  }
}
/* All Contact Section */

/* All Footer Section */
.footer {
  background: #0d0d0d;
  padding: 50px 30px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo img {
  max-width: 250px;
}

/* Footer Columns */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  color: #c79d89;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column ul li {
  font-size: 16px;
  color: #d8d8d8;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-column ul li img {
  width: 22px; /* Contact icons 24x24 */
  height: 22px;
}

/* Links */
.footer-column a {
  color: #d8d8d8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #c79d89;
}

/* Social Icons */
.footer-socials {
  margin: 10px 0px;
  display: flex;
  gap: 20px;
}

.footer-socials img {
  width: 28px; /* Social icons 30x30 */
  height: 26px;
  transition: 0.3s;
}

.footer-socials img:hover {
  filter: brightness(1.3);
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #c79d89;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-columns {
    flex-direction: column;
    gap: 30px;
    align-items: center; /* Center columns */
    text-align: center; /* Center text */
  }

  .footer-column ul {
    align-items: center; /* Center list items */
  }

  .footer-column ul li {
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center;
    flex-direction: column; /* Stack icon above text */
    gap: 5px;
  }

  .footer-socials {
    justify-content: center; /* Center socials */
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }
}
/* /All Footer Section */

/* All Hero Section */
.all-hero {
  width: 100%;
  min-height: 600px;
  padding: 240px 20px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.all-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.all-hero-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: transparent;
}

.all-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.all-hero-title h1 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 100px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0;
  word-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .all-hero {
    padding: 150px 20px;
  }

  .all-hero-title h1 {
    font-size: 90px;
  }
}

@media (max-width: 768px) {
  .all-hero {
    padding: 100px 20px;
  }

  .all-hero-title h1 {
    font-size: 70px;
  }
}

@media (max-width: 480px) {
  .all-hero {
    padding: 80px 15px;
  }

  .all-hero-title h1 {
    font-size: 60px;
  }
}

/* Interior Services */
/* Interior Services Section */
.interior-services-container {
  padding: 50px 34px;
  background-image: url("/images/");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.interior-services-container-inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

/* Header */
.interior-services-container-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.interior-services-container-subtitle {
  color: #c79d89;
  font-size: 16px;
  font-family: Syne, sans-serif;
  font-weight: 400;
  letter-spacing: 1.28px;
}

.interior-services-container-title {
  color: #d8d8d8;
  font-size: 30px;
  font-family: Syne, sans-serif;
  font-weight: 700;
}

/* Rows */
.interior-services-container-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}

.interior-services-container-row.image-first {
  flex-direction: row; /* Image first on desktop */
}

.interior-services-container-row.text-first {
  flex-direction: row-reverse; /* Text first on desktop */
}

.interior-services-container-text {
  flex: 1;
  min-width: 280px;
}

.interior-services-container-text h3 {
  color: #c79d89;
  font-size: 30px;
  font-family: Syne, sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.interior-services-container-text ul {
  color: #d8d8d8;
  font-size: 18px;
  font-family: Syne, sans-serif;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.72px;
  padding-left: 20px;
  list-style: disc;
  margin: 0;
}

.interior-services-container-image {
  width: 600px;
  height: auto;
  border-radius: 20px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .interior-services-container-row {
    gap: 40px;
  }

  .interior-services-container-image {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .interior-services-container-title {
    font-size: 24px;
  }

  .interior-services-container-text h3 {
    font-size: 24px;
  }

  .interior-services-container-text ul {
    font-size: 16px;
  }

  /* Keep the correct order also in mobile */
  .interior-services-container-row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .interior-services-container-row.image-first {
    flex-direction: column; /* Image stays first */
  }

  .interior-services-container-row.text-first {
    flex-direction: column-reverse; /* Text stays first */
  }
}

/* Interiors About*/
/* About Company Section */
.about-company {
  padding: 65px 30px;
  background-image: url("images/");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-company-container {
  max-width: 1380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 41px;
}

/* Header Section */
.about-company-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.about-company-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.about-company-title h2 {
  font-size: 26px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1.04px;
  color: #c79d89;
  margin: 0;
}

.about-company-title-img {
  width: 40px;
  height: 40px;
}

/* Intro */
.about-company-intro {
  max-width: 1010px;
  font-size: 26px;
  font-family: "Syne", sans-serif;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 1.04px;
  color: #d8d8d8;
  margin: 0;
}

/* Gallery */
.about-company-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Hide all images by default */
.gallery-img {
  display: none !important;
  border-radius: 10px;
  object-fit: cover;
}

/* Image sizes */
.img-large  { width: 360px; height: 520px; }
.img-medium { width: 250px; height: 350px; }
.img-small  { width: 200px; height: 280px; }

/* Responsive Visibility */

/* Mobile (≤768px): show only .img-mobile */
@media (max-width: 768px) {
  .about-company-gallery .img-mobile {
    display: block !important;
    max-width: 90%;
    margin: 0 auto;
  }

  .about-company-intro {
    font-size: 20px;
    line-height: 30px;
  }

  .about-company-title h2 {
    font-size: 22px;
  }

  .about-company-gallery {
    gap: 20px;
  }
}

/* Tablets & small laptops (769px–1024px): show .img-mobile + .img-tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-company-gallery .img-mobile,
  .about-company-gallery .img-tablet {
    display: block !important;
  }

  .about-company-intro {
    font-size: 22px;
    line-height: 34px;
  }

  .about-company-gallery {
    justify-content: center;
    gap: 20px;
  }
}

/* Large laptops & desktops (≥1025px): show all images */
@media (min-width: 1025px) {
  .about-company-gallery .img-mobile,
  .about-company-gallery .img-tablet,
  .about-company-gallery .img-desktop {
    display: block !important;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .about-company-intro {
    font-size: 18px;
    line-height: 28px;
  }

  .about-company-title h2 {
    font-size: 20px;
  }

  .about-company-gallery {
    flex-direction: column;
    gap: 15px;
  }

  .about-company-gallery .img-mobile {
    width: 260px;
    height: 400px;
  }
}


/* Interior Post Box */
.postbox {
  padding: 30px 30px;
  display: flex;
  justify-content: center;
}

.postbox-wrapper {
  width: 1171px;
  height: 766px;
  position: relative;
}

/* Image (absolute left) */
.postbox-image {
  width: 550px;
  height: 672px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  object-fit: cover;
}

/* Content Box (absolute right) */
.postbox-content {
  position: absolute;
  top: 57px;
  left: 620px;
  background: #464344;
  border-radius: 20px;
  padding: 190px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
  max-width: 500px;
}

/* Title */
.postbox-title {
  color: #c79d89;
  font-size: 30px;
  font-family: Syne, sans-serif;
  font-weight: 700;
}

/* Description */
.postbox-description {
  color: #d4d4d4;
  font-size: 20px;
  font-family: Syne, sans-serif;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.8px;
}

/* Button */
.postbox-button {
  font-size: 14px;
  font-family: Syne, sans-serif;
  font-weight: 500;
  letter-spacing: 2.8px;
  color: #e6e6e6;
  text-decoration: none;
  border-bottom: 1px solid #8d8271;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.postbox-button:hover {
  color: #ffffff;
  border-bottom-color: #c79d89;
}

@media (max-width: 1024px) {
  .postbox-wrapper {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .postbox-image {
    position: relative;
    width: 100%;
    height: auto;
  }

  .postbox-content {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    padding: 80px 40px;
  }

  .postbox-title {
    font-size: 26px;
  }

  .postbox-description {
    font-size: 18px;
    line-height: 32px;
  }
}

@media (max-width: 600px) {
  .postbox-content {
    padding: 20px 30px;
  }

  .postbox-title {
    font-size: 22px;
  }

  .postbox-description {
    font-size: 16px;
    line-height: 28px;
  }
}

/* Team Section */
.team-section {
  padding: 30px;
}

.team-container {
  background: url("images/about-bg.jpg") no-repeat center center/cover;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  position: relative;
}

/* optional overlay */
.team-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  z-index: 0;
}

.team-container > * {
  position: relative;
  z-index: 1;
}

.team-header {
  margin-bottom: 40px;
}

.team-subtitle {
  color: #c79d89;
  font-size: 16px;
  font-family: "Syne", sans-serif;
  letter-spacing: 2px;
}

.team-title {
  color: #d8d8d8;
  font-size: 28px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.team-card {
  background: #0c0c0c;
  border-radius: 25px;
  padding: 20px 15px 40px;
  width: 320px;
  text-align: center;
}

.team-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.team-card h3 {
  color: #ffffff;
  font-size: 20px;
  font-family: "Syne", sans-serif;
  margin: 20px 0 10px;
}

.role {
  color: #e6e6e6;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.underline {
  height: 1px;
  width: 100px;
  background: #c79d89;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-row {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .team-container {
    padding: 30px 20px;
  }
  .team-card {
    width: 100%;
  }
}

/* Interiors Project */
/* Interior Projects Section */
.projects-section {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.projects-header {
  text-align: center;
}

.projects-subtitle {
  color: #c79d89;
  font-size: 16px;
  font-family: Syne, sans-serif;
  font-weight: 400;
  letter-spacing: 1.28px;
}

.projects-title {
  color: #d8d8d8;
  font-size: 30px;
  font-family: Syne, sans-serif;
  font-weight: 700;
}

/* Project Cards */
.projects-container {
  display: grid;
  grid-template-columns: repeat(2, 600px);
  gap: 40px;
  justify-content: center;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 600px;
  overflow: hidden; /* Keep content inside */
}

.project-card img {
  width: 600px;
  height: 600px;
  object-fit: cover;
  /* Removed transform/hover zoom */
}

.project-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.project-content h3 {
  color: #d8d8d8;
  font-size: 30px;
  font-family: Syne, sans-serif;
  font-weight: 500;
  text-align: center;
}

/* Details Button with Line */
.details-btn {
  position: relative;
  text-decoration: none; /* remove underline */
  background: transparent;
  color: #e6e6e6;
  font-size: 14px;
  font-family: Syne, sans-serif;
  font-weight: 500;
  letter-spacing: 2.8px;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.details-btn .line {
  display: block;
  width: 105px;
  height: 0px;
  border: 1px solid #8d8271;
  margin-top: 5px;
  outline-offset: -0.5px;
  /* Removed transform effect */
  transition: all 0.3s ease;
}

.details-btn:hover {
  color: #fff;
}

.details-btn:hover .line {
  border-color: #c79d89;
}

/* Responsive Design */
@media (max-width: 1280px) {
  .projects-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .project-card,
  .project-card img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .projects-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card img {
    width: 100%;
    height: auto;
  }

  .projects-title {
    font-size: 24px;
  }

  .project-content h3 {
    font-size: 22px;
  }
}

/* Project Quotes Section */
.quote-section {
  padding: 50px 20px;
}

.quote-container {
  display: flex;
  justify-content: center;
}

.quote-box {
  display: flex;
  padding: 50px;
  background: #0d0d0d;
  border-radius: 10px;
  max-width: 100%;
  width: 100%;
}

.quote-content {
  display: flex;
  align-items: stretch; /* stretch lines */
  gap: 50px;
  width: 100%;
}

.quote-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.quote-title {
  color: #fbfbfb;
  font-size: 32px;
  font-family: Syne, sans-serif;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 1.28px;
}

.quote-text {
  color: #d8d8d8;
  font-size: 20px;
  font-family: Syne, sans-serif;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.8px;
}

/* Straight vertical line */
.quote-line {
  width: 2px;
  background-color: #5d5d5d;
  height: 100%;
}

/* Responsive */
@media (max-width: 1280px) {
  .quote-content {
    flex-direction: column;
  }

  .quote-line {
    width: 100%;
    height: 2px;
  }
}

@media (max-width: 768px) {
  .quote-title {
    font-size: 24px;
  }

  .quote-text {
    font-size: 16px;
  }
}

/* All Address Section */
.address-section {
  padding: 85px 30px;
}

.address-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.address-box {
  display: flex;
  align-items: center;
  gap: 50px;
}

.address-line {
  width: 2px;
  background-color: #909090;
  height: 100%;
}

.address-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.address-title {
  color: #c79d89;
  font-size: 20px;
  font-family: Syne, sans-serif;
  font-weight: 400;
  letter-spacing: 1.6px;
}

.address-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8d8d8;
  font-size: 24px;
  font-family: Syne, sans-serif;
  font-weight: 400;
  line-height: 40px;
}

.address-item img {
  width: 24px;
  height: 24px;
}

.address-item a {
  color: #d8d8d8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.address-item a:hover {
  color: #c79d89;
}

.address-text {
  line-height: 32px;
}

/* Responsive Design */
@media (max-width: 1280px) {
  .address-container {
    gap: 30px;
  }

  .address-item {
    font-size: 20px;
  }

  .address-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .address-container {
    flex-direction: column;
    gap: 30px;
    align-items: center; /* center container */
    text-align: center; /* center text */
  }

  .address-box {
    flex-direction: column; /* stack items */
    align-items: center;
    gap: 20px;
  }

  .address-item {
    font-size: 18px;
    justify-content: center; /* center icons + text */
  }

  .address-title {
    font-size: 16px;
  }

  /* hide line only on tablet & mobile */
  .address-line {
    display: none;
  }
}

/* All Project List Details */
.project-list-details {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: #d8d8d8;
  font-family: Syne, sans-serif;
  overflow-x: hidden; /* ✅ prevents horizontal scrolling */
}

/* ✅ Make ALL images inside this section responsive */
.project-list-details img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.project-list-details-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 50px;
  text-align: center;
}

.project-list-details-icon {
  width: 76px;
  height: 105px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.project-list-details-title h1 {
  font-size: 42px;
  font-weight: 500;
  text-align: center;
}

/* Content */
.project-list-details-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.project-list-details-description h3 {
  color: #e6e6e6;
  font-size: 14px;
  letter-spacing: 2.8px;
  margin-bottom: 10px;
}

.project-list-details-description p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.72px;
  text-align: justify;
}

.project-list-details-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block h3 {
  color: #e6e6e6;
  font-size: 14px;
  letter-spacing: 2.8px;
  margin-bottom: 5px;
}

.info-block p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.72px;
}

/* Gallery */
.project-list-details-gallery {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gallery-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%; /* ✅ ensures row fits screen */
  box-sizing: border-box; /* ✅ avoids overflow from padding */
}

.gallery-row img {
  object-fit: cover;
  border-radius: 10px;
  flex: 1 1 auto;
  max-width: 100%; /* ✅ no image exceeds container */
  height: auto;
}

/* Two-column layout (desktop & tablet) */
.gallery-row.two-col img {
  width: 50%;
  max-width: 550px;
}

/* Three-column layout (desktop & tablet) */
.gallery-row.three-col img {
  width: 33.333%;
  max-width: 350px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .project-list-details-title h1 {
    font-size: 32px;
  }

  .project-list-details-description p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .project-list-details-content {
    flex-direction: column; /* ✅ text + info stack */
    gap: 20px;
  }

  /* ✅ Force single-column images on mobile */
  .gallery-row.two-col img,
  .gallery-row.three-col img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .project-list-details-title h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .project-list-details {
    padding: 30px 15px;
  }

  .project-list-details-title h1 {
    font-size: 24px;
  }
}
/* /interiors */

/* Common Button Styles for whatsapp & back to top btn */

#backToTop,
#whatsappBtn {
  position: fixed;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #c79d89; /* background color */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, opacity 0.3s, visibility 0.3s;
  z-index: 1000;
} 

/* Icon Images */

.icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes icons white */
} 

/* WhatsApp Button (Always visible) */

#whatsappBtn {
  bottom: 30px;
  right: 30px;
  opacity: 1;
  visibility: visible;
}

#whatsappBtn:hover {
  background-color: #b58874;
} 

/* Back to Top Button (Above WhatsApp) */

#backToTop {
  bottom: 90px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
}

#backToTop:hover {
  background-color: #b58874;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
} 

/* 🔹 Mobile Responsive (smaller icons & buttons) */

@media (max-width: 600px) {
  #backToTop,
  #whatsappBtn {
    width: 40px; /* smaller button */
    height: 40px;
    right: 20px; /* tuck closer to edge */
  }

  .icon-img {
    width: 20px; /* smaller icon */
    height: 20px;
  }

  #backToTop {
    bottom: 70px; /* adjust spacing */
  }

  #whatsappBtn {
    bottom: 20px;
  }
}

/* Home Page */
/* Home Hero Section */
.home-hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: url("images/home-hero.webp") center/cover no-repeat;
  overflow: hidden;
}

.home-hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 25, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* Header */
.home-hero-header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 15px 20px;
}

.home-hero-logo {
  width: 164px;
  height: 51px;
  object-fit: contain;
}

/* Content */
.home-hero-content {
  max-width: 1250px;
  margin-top: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.home-hero-text h1 {
  font-size: 50px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.home-hero-subtitle {
  font-size: 28px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 10px 0;
}

.home-hero-tagline {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* Images */
.home-hero-images {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.home-hero-image {
  width: 350px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: block;
  transition: all 0.3s ease;
}

.home-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

/* Hover/Press Effect */
.home-hero-image:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  outline: 0.1px solid #ffffff;
  backdrop-filter: blur(2px);
  transform: scale(1.02);
}

.home-hero-image:hover img {
  filter: brightness(0.9);
}

.home-hero-image:active {
  transform: scale(0.98);
}

/* Description */
.home-hero-description {
  font-size: 20px;
  font-weight: 500;
  color: rgba(216, 216, 216, 0.8);
  line-height: 35px;
  letter-spacing: 0.88px;
}

/* Responsive */
@media (max-width: 1024px) {
  .home-hero-text h1 {
    font-size: 40px;
    line-height: 60px;
  }
  .home-hero-subtitle {
    font-size: 24px;
  }
  .home-hero-tagline {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .home-hero-images {
    gap: 30px;
  }
  .home-hero-image {
    width: 100%;
    max-width: 300px;
    height: 100%;
  }
  .home-hero-text h1 {
    font-size: 32px;
    line-height: 48px;
  }
  .home-hero-subtitle {
    font-size: 20px;
  }
  .home-hero-tagline {
    font-size: 18px;
  }
  .home-hero-description {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .home-hero-images {
    flex-direction: column;
    align-items: center;
  }
  .home-hero-image {
    width: 100%;
    max-width: 300px;
    height: 100%;
  }
  .home-hero-text h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .home-hero-subtitle {
    font-size: 18px;
  }
  .home-hero-tagline {
    font-size: 16px;
  }
  .home-hero-description {
    font-size: 14px;
    line-height: 24px;
  }
}
/* /Home Page */

/* Construction Page */
/* Construction About Section */
.construction-about-section {
  padding: 65px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.construction-about-container {
  display: flex;
  gap: 50px;
  max-width: 1400px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.construction-about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 767px;
}

.construction-about-icon {
  width: 37px;
  height: 37px;
}

.construction-about-text-box {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.construction-about-description {
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  color: #d8d8d8;
}

.construction-about-quote {
  font-size: 22px;
  font-weight: 500;
  color: #c79d89;
}

/* Stats */
.construction-about-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.construction-about-stat {
  text-align: center;
}

.construction-about-stat h3 {
  font-size: 40px;
  font-weight: 400;
  color: #c79d89;
  margin: 0;
}

.construction-about-stat p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #d8d8d8;
  margin: 5px 0 0;
}

.construction-about-divider {
  width: 1px;
  height: 50px;
  background: #d8d8d8;
}

/* Right Image */
.construction-about-image img {
  width: 100%;
  max-width: 495px;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .construction-about-container {
    flex-direction: column;
    text-align: center;
  }

  .construction-about-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .construction-about-description {
    font-size: 18px;
    line-height: 30px;
  }

  .construction-about-stat h3 {
    font-size: 32px;
  }

  .construction-about-stat p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .construction-about-section {
    padding: 40px 15px;
  }

  .construction-about-description {
    font-size: 16px;
    line-height: 28px;
  }

  .construction-about-quote {
    font-size: 18px;
  }

  .construction-about-stats {
    gap: 20px;
  }
}

/* Construction Services Section */
.construction-service-section {
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.construction-service-container {
  width: 100%;
  max-width: 1440px;
  padding: 64px 20px;
  background: #0d0d0d;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Title Area */
.construction-service-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.construction-service-badge {
  padding: 5px 10px;
  background: #c79d89;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-family: Syne, sans-serif;
  font-weight: 500;
  letter-spacing: 0.56px;
}

.construction-service-title {
  color: #c79d89;
  font-size: 30px;
  font-family: Syne, sans-serif;
  font-weight: 700;
}

.construction-service-subtitle {
  color: #d8d8d8;
  font-size: 20px;
  font-family: Syne, sans-serif;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.4px;
  margin: 0 auto;
}

/* Services Grid */
.construction-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 20px;
}

/* Cards */
.construction-service-card {
  padding: 12px;
  background: #191717;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.construction-service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.construction-service-card img {
  width: 100%;
  height: 250px; /* uniform image size */
  object-fit: cover;
  border-radius: 8px;
}

.construction-service-card h3 {
  color: #c79d89;
  font-size: 24px;
  font-family: Syne, sans-serif;
  font-weight: 700;
  text-align: center;
}

.construction-service-card p {
  color: #d8d8d8;
  font-size: 16px;
  font-family: Syne, sans-serif;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.32px;
  text-align: center;
}

/* Tablet (2 per row) */
@media (max-width: 992px) {
  .construction-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (1 per row) */
@media (max-width: 600px) {
  .construction-service-grid {
    grid-template-columns: 1fr;
  }
}

/* Construction What we do */
.construction-whatdo-section {
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: center;
}

.construction-whatdo-container {
  width: 100%;
  max-width: 1440px;
  padding: 64px 20px;
  background: #0d0d0d;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Header */
.construction-whatdo-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.construction-whatdo-badge {
  padding: 5px 10px;
  background: #c79d89;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-family: Syne, sans-serif;
  font-weight: 500;
  letter-spacing: 0.56px;
}

.construction-whatdo-title {
  color: #c79d89;
  font-size: 30px;
  font-family: Syne, sans-serif;
  font-weight: 700;
}

.construction-whatdo-subtitle {
  color: #d8d8d8;
  font-size: 20px;
  font-family: Syne, sans-serif;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.4px;
  max-width: 800px;
}

/* Cards Grid */
.construction-whatdo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.construction-whatdo-card {
  padding: 12px;
  background: #191717;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.construction-whatdo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.construction-whatdo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.construction-whatdo-card h3 {
  color: #c79d89;
  font-size: 20px;
  font-family: Syne, sans-serif;
  font-weight: 700;
}

.construction-whatdo-card p {
  color: #d8d8d8;
  font-size: 16px;
  font-family: Syne, sans-serif;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.32px;
}

/* Tablet (2 per row) */
@media (max-width: 992px) {
  .construction-whatdo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (1 per row) */
@media (max-width: 600px) {
  .construction-whatdo-grid {
    grid-template-columns: 1fr;
  }

  .construction-whatdo-title {
    font-size: 24px;
  }

  .construction-whatdo-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Construction Contact Box Section */
.construction-contact-box-section {
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.construction-contact-box-container {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  background-image: url("images/construction-image.webp");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.construction-contact-box-text h2 {
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  font-size: 40px;
  font-family: Syne, sans-serif;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 1.6px;
  margin: 0;
}

.construction-contact-box-text p {
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  font-size: 20px;
  font-family: Syne, sans-serif;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin: 0;
}

.construction-contact-box-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.construction-contact-box-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #c79d89;
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
  font-size: 20px;
  font-family: Syne, sans-serif;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
}

.construction-contact-box-btn:hover {
  background: #b58976;
}

.construction-contact-box-btn img {
  width: 24px;
  height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .construction-contact-box-container {
    padding: 60px 20px;
  }

  .construction-contact-box-text h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .construction-contact-box-text p {
    font-size: 16px;
  }

  .construction-contact-box-btn {
    font-size: 16px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .construction-contact-box-buttons {
    flex-direction: column;
    gap: 15px;
  }
}
/* /Construction Image Box Section */

/* Construction FAQ Section */
.construction-faq-section {
  background: #0d0d0d;
  padding: 96px 48px;
}

/* FAQ Wrapper */
.construction-faq-container {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Left Side (FAQ Title + Image) */
.construction-faq-left {
  display: inline-block;
  width: 48%;
  vertical-align: top;
  text-align: left;
  margin-bottom: 40px;
}

.construction-faq-badge {
  display: inline-block;
  background: #c79d89;
  padding: 5px 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-family: Syne, sans-serif;
  font-weight: 500;
  letter-spacing: 0.56px;
}

.construction-faq-answer p {
  font-family: "Syne", sans-serif;
  font-size: 16px;
}

.construction-faq-title {
  color: #c79d89;
  font-size: 30px;
  font-family: Syne, sans-serif;
  font-weight: 700;
  margin-top: 20px;
}

.construction-faq-image {
  width: 100%;
  max-width: 525px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

/* Right Side (FAQ Items) */
.construction-faq-right {
  display: inline-block;
  width: 48%;
  vertical-align: top;
  text-align: center;
}

/* FAQ Item */
.construction-faq-item {
  display: inline-block;
  width: 100%;
  max-width: 600px;
  background: #1d1f1e;
  border-radius: 16px;
  margin: 10px auto;
  text-align: left;
  overflow: hidden;
}

/* Question Button */
.construction-faq-question {
  display: block;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #d8d8d8;
  font-size: 18px;
  font-family: Syne, sans-serif;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  text-align: left;
}

/* Plus/Minus Icon */
.construction-faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  font-size: 20px;
  font-weight: bold;
}

.construction-faq-item.active .construction-faq-question::after {
  content: "−";
}

/* Answer (hidden by default) */
.construction-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: #d8d8d8;
  font-size: 16px;
  font-family: Syne, sans-serif;
  line-height: 24px;
}

.construction-faq-item.active .construction-faq-answer {
  max-height: 200px;
  padding: 16px 24px 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .construction-faq-left,
  .construction-faq-right {
    display: block;
    width: 100%;
    text-align: center;
  }

  .construction-faq-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .construction-faq-section {
    padding: 60px 20px;
  }

  .construction-faq-image {
    display: none; /* ✅ Hide image on mobile & tablet */
  }

  .construction-faq-title {
    font-size: 22px;
  }

  .construction-faq-question {
    font-size: 16px;
  }
}

/* Construction Services */

/* Construction Services Section */
.construction-service-list-section {
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.construction-service-list-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.construction-service-list-tag {
  background: #C79D89;
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  padding: 5px 12px;
  border-radius: 10px;
}

.construction-service-list-title {
  font-size: 30px;
  font-weight: 700;
  color: #D8D8D8;
}

/* Service Items */
.construction-service-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.construction-service-list-item.reverse {
  flex-direction: row-reverse;
}

.construction-service-list-text {
  flex: 1;
  min-width: 280px;
}

.construction-service-list-heading {
  color: #C79D89;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Bullet Points */
.construction-service-list-points {
  list-style-type: disc;
  margin-left: 20px;
  color: #D8D8D8;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.7px;
}

.construction-service-list-points li {
  margin-bottom: 8px;
}

/* Images */
.construction-service-list-image {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  height: auto;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .construction-service-list-item,
  .construction-service-list-item.reverse {
    flex-direction: column;
    text-align: center;
  }

  .construction-service-list-text {
    text-align: center;
  }

  .construction-service-list-points {
    text-align: left;
    display: inline-block;
  }
}

@media (max-width: 576px) {
  .construction-service-list-title {
    font-size: 24px;
  }

  .construction-service-list-heading {
    font-size: 22px;
  }

  .construction-service-list-points {
    font-size: 16px;
  }
}

/* Construction Content Section */
.construction-content-section {
  padding: 80px 30px;
  display: flex;
  justify-content: center;
}

/* Wrapper */
.construction-content-wrapper {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  max-width: 1350px;
  width: 100%;
}

/* Image */
.construction-content-image {
  width: 900px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  flex: 2;
}

/* Content Box */
.construction-content-box {
  background: #464344;
  border-radius: 10px;
  height: 400px;
  min-width: 300px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.construction-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 30px;
  text-align: center;
}

/* Title */
.construction-content-title {
  color: #C79D89;
  font-size: 30px;
  font-weight: 700;
}

/* Description */
.construction-content-description {
  color: #D4D4D4;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.8px;
  max-width: 400px;
}

/* Button */
.construction-content-button {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #8D8271;
  border-radius: 6px;
  background: transparent;
  color: #E6E6E6;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.construction-content-button:hover {
  background: #C79D89;
  border-color: #C79D89;
  color: #111;
}

/* Responsive */
@media (max-width: 992px) {
  .construction-content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .construction-content-box {
    height: auto;
    padding: 20px;
  }

  .construction-content-inner {
    gap: 20px;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .construction-content-title {
    font-size: 24px;
  }

  .construction-content-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .construction-content-button {
    font-size: 12px;
    padding: 10px 20px;
  }
}

/* Construction Project List Section */
/* Section */
.construction-projects-section {
  padding: 50px 20px;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Header */
.construction-projects-header {
  text-align: center;
  margin-bottom: 20px;
}

.construction-projects-tag {
  background: #C79D89;
  color: #fff;
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.construction-projects-title {
  color: #D8D8D8;
  font-size: 28px;
  font-weight: 700;
}

/* Grid */
.construction-projects-container {
  display: grid;
  grid-template-columns: repeat(2, 600px);
  gap: 40px;
  justify-content: center;
}

/* Item */
.construction-projects-item {
  position: relative;
  width: 600px;
  height: 600px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;   /* removes underline */
  display: block;          /* makes the anchor behave like a block */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.construction-projects-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}


/* Image */
.construction-projects-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient */
.construction-projects-gradient {
  position: absolute;
  inset: 0;
}

/* Caption */
.construction-projects-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.construction-projects-caption h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.construction-projects-icon {
  width: 28px;
  height: 28px;
}

/* Responsive */
@media (max-width: 1280px) {
  .construction-projects-container {
    grid-template-columns: 1fr;
  }

  .construction-projects-item {
    width: 100%;
    height: 400px;
  }
}

/* Bounce Hover Effect */
.bounce-img {
  display: inline-block;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.bounce-img:hover,
.bounce-img:active {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  .bounce-img img {
    width: 100%;
    height: auto;
  }
}

/* ===== Luxury Scroll Motion (Smooth, No Blur) ===== */
:root {
  --lux-distance: 80px; /* travel distance */
}

.lux-scroll {
  opacity: 0;
  transform: translate(0,0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.3, 1),
              opacity 1.5s cubic-bezier(0.25, 1, 0.3, 1);
  will-change: transform, opacity;
}

/* Directions */
.lux-left   { transform: translateX(calc(-1 * var(--lux-distance))); }
.lux-right  { transform: translateX(var(--lux-distance)); }
.lux-top    { transform: translateY(calc(-1 * var(--lux-distance))); }
.lux-bottom { transform: translateY(var(--lux-distance)); }

/* When visible */
.lux-scroll.is-visible {
  opacity: 1;
  transform: translate(0,0);
}

