/* About Page Specific Styles */

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(13, 46, 76, 0.8), rgba(13, 46, 76, 0.8)), 
              url('https://images.pexels.com/photos/7681891/pexels-photo-7681891.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
}

/* Company Description */
.company-description {
  position: relative;
}

.company-description::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, rgba(25, 73, 116, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.description-image {
  position: relative;
  overflow: hidden;
}

.description-image img {
  transition: transform 0.8s ease;
}

.description-image:hover img {
  transform: scale(1.05);
}

/* Why Choose Us */
.why-choose-us {
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(25, 73, 116, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-choose-us::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 177, 126, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.reason-number {
  font-family: var(--heading-font);
  transition: all var(--transition-medium);
}

.reason:hover .reason-number {
  background-color: var(--accent);
}

/* Meet the Founders */
.meet-founders {
  position: relative;
  background-color: var(--white);
}

.founder-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.founder-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 15px;
  max-width: 500px;
}

.founder-title {
  position: relative;
  display: inline-block;
}

.founder-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
  justify-items: center;
}

.founder-card:hover .founder-image img {
  transform: scale(1.05);
}