/* Office Location CSS */


.vo-main-wrapper-here
{
  padding: 40px 0;
}

.vo-section-02, .common-section-wrapper {
  padding: 80px 0;
  position: relative;
  z-index: 10;
  background-color: #fff;
  /* border: 2px solid; */
  padding-top: 0;
  padding-bottom: 50px;
}

.vo-section-02 .title,
.common-section-wrapper .title,
.vo-section-04 .title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 15px;
  position: relative;
  display: inline-block; /* Keeps line tight to text width */
  padding-bottom: 10px; /* spacing between text and line */
}


.vo-section-02 .vo-location-group {
  display: flex;
}

.vo-section-02 .vo-location-group .btn.active {
  background-color: var(--dark-blue-color);
  color: white;
}

.vo-section-02 .vo-location-group .btn {
  padding: 12px 30px;
}

.vo-section-02 .vo-location-group .btn:focus {
  box-shadow: none !important;
}
.vo-section-02 .vo-location-group .btn:hover {
  transform: translateY(0px);
}

@keyframes locationCardAnimation {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.vo-filter-location-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vo-filter-location-card.animate-in {
  animation: locationCardAnimation 1s ease both;
}

.vo-filter-location-card {
  margin-top: 40px;
}

.vo-section-02-property-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(3, 109, 188, 0.1),
    0 2px 4px -1px rgba(3, 109, 188, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  opacity: 1;
  border: 2px solid #e5e7eb;
}

.vo-section-02-property-card:hover {
  box-shadow: 0 20px 25px -5px rgba(3, 109, 188, 0.1),
    0 10px 10px -5px rgba(3, 109, 188, 0.04);
}

.vo-section-02-card-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.vo-section-02-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vo-section-02-standard-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--dark-blue-color);
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  z-index: 5;
}

.vo-section-02-standard-badge.vo-exclusive-badge {
  background: linear-gradient(270deg, #036dbc, #20282d, #3d68f8);
  background-size: 600% 600%;
  animation: gradientAnimation 4s ease infinite;
}

/* Animation Keyframes */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.vo-section-02-standard-badge.vo-prestigious-badge {
  background-color: var(--light-blue-color);
}


.vo-section-02-card-body {
  padding: 30px;
}

.vo-section-02-property-title {
  font-size: 20px;
  font-family: "Red Hat Display", serif !important;
    font-weight: 600;
    margin-bottom: 15px;
}

.vo-section-02-property-address {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vo-section-02-address-icon {
  color: gray;
}

.vo-section-02-card-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.vo-section-02-card-actions .more-information-modal {
  background-color: var(--dark-blue-color);
  width: 100%;
    text-align: center;
    font-size: 15px;
}
.vo-section-02-card-actions .more-information-modal i {
  padding-right: 5px;
}

.vo-section-02-btn-primary-custom {
  background: linear-gradient(135deg, #036dbc 0%, #0582e6 100%);
  border: none;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 6px -1px rgba(3, 109, 188, 0.1),
    0 2px 4px -1px rgba(3, 109, 188, 0.06);
}

.vo-section-02-btn-primary-custom:hover {
  background: #025a9a;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(3, 109, 188, 0.1),
    0 10px 10px -5px rgba(3, 109, 188, 0.04);
  color: #ffffff;
}
.vo-modal-bootstrap .modal-header .btn-close {
  color: var(--dark-blue-color);
  font-size: 25px;
  background-color: transparent;
  font-weight: bold;
  border: none;
}

.vo-modal-bootstrap .modal-header h3
{
  font-size: 25px;
}


/* Responsive Design */
@media (max-width: 768px) {
  .vo-section-02-card-body {
    padding: 25px;
  }

  .vo-section-02-card-actions {
    flex-direction: column;
    gap: 15px;
  }

  .vo-section-02-btn-primary-custom {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .vo-section-02 {
    padding: 60px 0;
  }

  .vo-section-02-card-image-wrapper {
    height: 220px;
  }
}

.vo-section-02-property-card:nth-child(1) {
  animation-delay: 0.1s;
}

.vo-section-02-property-card:nth-child(2) {
  animation-delay: 0.2s;
}

.vo-section-02-property-card:nth-child(3) {
  animation-delay: 0.3s;
}

.vo-section-02-property-card:nth-child(4) {
  animation-delay: 0.4s;
}

.vo-section-02-property-card:nth-child(5) {
  animation-delay: 0.5s;
}

.vo-section-02-property-card:nth-child(6) {
  animation-delay: 0.6s;
}

@media screen and (max-width: 992px) {
  .vo-section-02 .title, .vo-section-04 .title,
  .common-section-wrapper .title
  {
    font-size: 30px;
    line-height: 45px;
  }

}

@media screen and (max-width: 768px) {
 .vo-section-02 .vo-location-group
  {
    flex-direction: column;
    gap: 15px;
  }
}