/* Base Styles */
.ceo-body {
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  background-color: #0a192f;
  color: #e6f1ff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background Elements */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.corporate-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(100, 255, 218, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 255, 218, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  opacity: 0.3;
}

/* Main Container */
.ceo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease;
}

/* Hero Section */
.ceo-hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10,25,47,0.8), rgba(10,25,47,0.95));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
}

.ceo-portrait {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.portrait-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(30%);
  border: 2px solid rgba(100, 255, 218, 0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: all 0.5s ease;
}

.portrait-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px dashed rgba(255, 215, 0, 0.5);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.portrait-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a192f;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-name {
  font-size: 4rem;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.2;
}

.hero-name span {
  display: block;
  background: linear-gradient(90deg, #e6f1ff, #64ffda);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title {
  font-size: 1.5rem;
  color: #8892b0;
}

.title-main {
  display: block;
  font-weight: 600;
  color: #64ffda;
}

.title-sub {
  font-style: italic;
}

/* Leadership Dashboard */
.leadership-dashboard {
  background: rgba(23, 42, 69, 0.7);
  border-radius: 20px;
  padding: 40px;
  margin: 80px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 255, 218, 0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.metric-card {
  background: rgba(10, 25, 47, 0.5);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transition: all 0.5s ease;
}

.metric-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  border-color: rgba(100, 255, 218, 0.3);
}

.metric-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: #64ffda;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 1.1rem;
  color: #ccd6f6;
}

/* Timeline */
.achievements-timeline {
  margin: 80px 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, #64ffda, #0a192f);
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 50px;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #64ffda, #0a192f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a192f;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.timeline-content {
  background: rgba(23, 42, 69, 0.7);
  padding: 30px;
  border-radius: 10px;
  border-left: 3px solid #64ffda;
}

/* Philosophy Cards */
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.philosophy-card {
  background: rgba(23, 42, 69, 0.7);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s ease;
  border: 1px solid rgba(100, 255, 218, 0.1);
}

.philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: rgba(100, 255, 218, 0.3);
}

.card-icon {
  font-size: 2.5rem;
  color: #64ffda;
  margin-bottom: 20px;
}

/* Footer */
.executive-footer {
  margin-top: 100px;
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: rgba(23, 42, 69, 0.7);
  color: #64ffda;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 255, 218, 0.2);
}

.back-link:hover {
  background: rgba(100, 255, 218, 0.1);
  color: #ffffff;
}

.footer-signature {
  margin-top: 40px;
  font-style: italic;
  color: #8892b0;
}

.footer-signature .signature {
  font-family: 'Brush Script MT', cursive;
  font-size: 2rem;
  color: #64ffda;
  margin-top: 10px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-name {
    font-size: 3rem;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 40px;
  }
  
  .timeline-item {
    padding-left: 80px;
  }
  
  .timeline-year {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 2.5rem;
  }
  
  .portrait-image {
    width: 180px;
    height: 180px;
  }
  
  .portrait-badge {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}