/* assets/css/about.css */

/* Base Styles */
.about-page {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.video-play-button {
  background: #0066cc;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.video-play-button:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Scroll Prompt */
.scroll-prompt {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid white;
  border-radius: 15px;
  position: relative;
  margin-bottom: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

.prompt-text {
  font-size: 0.9rem;
}

@keyframes scroll {
  0% { top: 8px; opacity: 1; }
  50% { top: 15px; opacity: 0.5; }
  100% { top: 8px; opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* Section Blocks */
.section-block {
  padding: 80px 0;
  position: relative;
}

.section-block:nth-child(even) {
  background: #f9f9f9;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0066cc;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #0066cc;
}

.section-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: #555;
}

/* Timeline */
.vision-timeline {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0066cc;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-items {
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 30px;
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 30px;
  margin-right: 0;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid #0066cc;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.timeline-content {
  width: calc(50% - 50px);
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-content h4 {
  margin-top: 0;
  color: #0066cc;
}

.timeline-content p {
  margin-bottom: 0;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.stat-item {
  background: white;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.stat-icon {
  font-size: 2rem;
  color: #0066cc;
}

/* World Map */
.world-map-container {
  margin: 60px 0;
}

.world-map {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.world-map img {
  width: 100%;
  height: auto;
  display: block;
}

.map-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #0066cc;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-marker::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(0, 102, 204, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

.map-marker:hover {
  transform: translate(-50%, -50%) scale(1.3);
}

.map-info {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: 20px auto 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Technology Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.tech-item {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tech-icon img {
  width: 30px;
  height: 30px;
}

.tech-item h3 {
  margin-top: 0;
  color: #0066cc;
}

.tech-details {
  color: #666;
  margin-bottom: 15px;
}

.tech-expanded {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 2;
}

.tech-item.expanded .tech-expanded {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tech-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0066cc;
}

.tech-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.tech-stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0066cc;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* Tech Demo */
.tech-demo {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.demo-description {
  flex: 1;
}

.demo-visual {
  flex: 1;
  position: relative;
}

.demo-placeholder {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.demo-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.demo-button {
  background: #0066cc;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.demo-button:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Features Tabs */
.features-tabs {
  margin-top: 40px;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-button {
  background: #e6f0fa;
  color: #0066cc;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-button.active {
  background: #0066cc;
  color: white;
}

.tab-button:hover:not(.active) {
  background: #cce0f5;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.feature-content {
  display: flex;
  gap: 40px;
}

.feature-text {
  flex: 1;
}

.feature-image {
  flex: 1;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.feature-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list i {
  color: #0066cc;
}

.feature-cta {
  background: #0066cc;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.feature-cta:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(0, 102, 204, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.hotspot:hover {
  transform: translate(-50%, -50%) scale(1.3);
  background: rgba(0, 102, 204, 1);
}

.hotspot-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
}

.dashboard-controls {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.dashboard-btn {
  background: #e6f0fa;
  color: #0066cc;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dashboard-btn:hover {
  background: #cce0f5;
}

/* Team Section */
.team-section {
  background: #f0f7ff;
}

.team-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  color: #0066cc;
  border: 1px solid #0066cc;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: #0066cc;
  color: white;
}

.filter-btn:hover:not(.active) {
  background: #e6f0fa;
}

.team-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #0066cc #f0f7ff;
}

.team-slider::-webkit-scrollbar {
  height: 8px;
}

.team-slider::-webkit-scrollbar-track {
  background: #f0f7ff;
  border-radius: 10px;
}

.team-slider::-webkit-scrollbar-thumb {
  background: #0066cc;
  border-radius: 10px;
}

.team-slide {
  min-width: 280px;
  flex: 0 0 auto;
}

.team-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 102, 204, 0.8);
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.team-social a {
  color: white;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.team-social a:hover {
  transform: translateY(-3px);
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  margin-top: 0;
  margin-bottom: 5px;
  color: #0066cc;
}

.position {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.bio {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn-profile {
  background: transparent;
  color: #0066cc;
  border: 1px solid #0066cc;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-profile:hover {
  background: #0066cc;
  color: white;
}

/* Testimonials */
.testimonials-section {
  background: #f9f9f9;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.testimonial-slide {
  min-width: 350px;
  flex: 0 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-author h4 {
  margin-bottom: 5px;
  color: #0066cc;
}

.testimonial-author p {
  margin-top: 0;
  color: #666;
  font-size: 0.9rem;
}

.testimonial-rating {
  color: #ffc107;
  margin-top: 10px;
}

.video-testimonials {
  margin-top: 60px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.video-thumbnail {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 204, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
  background: rgba(0, 102, 204, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  font-size: 1.1rem;
}

/* Clients Section */
.clients-section {
  padding: 60px 0;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  align-items: center;
}

.client-logos img {
  height: 50px;
  width: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.client-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.case-studies {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.case-study-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.case-tab {
  background: transparent;
  color: #0066cc;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-tab.active {
  background: #0066cc;
  color: white;
}

.case-tab:hover:not(.active) {
  background: #e6f0fa;
}

.case-content {
  display: none;
}

.case-content.active {
  display: block;
}

.read-case {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}

.read-case:hover {
  text-decoration: underline;
}

/* CTA Section */
.interactive-cta {
  background: #0066cc;
  color: white;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 60px;
}

.cta-content {
  padding: 40px;
}

.cta-content h2 {
  color: white;
  margin-top: 0;
}

.cta-form {
  margin-top: 30px;
  max-width: 500px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.cta-button {
  background: white;
  color: #0066cc;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.cta-button:hover {
  background: #e6f0fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button-loading {
  display: none;
}

.success-message {
  text-align: center;
  padding: 30px;
}

.success-message i {
  font-size: 3rem;
  color: #4bb543;
  margin-bottom: 20px;
}

.confirmation-details {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.cta-image {
  position: relative;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-highlights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.highlight {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.highlight-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #0066cc;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.highlight-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #0066cc;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  margin-bottom: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.highlight:hover .highlight-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .feature-content {
    flex-direction: column;
  }
  
  .tech-demo {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .vision-timeline {
    padding: 0;
  }
  
  .timeline-item {
    flex-direction: column;
    margin-bottom: 60px;
  }
  
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin: 20px 0 0 60px !important;
  }
  
  .timeline-dot {
    left: 30px;
    transform: translateX(0);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-buttons {
    flex-direction: column;
  }
  
  .case-study-tabs {
    flex-direction: column;
  }
  
  .interactive-cta {
    flex-direction: column;
  }
  
  .cta-content, .cta-image {
    width: 100%;
  }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}