body {
  font-family: "Helvetica", sans-serif;
}

[x-cloak] {
  display: none !important;
}

/* Hero */

.title-hero {
  color: white !important;
}

.title-services {
  color: black;
}

.title-portfolio {
  color: white !important;
}

.logo-img {
  width: 120px !important;
}

.nav-menu a {
  color: white !important;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4) !important;
  /* Adjust the opacity as needed */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.nav-menu {
  color: white;
}

.animated-text,
.animated-button {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.animated-text {
  animation-delay: 3s;
  /* Adjust the delay as needed */
}

.animated-button {
  animation-delay: 3.5s;
  /* Adjust the delay as needed */
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-effect {
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease;
  background-color: #ffffff;
  color: #a29062 !important;
  border: 0.25rem solid #a29062;
}

.hover-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #a29062, transparent);
  transition: left 1s ease;
  z-index: -1;
}

.hover-effect:hover::before {
  left: 100%;
}

.hover-effect:hover {
  color: #a29062;
  border-color: #a29062;
}

.hover-effect span {
  transition: color 0.5s ease;
}

.hover-effect:hover span {
  color: #a29062;
}

/* service */
.underline-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.7rem;
  /* Adds some space between text and underline */
  color: #a29062 !important;
}

.bg-gradient-to-b {
  background: linear-gradient(to bottom, #1f2937, #292929);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.object-cover {
  object-fit: cover;
}

.z-\[-10\] {
  z-index: -10;
}

.z-10 {
  z-index: 10;
}

/* CTA */
.projects {
  color: #ffffff;
}

.custom-bg {
  background-color: rgba(32, 32, 32, 1);
}

.luxury-bg {
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
}

.luxury-grey-bg {
  background: #202020;
  /* Luxury grey color */
}

.img-about {
  position: relative;
}

.img-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  /* Adjust the opacity as needed */
  z-index: 1;
  border-radius: inherit;
}

.img-about img {
  position: relative;
  z-index: 0;
  border-radius: inherit;
}

.bg-zinc-900::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.bg-zinc-900::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(32, 32, 32, 0.25));
  opacity: 0.2;
  pointer-events: none;
}

.image-3d {
  transition: transform 0.3s, box-shadow 0.3s;
}

.image-3d:hover {
  transform: scale(1.05) rotateY(5deg) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

#hero-section {
  margin-top: 120px !important;
  height: 900px !important;
}

/* .custom-border {
  border: 10px solid white;
} */

.greyscale-bg {
  filter: grayscale(100%);
}

.yellow-line {
  width: 380px;
  /* Adjust the width as needed */
  height: 4px;
  /* Adjust the height as needed */
  background-color: #a29062;
  /* Yellow color */
  margin: 0 auto;
  /* Center the line */
  margin-top: 1rem;
  /* Space between title and line */
}

@media (max-width: 640px) {

  /* Mobile screens */
  .yellow-line {
    width: 150px;
    /* Reduced width for mobile screens */
    height: 3px;
  }

  #hero-section {
    margin-top: 100px !important;
    height: 500px !important;
  }

  .service-title {
    display: none;
  }

  .sign {
    margin-left: -70px !important;
    margin-top: -30px !important;
  }
}

@media (max-width: 1220px) {
  /* Mobile screens */

  #hero-section {
    margin-top: 100px !important;
    height: 500px !important;
  }
}

.sign {
  margin-left: -130px;
  margin-top: -50px;
}

.heading-with-lines {
  position: relative;
  display: inline-block;
}

.heading-with-lines::before,
.heading-with-lines::after {
  content: "";
  position: absolute;
  top: 30%;
  width: 50px;
  height: 3px;
  background-color: #a29062;
}

.heading-with-lines::before {
  left: -60px;
}

.heading-with-lines::after {
  right: -60px;
}

.down-arrow {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.down-arrow:hover {
  background-color: #f0f0f0;
}

.card {
  position: relative;
  height: 550px;
  overflow: hidden;
  color: white;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 2s ease-in-out;
}

.card:hover .card-image {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 150%);
  text-align: center;
}

.mobile-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  /* Ensure it's above other content */
  background-color: black;
  color: white;
}

.mobile-menu {
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
  /* Hidden by default */
}

.mobile-menu-open {
  transform: translateY(0);
  /* Visible when open */
}

.nav-menu.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #a29062;
}



.blog-section-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f5f5f5;
}

.custom-blog-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  padding: 20px;
}

.custom-blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.custom-blog-card img {
  width: 100%;
  height: auto;
}

.custom-blog-content {
  padding: 20px;
  position: relative;
}

.custom-date-tag {
  background-color: #a09b50;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.custom-blog-title {
  font-size: 18px;
  margin-top: 50px;
}

.custom-blog-description {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin: 10px 0;
}

.custom-read-more {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.custom-read-more:hover {
  color: #41b883;
}

@media (max-width: 768px) {
  .custom-blog-section {
    grid-template-columns: 1fr;
  }
}

/* Mobile-specific short golden lines */
@media (max-width: 639px) {

  .heading-with-lines::before,
  .heading-with-lines::after {
    width: 10%;
    /* Shorter width for mobile */
  }

  .heading-with-lines::before {
    left: -10%;
    /* Position closer to the text on mobile */
  }

  .heading-with-lines::after {
    right: -10%;
    /* Position closer to the text on mobile */
  }
}

p {
  font-size: 16px !important;
  /* or any size you prefer */
  line-height: 1.6;
  /* Optional: improve readability */
  margin-bottom: 1rem;
  /* Optional: consistent spacing between paragraphs */
}

body,
html {
  overflow-x: hidden;
}

.map-container {
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% - 20px);
  /* Adjust width to fit within the available space */
  max-width: 1802px;
  height: 600px;
  /* Adjust this to your desired height */
  overflow: hidden;
  border-radius: 8px;
  /* Rounded corners */
}