/* Reset and Base Styles */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body { 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
  line-height: 1.6; 
  color: #333; 
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 50%, #ecfdf5 100%); 
  min-height: 100vh; 
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px; 
}

/* Navigation Styles */
.navbar { 
  background: #0d9488; 
  padding: 0; 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
  position: sticky; 
  top: 0; 
  z-index: 50; 
}

.nav-content { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 16px 20px; 
  max-width: 1200px;
  margin: 0 auto;
}

.logo { 
  height: 120px; 
  width: auto; 
}

.nav-links { 
  display: flex; 
  list-style: none; 
  margin: 0; 
  gap: 40px; 
  flex: 1; 
  justify-content: center; 
}

.nav-links a { 
  color: white; 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 16px; 
  padding: 16px 20px; 
  border-bottom: 2px solid transparent; 
  transition: all 0.3s ease; 
}

.nav-links a:hover, 
.nav-links a.active { 
  color: #fbbf24; 
  border-bottom-color: #fbbf24; 
}

.book-chat { 
  height: 90px; 
  width: auto; 
  transition: opacity 0.3s ease; 
}

.book-chat:hover { 
  opacity: 0.8; 
}

/* Button Styles */
.btn { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  padding: 20px 40px; 
  font-size: 18px; 
  font-weight: 600; 
  border: none; 
  border-radius: 12px; 
  cursor: pointer; 
  text-decoration: none; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
}

.btn-primary { 
  background-color: #C0504D; 
  color: white; 
}

.btn-primary:hover { 
  background-color: #A03E3A; 
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2); 
  transform: translateY(-2px);
}

.btn-outline { 
  background-color: #A03E3A; 
  color: white; 
  border: 2px solid #A03E3A; 
}

.btn-outline:hover { 
  background-color: #C0504D; 
  color: white; 
  transform: translateY(-2px);
}

.btn-group { 
  display: flex; 
  justify-content: center; 
  gap: 20px; 
  flex-wrap: wrap; 
}

.btn-center { 
  display: flex; 
  justify-content: center; 
  gap: 20px; 
  flex-wrap: wrap; 
}

/* Common Card Styles */
.card { 
  background: white; 
  padding: 40px; 
  border-radius: 20px; 
  border: 1px solid #e5e7eb; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card:hover { 
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); 
  transform: translateY(-5px); 
}

.card h3 { 
  font-size: 22px; 
  font-weight: 700; 
  color: white; 
  margin-bottom: 20px; 
  background: #0d9488; 
  padding: 16px 20px; 
  border-radius: 12px; 
}

.card p { 
  color: #64748b; 
  margin-bottom: 12px; 
  line-height: 1.6;
}

/* Common Section Styles */
.section { 
  padding: 80px 0; 
  background: rgba(255, 255, 255, 0.8); 
  backdrop-filter: blur(16px); 
  border-radius: 24px; 
  border: 1px solid rgba(255, 255, 255, 0.5); 
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); 
  margin: 64px 0; 
}

.section h2 { 
  text-align: center; 
  font-size: 48px; 
  font-weight: 900; 
  color: #000; 
  margin-bottom: 64px; 
}

/* Common Page Header Styles */
.page-header { 
  text-align: center; 
  margin-bottom: 80px; 
  padding: 120px 0; 
  border-radius: 0; 
  overflow: hidden; 
  position: relative; 
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.page-header-content { 
  position: relative; 
  z-index: 10; 
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-header h1 { 
  font-size: 64px; 
  font-weight: 900; 
  color: #000; 
  margin-bottom: 24px; 
  text-shadow: 2px 2px 4px rgba(255,255,255,0.8); 
}

.page-header p { 
  font-size: 22px; 
  color: #000; 
  margin-bottom: 40px; 
  max-width: 800px; 
  margin-left: auto; 
  margin-right: auto; 
  text-shadow: 1px 1px 2px rgba(255,255,255,0.8); 
  font-weight: 500;
}

/* Background variations for different pages */
.programme-header { 
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('images/ai-programme-process.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: white;
}

.programme-header h1,
.programme-header p { 
  color: white; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); 
}

.programme-header .btn-outline { 
  background-color: rgba(255, 255, 255, 0.1); 
  color: white; 
  border: 2px solid rgba(255, 255, 255, 0.3); 
  backdrop-filter: blur(10px);
}

.programme-header .btn-outline:hover { 
  background-color: rgba(255, 255, 255, 0.2); 
  border-color: rgba(255, 255, 255, 0.5);
}

.about-header {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('images/about-team-training.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: white;
}

.about-header h1,
.about-header p { 
  color: white; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); 
}

.about-header .btn-outline { 
  background-color: rgba(255, 255, 255, 0.1); 
  color: white; 
  border: 2px solid rgba(255, 255, 255, 0.3); 
  backdrop-filter: blur(10px);
}

.about-header .btn-outline:hover { 
  background-color: rgba(255, 255, 255, 0.2); 
  border-color: rgba(255, 255, 255, 0.5);
}

.training-header {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('images/ai-training-presentation.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: white;
}

.training-header h1,
.training-header p { 
  color: white; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); 
}

.training-header .btn-outline { 
  background-color: rgba(255, 255, 255, 0.1); 
  color: white; 
  border: 2px solid rgba(255, 255, 255, 0.3); 
  backdrop-filter: blur(10px);
}

.training-header .btn-outline:hover { 
  background-color: rgba(255, 255, 255, 0.2); 
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-header {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('images/ai-phone-technology.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: white;
}

.contact-header h1,
.contact-header p { 
  color: white; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); 
}

.contact-header .btn-outline { 
  background-color: rgba(255, 255, 255, 0.1); 
  color: white; 
  border: 2px solid rgba(255, 255, 255, 0.3); 
  backdrop-filter: blur(10px);
}

.contact-header .btn-outline:hover { 
  background-color: rgba(255, 255, 255, 0.2); 
  border-color: rgba(255, 255, 255, 0.5);
}

/* Common List Styles */
.feature-list { 
  list-style: none; 
}

.feature-list li { 
  padding: 8px 0; 
  color: #374151; 
  font-size: 16px;
  display: flex;
  align-items: center;
}

.feature-list li:before { 
  content: '✓'; 
  color: #10b981; 
  font-weight: bold; 
  margin-right: 12px; 
  font-size: 18px;
  width: 20px;
  flex-shrink: 0;
}

/* Form Styles */
.form-group { 
  margin-bottom: 24px; 
}

.form-group label { 
  display: block; 
  margin-bottom: 8px; 
  font-weight: 600; 
  color: #374151; 
}

.form-group input, 
.form-group textarea { 
  width: 100%; 
  padding: 16px; 
  border: 1px solid #d1d5db; 
  border-radius: 8px; 
  font-size: 16px; 
  transition: border-color 0.3s ease; 
}

.form-group input:focus, 
.form-group textarea:focus { 
  outline: none; 
  border-color: #0d9488; 
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1); 
}

.form-group textarea { 
  min-height: 120px; 
  resize: vertical; 
}

/* Timeline Styles (for programme page) */
.timeline-item { 
  background: white; 
  margin-bottom: 40px; 
  padding: 40px; 
  border-radius: 20px; 
  border: 1px solid #e5e7eb; 
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); 
  transition: all 0.3s ease;
  position: relative;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.phase-number { 
  background: linear-gradient(135deg, #14b8a6, #10b981); 
  color: white; 
  border-radius: 50%; 
  width: 60px; 
  height: 60px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 900; 
  font-size: 24px;
  margin-bottom: 24px; 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.timeline-item h3 { 
  font-size: 28px; 
  font-weight: 700; 
  color: #0f172a; 
  margin-bottom: 20px; 
  line-height: 1.3;
}

.timeline-item p { 
  color: #64748b; 
  margin-bottom: 24px; 
  font-size: 18px;
  line-height: 1.6;
}

.deliverables { 
  list-style: none; 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.deliverables li { 
  padding: 8px 0; 
  color: #374151; 
  font-size: 16px;
  display: flex;
  align-items: center;
}

.deliverables li:before { 
  content: '✓'; 
  color: #10b981; 
  font-weight: bold; 
  margin-right: 12px; 
  font-size: 16px;
  width: 16px;
  flex-shrink: 0;
}

/* Team Styles (for about page) */
.team-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); 
  gap: 64px; 
}

.team-member { 
  text-align: center; 
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.team-member h3 { 
  font-size: 32px; 
  font-weight: 900; 
  color: #0f172a; 
  margin-bottom: 8px; 
}

.team-member .role { 
  font-size: 20px; 
  color: #0d9488; 
  font-weight: 700; 
  margin-bottom: 24px; 
}

.team-member p { 
  color: #374151; 
  margin-bottom: 16px; 
  text-align: left; 
  line-height: 1.7;
  font-size: 16px;
}

.team-stats { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 16px; 
  margin-top: 32px; 
}

.team-stat { 
  text-align: center; 
  padding: 20px 16px; 
  background: #f0fdfa; 
  border-radius: 12px; 
  border: 1px solid #ccfbf1;
}

.team-stat .number { 
  font-size: 28px; 
  font-weight: 900; 
  color: #0d9488; 
  margin-bottom: 4px;
}

.team-stat .label { 
  font-size: 12px; 
  color: #64748b; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  font-weight: 600;
}

/* Services Grid - Updated for 3x2 grid layout */
.services-grid { 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card { 
  background: white; 
  padding: 40px; 
  border-radius: 20px; 
  border: 1px solid #e5e7eb; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-card:hover { 
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); 
  transform: translateY(-5px); 
}

.service-card h3 { 
  font-size: 24px; 
  font-weight: 700; 
  color: white; 
  margin-bottom: 24px; 
  background: #0d9488; 
  padding: 20px 24px; 
  border-radius: 12px;
  line-height: 1.4;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-card p { 
  color: #64748b; 
  margin-bottom: 24px; 
  line-height: 1.7;
  font-size: 16px;
}

/* Stats Grid - Updated for single row layout */
.stats-grid { 
  display: flex; 
  justify-content: space-between; 
  gap: 20px; 
  margin-bottom: 60px; 
  flex-wrap: nowrap;
}

.stat-card { 
  background: #0d9488; 
  color: white; 
  padding: 50px 30px; 
  border-radius: 16px; 
  text-align: center; 
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex: 1;
  min-width: 200px;
}

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

.stat-number { 
  font-size: 56px; 
  font-weight: 900; 
  margin-bottom: 12px; 
}

.stat-label { 
  font-size: 18px; 
  opacity: 0.95; 
  font-weight: 600;
}

/* Contact Styles */
.contact { 
  padding: 80px 0; 
  background: rgba(255, 255, 255, 0.8); 
  backdrop-filter: blur(16px); 
  border-radius: 24px; 
  border: 1px solid rgba(255, 255, 255, 0.5); 
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); 
  margin: 64px 0; 
  position: relative;
}

.contact h2 { 
  text-align: center; 
  font-size: 48px; 
  font-weight: 900; 
  color: #000; 
  margin-bottom: 64px; 
}

.contact-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 24px; 
  margin-bottom: 60px; 
}

.contact-card { 
  background: white; 
  padding: 32px; 
  border-radius: 16px; 
  border: 1px solid #e5e7eb; 
  text-align: center; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-card:hover { 
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); 
  transform: translateY(-2px); 
}

.contact-card h3 { 
  font-size: 20px; 
  font-weight: bold; 
  color: white; 
  margin-bottom: 16px; 
  background: #0d9488; 
  padding: 12px 16px; 
  border-radius: 8px; 
}

.contact-card p { 
  color: #64748b; 
  margin-bottom: 8px; 
  line-height: 1.5;
}

.contact-form { 
  max-width: 600px; 
  margin: 0 auto; 
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
  background: #1f2937;
  color: white;
  padding: 60px 0 40px 0;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #fbbf24;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.footer-section p {
  margin-bottom: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-section ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 30px;
  text-align: center;
  opacity: 0.8;
}

/* Skip Link Styles */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #0d9488;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 400px;
  padding: 16px 20px;
  border-radius: 8px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  animation: slideIn 0.3s ease;
}

.notification-success {
  background-color: #10b981;
}

.notification-error {
  background-color: #ef4444;
}

.notification-info {
  background-color: #3b82f6;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  margin-left: 16px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.notification-close:hover {
  opacity: 1;
}

.notification.fade-out {
  animation: slideOut 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    flex-wrap: wrap;
  }
  
  .stat-card {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) { 
  .nav-links { 
    display: none; 
  } 
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0d9488;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.mobile-active {
    max-height: 400px;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .page-header h1 { 
    font-size: 42px; 
  } 

  .page-header p {
    font-size: 18px;
  }
  
  .section h2 { 
    font-size: 36px; 
  } 
  
  .btn { 
    padding: 16px 32px; 
    font-size: 16px; 
  }
  
  .logo { 
    height: 80px; 
  }
  
  .book-chat { 
    height: 60px; 
  }

  .team-grid { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }

  .services-grid { 
    grid-template-columns: 1fr;
    gap: 20px; 
  }
  
  .stats-grid { 
    flex-direction: column;
    gap: 20px; 
  } 
  
  .stat-card {
    min-width: 100%;
  }

  .contact h2 { 
    font-size: 36px; 
  } 
  
  .contact-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px; 
  }

  .timeline-item {
    padding: 30px 20px;
  }

  .timeline-item h3 {
    font-size: 24px;
  }

  .deliverables {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-group .btn {
    width: 100%;
    max-width: 300px;
  }

  .page-header {
    background-attachment: scroll !important;
  }
}

@media (max-width: 480px) {
  .services-grid { 
    grid-template-columns: 1fr;
  }
  
  .stats-grid { 
    flex-direction: column;
  }
  
  .contact-grid { 
    grid-template-columns: 1fr; 
  }

  .page-header h1 {
    font-size: 36px;
  }

  .timeline-item {
    padding: 25px 15px;
  }

  .phase-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .logo { 
    height: 60px; 
  }

  .team-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}