/* Global Styles */
:root {
  --primary-color: #c4944e;
  /* --secondary-color: #395144; */
  --secondary-color: #84ac8c;
  --accent-color: #3498db;
  --text-color: #333;
  --light-gray: #f5f5f5;
  --dark-gray: #777;
  --white: #ffffff;
  --off-white: #f0f0f0;
  --black: #000000d7;
}

/* Page Title */
.about-pages {
  width: 100%;
  height: 100%;

  position: relative;
  background-color: var(--white) !important;
}

.about-pages .bg-white {
  background-color: var(--white) !important;
}

.about-pages .hero {
  background: url("https://newvashaepz.com/wp-content/uploads/2025/08/DJI_20250528145011_0377_D-1-scaled.webp");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 600px;
  max-height: 100svh;
  color: var(--white);
  text-align: center;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  position: relative !important;

  overflow: visible !important;
}

.about-pages .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: var(--black) !important;
  opacity: 0.55 !important;
  z-index: 1;
}

.about-pages .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  height: 100%;

  position: relative;
  z-index: 2;
}

.about-pages .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;

  width: 50%;
  height: 100%;
}

.about-pages h1 {
  font-size: 48px;
  margin: 0.5rem 0;
}

.about-pages p {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: start;
}

.breadcrumb {
  font-size: 16px;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--primary-color);
}

.about-pages .image-container {
  width: 500px;
  height: 500px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 10px;
  overflow: hidden;

  margin-bottom: -300px;

  position: relative;

  z-index: 200;
}

.about-pages .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-pages .image-container .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
  .about-pages .hero {
    height: 500px;
  }

  .about-pages .container {
    flex-direction: column;
    gap: 2rem;
  }

  .about-pages .text-container {
    width: 100%;
    text-align: center;
  }

  .about-pages h1 {
    font-size: 2.5rem;
  }

  .about-pages .image-container {
    width: 400px;
    height: 400px;
    margin-bottom: -200px;
  }
}

@media (max-width: 768px) {
  .about-pages .hero {
    height: 400px;
  }

  .about-pages .breadcrumb {
    margin-top: 80px;
  }

  .about-pagesh1 {
    font-size: 2rem;
  }

  .about-pages p {
    font-size: 14px;
  }

  .about-pages .image-container {
    width: 80vw;
    height: 300px !important;
    margin-bottom: -220px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}

/* --------------------------------------Who We Are Section -------------------------------------- */
.who-we-are {
  width: 100%;
  height: 100%;
  padding: 3rem 0;
  background-color: var(--white) !important;
}

.who-we-are .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.who-we-are .content-grid {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;

  gap: 2rem;
}

.who-we-are .image-container2 {
  width: 50%;
  height: auto;

  position: relative;
}

.who-we-are .image-container2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 10px;
  overflow: hidden;
}

.who-we-are .content-text {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;

  padding-top: 100px;
  padding-bottom: 1rem;
}

.subtitle {
  color: var(--secondary-color);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.content-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.content-text p {
  font-size: 1.05rem !important;
}

.learn-more {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.learn-more:hover {
  background-color: var(--primary-color);
}

.learn-more a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.25rem !important;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .who-we-are {
    padding: 2rem 0;
  }

  .who-we-are .content-grid {
    flex-direction: column;
    gap: 3rem;
  }

  .who-we-are .image-container2 {
    width: 100%;
  }

  .who-we-are .content-text {
    width: 100%;
    padding-top: 0;
  }

  .content-text h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .who-we-are {
    padding: 12rem 0 2rem 0;
  }

  .who-we-are .content-grid {
    gap: 2rem;
    flex-direction: column-reverse;
  }

  .content-text h2 {
    font-size: 2rem;
  }

  .content-text p {
    font-size: 0.95rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .learn-more {
    padding: 0.75rem 1.5rem;
  }

  .learn-more a {
    font-size: 1rem !important;
  }
}

/*------------------------------- Services Section ------------------------------- */
.vision {
  padding: 4rem 0;
}

.vision .container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 2rem;
}

.vision-card {
  background-color: var(--light-gray);
  box-sizing: border-box;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;

  position: relative;
  overflow: hidden;

  height: 27rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.vision-card:hover {
  transform: translateY(-10px);
}

.vision-card.commercial {
  background: url("https://newvashaepz.com/wp-content/uploads/2025/09/DJI_20241210080938_0433_D-scaled.jpg");
  background-size: cover;
  background-position: center;
}

.vision-card.residential {
  background: url("https://newvashaepz.com/wp-content/uploads/2025/09/newvasha-estate-option-1-scaled.jpg");
  background-size: cover;
  background-position: center;
}

.vision-card.property-management {
  background: url("https://newvashaepz.com/wp-content/uploads/2025/09/Property-Magement-1.0-scaled.jpg");
  background-size: cover;
  background-position: center;
}

.vision-card i {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 20px;

  position: relative;
  z-index: 2;

  background-color: var(--secondary-color);
  padding: 10px;
  border-radius: 50%;

  height: 80px;
  width: 80px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-card h3 {
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.vision-card p {
  color: var(--white);
  position: relative;
  z-index: 2;
  width: 90%;
  font-size: 1.05rem !important;
  text-align: center !important;
}

.vision-link a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
}

.vision-link {
  display: inline-block;
  margin-top: 20px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;

  position: relative;
  z-index: 2;
}

.vision-link:hover {
  background-color: #223253;
}

@media (max-width: 1024px) {
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vision {
    padding: 2rem 0;
  }

  .vision-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0rem;
  }
}

/* ------------------------------------------Business Section------------------------------ */
.business {
  padding: 100px 0;
  background-color: var(--white);
}

@media (max-width: 1024px) {
  .business {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .business {
    padding: 2rem 0;
  }
}

/* Additional Responsive Design for Gallery, Features, Timeline (if they exist) */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.main {
    height: 400px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item::after {
    display: none;
  }
}
