/* PAGE HERO - ABOUT US */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, rgba(16, 64, 102, 0.05) 0%, rgba(248, 249, 250, 1) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path fill="%23104066" fill-opacity="0.03" d="M200,0 C310.46,0 400,89.54 400,200 C400,310.46 310.46,400 200,400 C89.54,400 0,310.46 0,200 C0,89.54 89.54,0 200,0 Z M200,50 C118.43,50 50,118.43 50,200 C50,281.57 118.43,350 200,350 C281.57,350 350,281.57 350,200 C350,118.43 281.57,50 200,50 Z"></path></svg>') center/contain no-repeat;
  opacity: 0.5;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 20px;
  color: var(--medium-gray);
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 16px;
  color: var(--medium-gray);
}

/* OUR STORY SECTION */
.story-section {
  padding: 80px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.story-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.story-text p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
}

.milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.milestone {
  text-align: center;
  padding: 20px;
  background-color: var(--off-white);
  border-radius: 8px;
  transition: var(--transition);
}

.milestone:hover {
  background-color: rgba(16, 64, 102, 0.05);
  transform: translateY(-5px);
}

.milestone-year {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.milestone p {
  font-size: 14px;
  margin-bottom: 0;
}

.story-visual {
  height: 500px;
  background: linear-gradient(135deg, rgba(16, 64, 102, 0.1) 0%, rgba(207, 1, 6, 0.1) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=800');
  background-size: cover;
  background-position: center;
}

.story-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 64, 102, 0.7) 0%, rgba(207, 1, 6, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 40px;
}

/* LEADERSHIP TEAM */
.leadership-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.leadership-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.leader-card {
  width: calc(100% / 3);
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.leader-image {
  height: 280px;
  background-color: var(--light-gray);
  background-size: cover;
  background-position: center;
  position: relative;
}

.leader-image.ceo {
  background-image: url('../img/leader/ceo.png');
}

.leader-image.gm {
  background-image: url('../img/leader/branding.png');
}

.leader-image.branding {
  background-image: url('../img/leader/gm.png');
}

.leader-image.middle-east {
  background-image: url('../img/leader/middle-east.png');
}
.leader-image.middle-east1 {
  background-image: url('https://cdn1.bestsuppliers.com/operate/20260309/2026030915273321752.png');
}

.leader-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  text-align: left;
}

.leader-overlay h4 {
  color: white;
  margin-bottom: 5px;
  font-size: 18px;
}

.leader-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin-bottom: 0;
}

.leader-content {
  padding: 25px 20px;
}

.leader-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.leader-role {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.leader-bio {
  color: var(--medium-gray);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.leader-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.leader-social a {
  width: 36px;
  height: 36px;
  background-color: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

.leader-social a:hover {
  background-color: var(--primary-blue);
  color: white;
}

/* OVERSEAS LEADERS SECTION */
.overseas-section {
  padding: 80px 0;
  background-color: white;
}

.overseas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.overseas-card {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
  border-top: 5px solid var(--primary-red);
  box-shadow: var(--shadow);
}

.overseas-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background-color: white;
}

.overseas-card .overseas-img{
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.overseas-card .overseas-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overseas-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.overseas-card h4 {
  color: var(--primary-red);
}

.overseas-card p {
  color: var(--medium-gray);
}

/* .values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border-top: 5px solid var(--primary-red);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background-color: white;
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(207, 1, 6, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-red);
  font-size: 30px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.value-card p {
  color: var(--medium-gray);
} */



.region-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.region-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.region-header {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.region-header.africa {
  background-image: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?auto=format&fit=crop&w=800');
}

.region-header.middle-east {
  background-image: url('https://images.unsplash.com/photo-1518548419970-58e3b4079ab2?auto=format&fit=crop&w=800');
}

.region-header.asia {
  background-image: url('https://images.unsplash.com/photo-1535139262971-c51845709a48?auto=format&fit=crop&w=800');
}

.region-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(16, 64, 102, 0.9));
  color: white;
}

.region-overlay h3 {
  color: white;
  margin-bottom: 5px;
  font-size: 22px;
}

.region-content {
  padding: 25px;
}

.region-leader {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.leader-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--off-white);
}

.leader-avatar.africa-leader {
  background-image: url('https://images.unsplash.com/photo-1544725176-7c40e5a71c5e?auto=format&fit=crop&w=300');
}

.leader-avatar.middle-east-leader {
  background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=300');
}

.leader-avatar.asia-leader {
  background-image: url('https://images.unsplash.com/photo-1545167622-3a6ac756afa4?auto=format&fit=crop&w=300');
}

.leader-info h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.leader-info p {
  color: var(--medium-gray);
  font-size: 13px;
  margin-bottom: 0;
}

.region-details {
  color: var(--medium-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* STRATEGIC PARTNERSHIPS */
.partnerships-section {
  padding: 80px 0;
  background-color: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
}

.partner-logo {
  height: 100px;
  background-color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* VALUES SECTION */
.values-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border-top: 5px solid var(--primary-red);
  box-shadow: var(--shadow-hover);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background-color: white;
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(207, 1, 6, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-red);
  font-size: 30px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.value-card p {
  color: var(--medium-gray);
}

/* GLOBAL PRESENCE */
.presence-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(16, 64, 102, 0.05) 0%, rgba(248, 249, 250, 1) 100%);
}

.presence-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.presence-map {
  height: 400px;
  background-color: var(--light-gray);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  /*background-image: url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?auto=format&fit=crop&w=800');*/
  background-image: url('../../public/img/about-us-5.png');
  background-size: cover;
  background-position: center;
}

.presence-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 64, 102, 0.8) 0%, rgba(207, 1, 6, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.presence-overlay h3 {
  color: white;
  font-size: 28px;
  text-align: center;
  padding: 20px;
}

.presence-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.presence-stat {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.presence-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.presence-stat-label {
  color: var(--medium-gray);
  font-size: 14px;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overseas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .presence-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .milestones {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .overseas-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .presence-stats {
    grid-template-columns: 1fr;
  }

  .milestones {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 32px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-visual {
    height: 350px;
  }
}