/* About Page Styles *//* About Page Specific Styles */

.page-header {

/* Hero Section */    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 

.about-hero {                url('/images/about-bg.jpg') no-repeat center center/cover;

  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);    height: 300px;

  padding: 80px 0 60px;    display: flex;

  position: relative;    align-items: center;

  overflow: hidden;}

}

.icon-box {

.about-hero::before {    transition: all 0.3s ease;

  content: '';}

  position: absolute;

  top: 0;.card:hover .icon-box {

  left: 0;    background-color: rgba(var(--bs-warning-rgb), 0.2) !important;

  right: 0;}

  bottom: 0;

  background: url('../images/construction-pattern.jpg') center/cover;.team-member-img {

  opacity: 0.1;    height: 250px;

  z-index: 0;    object-fit: cover;

}    object-position: top;

}

.hero-overlay {

  position: absolute;@media (max-width: 768px) {

  top: 0;    .page-header {

  left: 0;        height: auto;

  right: 0;        padding: 80px 0;

  bottom: 0;    }

  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.9) 100%);}
  z-index: 1;
}

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

.min-vh-70 {
  min-height: 70vh;
}

.tracking-wide {
  letter-spacing: 2px;
}

.about-hero h1 {
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.about-hero .lead {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.about-hero .btn {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  transition: all 0.3s ease;
}

.about-hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(199, 160, 59, 0.3);
}

/* Stats Section */
.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

/* Image Stack */
.image-stack {
  position: relative;
}

.image-stack .main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.image-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: #C7A03B;
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-badge h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}

.image-badge p {
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 5px;
}

/* Feature Box */
.feature-box {
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateX(10px);
}

.icon-wrapper {
  display: inline-block;
  transition: all 0.3s ease;
}

.feature-box:hover .icon-wrapper {
  transform: scale(1.1);
}

/* Principle Cards */
.principle-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #C7A03B;
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.principle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.principle-card:hover::before {
  transform: scaleY(1);
}

.card-icon-wrapper {
  margin-bottom: 25px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.icon-circle i {
  font-size: 2rem;
}

.principle-card:hover .icon-circle {
  transform: rotate(360deg);
  box-shadow: 0 8px 20px rgba(199, 160, 59, 0.3);
}

/* Value Cards */
.value-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #C7A03B 0%, #d4b356 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.value-icon i {
  font-size: 2rem;
  color: white;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(199, 160, 59, 0.4);
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(199, 160, 59, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: white;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #1a1a1a;
  color: white;
  transform: translateY(-5px);
}

.team-content {
  padding: 25px;
  text-align: center;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/construction-pattern.jpg') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.85) 100%);
  z-index: 1;
}

.cta-section .btn {
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(199, 160, 59, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0 40px;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .min-vh-70 {
    min-height: auto;
    padding: 40px 0;
  }

  .image-badge {
    bottom: -15px;
    right: 15px;
    padding: 20px;
  }

  .image-badge h3 {
    font-size: 2rem;
  }

  .principle-card,
  .value-card {
    margin-bottom: 20px;
  }

  .team-image-wrapper {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .image-badge {
    position: static;
    margin-top: 20px;
    display: inline-block;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle i {
    font-size: 1.5rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
  }

  .value-icon i {
    font-size: 1.5rem;
  }

  .team-image-wrapper {
    height: 250px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .principle-card,
  .value-card,
  .team-card {
    background: #2d2d2d;
  }

  .principle-card h3,
  .value-card h5,
  .team-content h4 {
    color: white;
  }
}
