/* Home Page Styles */

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--light-text);
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Stats Bar */
.stats-bar {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.stat-description {
  font-size: 16px;
  opacity: 0.8;
}

/* Services Grid */
.what-we-do-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 25px;
}

/* Story Section */
.story-section {
  padding: 80px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.mission, .vision {
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 8px;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-year {
  position: absolute;
  left: -60px;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
}

.timeline-content {
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 8px;
  margin-left: 20px;
}

.timeline-content h4 {
  margin-bottom: 10px;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Global Presence */
.global-presence {
  padding: 80px 0;
}

.map-container {
  position: relative;
  height: 500px;
  margin-bottom: 50px;
}

.world-map {
  width: 100%;
  height: 100%;
  background-image: url('../images/world-map.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.map-locations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.location-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.location-marker:hover {
  transform: scale(1.2);
}

.country-name {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
}

.location-marker:hover .country-name {
  opacity: 1;
}

.client-logos {
  text-align: center;
  margin-top: 50px;
}

.client-logos h3 {
  margin-bottom: 30px;
}

.logos-slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-item {
  flex: 0 0 18%;
  padding: 20px;
  filter: grayscale(100%);
  transition: var(--transition);
}

.logo-item:hover {
  filter: grayscale(0%);
}

.logo-item img {
  max-width: 100%;
  height: auto;
}

/* Leadership Team */
.leadership-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.team-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.team-member {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-photo {
  height: 250px;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-member:hover .member-photo img {
  transform: scale(1.05);
}

.member-info {
  padding: 20px;
}

.member-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.member-bio {
  margin-bottom: 20px;
}

.team-cta {
  text-align: center;
  margin-top: 30px;
}

/* News Section */
.news-section {
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-10px);
}

.news-image {
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 20px;
}

.news-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.news-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: var(--primary-color);
}

.read-more:hover {
  color: var(--secondary-color);
}

/* Contact CTA */
.contact-cta {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--light-text);
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--dark-bg);
}

.cta-content .btn:hover {
  background-color: transparent;
  color: var(--light-text);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .story-content {
    grid-template-columns: 1fr;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 80vh;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .logo-item {
    flex: 0 0 45%;
  }
}