/* =============================== */
/* CEO PAGE CSS                    */
/* =============================== */

:root {
  --ceo-primary: #2563eb;
  --ceo-secondary: #1e40af;
  --ceo-accent: #7c3aed;
  --ceo-gold: #f59e0b;
  --ceo-dark: #0f172a;
  --ceo-light: #f8fafc;
  --ceo-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --ceo-gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
}

/* ========== HERO SECTION ========== */
.ceo-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ceo-gradient-dark);
}

.ceo-hero #ceo-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.ceo-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 1;
}

.ceo-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 99, 235, 0.3);
  border: 1px solid rgba(124, 58, 237, 0.5);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--ceo-gold);
}

.ceo-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #fff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-quote {
  font-size: 1.4rem;
  font-style: italic;
  opacity: 0.9;
  color: #c7d2fe;
  font-weight: 300;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--ceo-gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}

/* ========== CEO MESSAGE SECTION ========== */
.ceo-message-section {
  padding: 120px 5%;
  background: #fff;
}

.ceo-message-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.ceo-card {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
  align-items: start;
}

/* CEO Photo */
.ceo-photo-container {
  position: sticky;
  top: 120px;
}

.photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.ceo-photo {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.photo-frame:hover .ceo-photo {
  transform: scale(1.05);
}

.photo-decoration {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(15, 23, 42, 0.8) 100%
  );
  pointer-events: none;
}


.ceo-info {
  text-align: center;
  margin-top: 25px;
}

.ceo-info h3 {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 8px;
}

.ceo-name {
  font-size: 2rem;
  font-weight: 800;
  background: var(--ceo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.ceo-signature {
  margin: 0 auto;
  padding: 15px 0;
  max-width: 180px;
}

.signature-img {
  width: 100%;
  height: auto;
  display: block;
  animation: signatureFade 3s ease-in-out infinite;
}

@keyframes signatureFade {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* CEO Message Content */
.ceo-message-content {

}

.message-header {
  margin-bottom: 40px;
}

.quote-icon {
  width: 60px;
  height: 60px;
  background: var(--ceo-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.message-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ceo-dark);
  line-height: 1.5;
}

.message-header .highlight {
  color: var(--ceo-primary);
}

.message-body p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 2;
  margin-bottom: 25px;
}

.message-body strong {
  color: var(--ceo-dark);
  font-weight: 600;
}

.message-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.signature-line {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
}

.signature-line span {
  color: #64748b;
}

.signature-line strong {
  font-size: 1.5rem;
  background: var(--ceo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== ACHIEVEMENTS SECTION ========== */
.ceo-achievements-section {
  padding: 100px 5%;
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
}

.ceo-achievements-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-badge {
  display: inline-block;
  background: var(--ceo-gradient);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-badge.light {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ceo-dark);
}

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

.achievement-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
  border-color: var(--ceo-primary);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--ceo-gold);
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.achievement-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ceo-dark);
  margin-bottom: 8px;
}

.achievement-content p {
  font-size: 0.95rem;
  color: #64748b;
}

/* ========== VISION SECTION ========== */
.ceo-vision-section {
  padding: 120px 5%;
  background: var(--ceo-gradient-dark);
  color: #fff;
}

.ceo-vision-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.vision-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 15px 0 25px;
}

.vision-quote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  opacity: 0.9;
  color: #c7d2fe;
}

.vision-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.vision-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(10px);
}

.vision-icon {
  width: 60px;
  height: 60px;
  background: var(--ceo-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.vision-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.vision-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ========== PHILOSOPHY SECTION ========== */
.ceo-philosophy-section {
  padding: 100px 5%;
  background: #fff;
}

.ceo-philosophy-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

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

.philosophy-item {
  position: relative;
  padding: 40px 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
}

.philosophy-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--ceo-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.philosophy-item:hover::before {
  transform: scaleX(1);
}

.philosophy-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
}

.philosophy-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.philosophy-item:hover .philosophy-number {
  background: var(--ceo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.philosophy-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ceo-dark);
  margin-bottom: 15px;
}

.philosophy-content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .ceo-hero h1 {
    font-size: 2.8rem;
  }

  .ceo-card {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ceo-photo-container {
    position: relative;
    top: 0;
    max-width: 350px;
    margin: 0 auto;
  }

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

  .vision-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vision-text {
    text-align: center;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .ceo-hero {
    min-height: 60vh;
  }

  .ceo-hero h1 {
    font-size: 2rem;
  }

  .hero-quote {
    font-size: 1.1rem;
  }

  .message-header h2 {
    font-size: 1.5rem;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .vision-text h2,
  .section-header h2 {
    font-size: 1.8rem;
  }

  .vision-quote {
    font-size: 1.1rem;
  }

}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .ceo-name {
    font-size: 1.6rem;
  }

  .message-body p {
    font-size: 1rem;
  }

  .vision-card {
    flex-direction: column;
    text-align: center;
  }

  .vision-icon {
    margin: 0 auto;
  }
}
