.hero-section {
  height: 100dvh;
}
.page-hero-section {
    height: 60dvh;
  }
.page-header-section-2{
  height: 55dvh !important;
}
.page-header-section-3{
  height: 75dvh !important;
}
.menu-icon {
  width: 5%;
}

.image-wrapper {
  position: relative;
  height: 400px;
  width: 100%;
}

.floating-image {
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.image-1 {
  left: 0;
  top: 50px;
  animation-name: floatUp;
}

.image-2 {
  right: 0;
  top: 150px;
  animation-name: floatDown;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes floatDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}

.owl-carousel img {
  width: auto !important;
}
/* Masonry container */
.masonry {
  /* Number of columns for large devices */
  column-count: 4;
  column-gap: 1rem; /* Space between columns */
}

/* Masonry items */
.masonry-item {
  display: inline-block; /* Important: to allow column-flow */
  width: 100%; /* Fill the column width */
  margin-bottom: 1rem; /* Space between items in vertical direction */
}

/* Responsive breakpoints to reduce column count on smaller screens */
@media (max-width: 1199.98px) {
  .masonry {
    column-count: 3;
  }
}

@media (max-width: 991.98px) {
  .masonry {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry {
    column-count: 1;
  }
}
.hero-title {
  font-size: 2.5rem;
}
.hero-subtitle {
  font-size: 1.5rem;
}
.hero-button:hover{
    border: none !important;
    color: white !important;
}
.hero-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #0A0908;
    transition: left 0.75s ease;
    z-index: -1;
}
.rcn-bg-primary{
    background-color: #ffffff;;
}
.rcn-bg-secondary{
    background-color: #0A0908;;
}
.hero-button:hover::before {
    left: 0;
}

.contact-info-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-sidebar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.info-item {
  margin-bottom: 2rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  /* background-color: rgba(255,255,255,0.2); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.form-control, .form-select {
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  background-color: #f1f5f9;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.form-control:focus, .form-select:focus {
  background-color: white;
  /* box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2); */
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  /* box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3); */
}

.contact-card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  /* color: white; */
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.custom-bg-primary{
  background-color: #a69c70 !important; 
}
.custom-text-primary{
  color: #a69c70 !important; 
}