
/* Company Story */
.story-image-wrapper {
  position: relative;
}

.story-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.story-stats {
  background: linear-gradient(135deg, rgba(0, 114, 186, 0.1) 0%, rgba(0, 114, 186, 0.05) 100%);
  border-radius: 15px;
  padding: 30px 20px;
  margin-top: 30px;
}

.stat-item {
  padding: 15px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

/* Our Services */
.service-card {
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card .card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover .card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 114, 186, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  font-size: 2rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1);
}

.service-title {
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;    font-family: var(--font-secondary);
}

.service-description {
  color: #6c757d;
  line-height: 1.6;
  font-size: 14px;
}

.service-note {
  color: var(--main-color);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0;
}


/* Success Story */
.success-story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 114, 186, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: var(--main-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.customer-info {
  background: rgba(0, 114, 186, 0.05);
  border-radius: 15px;
  padding: 20px;
}

.customer-avatar img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.success-timeline {
  margin: 30px 0;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  position: relative;
}

.timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 45px;
  width: 2px;
  height: 30px;
  background: rgba(0, 114, 186, 0.2);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--main-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content h5 {
  color: var(--main-color);
  margin-bottom: 8px;
}

.customer-quote {
  background: white;
  border-radius: 15px;
  padding: 25px;
  border-left: 4px solid var(--main-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quote-author {
  color: var(--main-color);
  font-weight: 600;
}

/* Results Section */
.result-card {
  background: rgba(0, 114, 186, 0.05);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
}

.result-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 114, 186, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--main-color);
  font-size: 1.5rem;
}

.result-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 5px;
}

.result-label {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Timeline */
.timeline-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--main-color), rgba(0, 114, 186, 0.3));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 50%;
  padding-right: 60px;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  padding-left: 60px;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: white;
  border: 4px solid var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-year {
  font-weight: 700;
  color: var(--main-color);
  font-size: 1rem;
}

.timeline-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--main-color);
  font-size: 1.3rem;
}

.timeline-description {
  color: #6c757d;
  line-height: 1.6;
}

/* Value Cards */
.value-card {
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-card .card {
  border-radius: 20px;
  transition: all 0.3s ease;
}

.value-card:hover .card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 114, 186, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--main-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--main-color);
  color: white;
  transform: scale(1.1);
}

.value-title {
  color: var(--main-color);
  font-weight: 600;
}

/* Team Section */
.team-card {
  height: 100%;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card .card {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

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

.team-image img {
  transition: transform 0.3s ease;
}

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

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 114, 186, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.social-link {
  width: 45px;
  height: 45px;
  background: white;
  color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.team-card:hover .social-link {
  transform: translateY(0);
  opacity: 1;
}

.team-card:hover .social-link:nth-child(1) {
  transition-delay: 0.1s;
}

.team-card:hover .social-link:nth-child(2) {
  transition-delay: 0.2s;
}

.social-link:hover {
  background: var(--main-color);
  color: white;
  transform: scale(1.1);
}

.team-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.team-position {
  font-weight: 500;
  font-size: 0.9rem;
}

.team-description {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Global Reach */
.global-reach {
  background: linear-gradient(135deg, var(--main-color) 0%, #005d96 100%);
  position: relative;
  overflow: hidden;
}

.global-reach::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s linear infinite;
}

.region-card {
  transition: transform 0.3s ease;
}

.region-card:hover {
  transform: translateY(-5px);
}

.region-icon {
  font-size: 3rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.region-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.region-description {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* CTA Section */
.cta-content h2{
  font-size: 28px;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {

  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-marker {
    left: 20px;
    width: 80px;
    height: 80px;
  }

  .story-badge {
    width: 60px;
    height: 60px;
    top: 15px;
    right: 15px;
  }

  .floating-card {
    bottom: 15px;
    left: 15px;
  }

  .shape-1,
  .shape-2,
  .shape-3 {
    display: none;
  }

  .page-header {
    min-height: 50vh;
  }
}

@media (max-width: 576px) {
  
  .timeline-marker {
    width: 60px;
    height: 60px;
  }

  .timeline-year {
    font-size: 0.8rem;
  }

  .story-stats {
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .customer-quote {
    padding: 20px;
  }

  .result-card {
    padding: 20px 15px;
  }
}
