/* About Page Specific Styles */

/* Hero Banner */
.about-hero-banner {
  background: linear-gradient(135deg, var(--primary-color), #0d2d87);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.about-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(18, 55, 161, 0.9), rgba(13, 45, 135, 0.8));
  z-index: 2;
}

.about-hero-banner .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

/* Company Slider */
.company-slider-section {
  position: relative;
  margin-bottom: 0;
}

.company-slider .slide-item {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.company-slider .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  color: white;
}

.slide-overlay h3 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.slide-overlay p {
  font-size: 18px;
  opacity: 0.9;
}

/* Overview Section */
.overview-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.overview-content h2 {
  color: var(--text-color);
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.overview-content .lead {
  font-size: 18px;
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 40px;
  line-height: 1.6;
}

.overview-highlights {
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), #0d2d87);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.highlight-content h4 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 20px;
}

.highlight-content p {
  color: var(--text-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.overview-stats {
  margin-top: 40px;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-box .stat-number {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-box .stat-label {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 14px;
}

/* Overview Video */
.overview-video {
  position: relative;
}

.video-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.video-wrapper iframe {
  border-radius: 15px;
}

.video-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  opacity: 0.8;
  font-size: 14px;
  justify-content: center;
}

.video-caption i {
  color: var(--primary-color);
  font-size: 18px;
}

/* Vision Section */
.vision-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.vision-section .container {
  position: relative;
  z-index: 2;
}

.vision-tabs {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tab-headers {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-color);
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex: 1;
  justify-content: center;
  min-width: 150px;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 55, 161, 0.3);
}

.tab-btn i {
  font-size: 18px;
}

.tab-content {
  min-height: 300px;
}

.tab-pane {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.tab-pane.active {
  display: block;
}

.tab-pane h3 {
  color: var(--text-color);
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.tab-pane p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tab-pane ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tab-pane li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 25px;
  color: var(--text-color);
  line-height: 1.6;
}

.tab-pane li:last-child {
  border-bottom: none;
}

.tab-pane li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* Leadership Section */
.leadership-section {
  padding: 80px 0;
  background: var(--card-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: var(--text-color);
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.leader-card {
  position: relative;
  background: var(--bg-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 400px;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.leader-image {
  height: 300px;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.1);
}

.leader-info {
  padding: 20px;
  text-align: center;
}

.leader-position {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leader-name {
  color: var(--text-color);
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.leader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(18, 55, 161, 0.95), rgba(13, 45, 135, 0.9));
  color: white;
  padding: 30px;
  transform: translateX(-100%);
  transition: all 0.5s ease;
  overflow-y: auto;
}

.leader-card:hover .leader-overlay {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.overlay-content .position {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bio p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.9;
}

.bio ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.bio li {
  padding: 5px 0;
  font-size: 13px;
  opacity: 0.8;
  position: relative;
  padding-left: 15px;
}

.bio li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* Achievements Section */
.achievements-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.achievements-slider .achievement-item {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 40px 30px;
  margin: 0 15px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.achievements-slider .achievement-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.achievement-year {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.achievement-content {
  text-align: center;
  position: relative;
}

.achievement-content h4 {
  color: var(--text-color);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

.achievement-content p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.achievement-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
  opacity: 0.1;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #000, var(--primary-color));
  color: white;
}

.cta-content h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin: 0;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-stats {
    gap: 40px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 36px;
  }
  
  .overview-content h2 {
    font-size: 32px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .tab-headers {
    flex-direction: column;
  }
  
  .tab-btn {
    flex: none;
    min-width: auto;
  }
  
  .leader-card {
    height: auto;
    margin-bottom: 30px;
  }
  
  .leader-overlay {
    position: static;
    transform: none;
    background: var(--card-bg);
    color: var(--text-color);
    padding: 20px;
  }
  
  .leader-overlay .overlay-content h4 {
    color: var(--text-color);
  }
  
  .social-links a {
    color: var(--primary-color);
    background: var(--bg-color);
    border: 1px solid var(--border-color);
  }
}

@media (max-width: 768px) {
  .about-hero-banner {
    padding: 80px 0;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .hero-stats {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .company-slider .slide-item {
    height: 300px;
  }
  
  .slide-overlay h3 {
    font-size: 28px;
  }
  
  .slide-overlay p {
    font-size: 16px;
  }
  
  .overview-section,
  .leadership-section,
  .achievements-section {
    padding: 60px 0;
  }
  
  .overview-content h2,
  .section-header h2 {
    font-size: 28px;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .tab-pane h3 {
    font-size: 24px;
  }
  
  .achievement-year {
    font-size: 36px;
  }
  
  .achievement-content h4 {
    font-size: 18px;
  }
  
  .cta-content h3 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .company-slider .slide-item {
    height: 250px;
  }
  
  .slide-overlay h3 {
    font-size: 24px;
  }
  
  .overview-section,
  .leadership-section,
  .achievements-section,
  .cta-section {
    padding: 50px 0;
  }
  
  .overview-content h2,
  .section-header h2 {
    font-size: 24px;
  }
  
  .highlight-item {
    padding: 20px;
  }
  
  .highlight-content h4 {
    font-size: 18px;
  }
  
  .tab-pane h3 {
    font-size: 20px;
  }
  
  .achievement-year {
    font-size: 28px;
  }
  
  .achievement-content h4 {
    font-size: 16px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
  
  .vision-tabs {
    padding: 20px;
  }
  
  .tab-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .achievements-slider .achievement-item {
    padding: 30px 20px;
    margin: 0 10px;
  }
}

/* Dark Theme Adjustments */
[data-theme="dark"] .about-hero-banner,
[data-theme="dark"] .overview-section,
[data-theme="dark"] .leadership-section,
[data-theme="dark"] .achievements-section {
  background: var(--bg-color);
}

[data-theme="dark"] .highlight-item,
[data-theme="dark"] .stat-box,
[data-theme="dark"] .leader-card,
[data-theme="dark"] .achievement-item,
[data-theme="dark"] .vision-tabs {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .slide-overlay {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
}

/* Animation Effects */
.about-hero-banner {
  animation: slideInDown 0.8s ease-out;
}

.overview-section .highlight-item {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.overview-section .highlight-item:nth-child(1) { animation-delay: 0.1s; }
.overview-section .highlight-item:nth-child(2) { animation-delay: 0.2s; }
.overview-section .highlight-item:nth-child(3) { animation-delay: 0.3s; }

.leader-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.leader-card:nth-child(1) { animation-delay: 0.1s; }
.leader-card:nth-child(2) { animation-delay: 0.2s; }
.leader-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print Styles */
@media print {
  .about-hero-banner,
  .company-slider-section,
  .cta-section,
  .navbar,
  .footer,
  .mobile-menu-overlay {
    display: none !important;
  }
  
  .overview-section,
  .leadership-section,
  .achievements-section {
    box-shadow: none;
    break-inside: avoid;
  }
  
  .leader-overlay {
    position: static;
    transform: none;
    background: white;
    color: black;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .highlight-item:hover,
  .stat-box:hover,
  .leader-card:hover {
    box-shadow: 0 0 0 2px #000;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .highlight-item,
  .stat-box,
  .leader-card,
  .achievement-item,
  .cta-buttons .btn { 
    transition: none;
  }
  
  .highlight-item:hover,
  .stat-box:hover,
  .leader-card:hover,
  .achievement-item:hover,
  .cta-buttons .btn:hover {
    transform: none;
  }
  
  .leader-overlay {
    transition: none;
  }
}