/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../assets/about-hero-bg.jpg') no-repeat center center/cover;
  position: relative;
  padding: 8rem 0;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.min-vh-50 {
  min-height: 50vh;
}

/* Our Story Section */
.our-story-section {
  background-color: #f9f9f9;
}

.clients-worldwide {
  bottom: 30px;
  left: -30px;
  animation: float-stat-2 10s ease-in-out infinite;
}

/* Mission & Vision Section */
.mission-vision-card {
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.card-icon {
  font-size: 3rem;
  color: var(--primary);
}

/* Values Section */
.value-item {
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background-color: var(--primary) !important;
  color: white !important;
}

/* Team Section */
.team-member-card {
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.team-member-img {
  position: relative;
  overflow: hidden;
}

.team-member-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(215, 86, 64, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.team-member-card:hover .team-member-overlay {
  opacity: 1;
}

.team-member-card:hover .team-member-img img {
  transform: scale(1.1);
}

.team-social {
  display: flex;
  gap: 15px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background-color: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--dark);
  color: white;
}

/* Global Presence Section */
.global-office-card {
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
}

.global-office-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.office-icon {
  font-size: 2.5rem;
  color: var(--primary);
}

.global-map {
  position: relative;
  text-align: center;
}

.map-marker {
  position: absolute;
  z-index: 2;
}

.marker-dot {
  width: 15px;
  height: 15px;
  background-color: var(--primary);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary);
  animation: pulse 2s infinite;
}

.marker-label {
  position: absolute;
  left: 25px;
  top: -10px;
  background-color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.map-marker:hover .marker-label {
  opacity: 1;
  transform: translateX(0);
}

.dubai-marker {
  top: 45%;
  left: 70%;
}

.india-marker {
  top: 40%;
  left: 68%;
}

.brazil-marker {
  top: 55%;
  left: 25%;
}

.africa-marker {
  top: 45%;
  left: 50%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-hero {
    padding: 6rem 0;
  }
  
  .global-map {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 0;
  }
  
  .team-member-img img {
    height: 250px;
  }
  
  .mission-vision-card,
  .value-item,
  .global-office-card {
    margin-bottom: 2rem;
  }
}