/* ============================================
   Digital Morphix - Production Ready Styles
   ============================================ */

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

:root {
  /* Brand palette aligned with Digital Morphix logo */
  --primary-color: #0075ff;      /* Bright logo blue */
  --primary-dark: #0043a3;       /* Darker blue for hover/gradients */
  --primary-light: #3da0ff;      /* Softer blue accents */
  --accent-orange: #ff7a1a;      /* Logo orange dot */
  --text-dark: #111827;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-dark: #111827;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, #ffb347 100%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.section-padding {
  padding: 100px 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

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

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
}

img.logo-img {
  width: 80px;
  display: block;
  margin-left: 60px;
}

.logo span {
  color: var(--primary-color);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

nav a:not(.btn):hover {
  color: var(--primary-color);
}

nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

nav a:not(.btn):hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Hero Slider */
.hero-slider {
  height: 650px;
  min-height: 400px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease-in-out;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 108, 255, 0.85) 0%, rgba(0, 61, 153, 0.75) 100%);
  z-index: 1;
}

.slide[data-position="left"] .slide-overlay {
  background: linear-gradient(90deg, rgba(10, 108, 255, 0.9) 0%, rgba(0, 61, 153, 0.6) 50%, rgba(0, 61, 153, 0.2) 100%);
}

.slide[data-position="right"] .slide-overlay {
  background: linear-gradient(270deg, rgba(10, 108, 255, 0.9) 0%, rgba(0, 61, 153, 0.6) 50%, rgba(0, 61, 153, 0.2) 100%);
}

.slide .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.slide-content {
  max-width: 600px;
  padding: 30px 40px;
  position: relative;
  z-index: 3;
}

.slide-left {
  margin-right: auto;
  text-align: left;
}

.slide-right {
  margin-left: auto;
  text-align: right;
}

.hero-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.hero-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-left .hero-icon {
  margin-left: 0;
}

.slide-right .hero-icon {
  margin-left: auto;
}

.hero-icon svg {
  width: 36px;
  height: 36px;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  opacity: 0.95;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 1.75rem;
  opacity: 0.9;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
  width: 32px;
  border-radius: 6px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Brand Positioning Section */
.brand-positioning {
  background: var(--bg-light);
  min-height: 400px;
  position: relative;
  z-index: 1;
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.position-card {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.position-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.position-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
}

.position-icon svg {
  width: 32px;
  height: 32px;
}

.position-card h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.position-card p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.position-card ul {
  list-style: none;
  padding: 0;
}

.position-card ul li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-light);
}

.position-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Services Section */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(79, 93, 255, 0.1) 0%, rgba(10, 108, 255, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.service-icon svg {
  width: 36px;
  height: 36px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.service-card p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Why Choose Section */
.why-choose {
  background: var(--bg-dark);
  color: var(--white);
}

.why-choose .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.why-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--white);
}

.why-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

/* Training Highlight Section */
.training-highlight {
  background: var(--bg-light);
}

.training-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.training-text h2 {
  margin-bottom: 1.5rem;
}

.training-points {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.training-points li {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.training-points li:hover {
  border-left-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.check-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.training-points li strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.training-points li p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.training-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.training-card {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 450px;
}

.training-card h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-dark);
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.program-item {
  padding: 18px 24px;
  background: var(--bg-light);
  border-radius: 10px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.program-item:hover {
  background: var(--primary-color);
  color: var(--white);
  border-left-color: var(--primary-dark);
  transform: translateX(5px);
}

/* Stats Section */
.stats {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-number .plus,
.stat-number .percent {
  font-size: 3rem;
  opacity: 0.8;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials {
  background: var(--white);
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}

.testimonial-track {
  position: relative;
  min-height: 450px;
  height: 450px;
  overflow: hidden;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(50px);
  visibility: hidden;
  will-change: opacity, transform;
}

.testimonial.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}

.testimonial-content {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.quote-icon {
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: 'Georgia', serif;
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.author-info p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: var(--white);
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
}

/* Call To Action Section */
.cta {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  color: var(--white);
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

/* Footer */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 30px;
}

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

.footer-col h3,
.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.footer-logo {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-tagline {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.contact-alt {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .positioning-grid {
    grid-template-columns: 1fr;
  }
  
  .training-content {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
  
  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .logo-img {
    width: 32px;
    height: 32px;
    margin-right: 6px;
  }
  
  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
    font-size: 0.9rem;
  }
  
  nav a {
    padding: 6px 12px;
  }
  
  nav .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .social-links {
    justify-content: flex-start;
  }
  
  .social-links a {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  
  .slide-content {
    max-width: 100%;
    padding: 30px 20px;
    text-align: center !important;
  }
  
  .slide-left,
  .slide-right {
    margin: 0 auto;
    text-align: center !important;
  }
  
  .hero-slider {
    height: 400px;
    min-height: 350px;
  }
  
  .hero-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px !important;
  }
  
  .hero-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }
  
  .slider-controls {
    bottom: 15px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-track {
    min-height: 420px;
    height: 420px;
  }
  
  .testimonial-content {
    min-height: 350px;
  }
  
  .stat-number {
    font-size: 3.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
    color: var(--white);
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Footer adjustments */
  .footer {
    padding: 60px 0 25px;
  }
  
  .footer-col ul li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  /* Contact page */
  .contact-quick-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-field {
    width: 100%;
  }
  
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  
  .form-footer .btn {
    width: 100%;
  }
  
  .inquiry-type-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .inquiry-type-button {
    width: 100%;
  }
  
  .contact-hero-cta {
    flex-direction: column;
  }
  
  .contact-hero-cta .btn {
    width: 100%;
  }
  
  .visit-cta-buttons,
  .final-cta-buttons {
    flex-direction: column;
  }
  
  .visit-cta-buttons .btn,
  .final-cta-buttons .btn {
    width: 100%;
  }
  
  .hours-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  /* Office map */
  .map-placeholder {
    height: 300px;
  }
  
  .map-placeholder iframe {
    height: 300px !important;
  }
  
  /* Services page */
  .service-categories {
    grid-template-columns: 1fr;
  }
  
  .tech-categories {
    grid-template-columns: 1fr;
  }
  
  .engagement-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-grid-services {
    grid-template-columns: 1fr;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  /* Training page */
  .domains-grid {
    grid-template-columns: 1fr;
  }
  
  .why-train-grid {
    grid-template-columns: 1fr;
  }
  
  .methodology-steps {
    gap: 20px;
  }
  
  .training-tech-grid {
    grid-template-columns: 1fr;
  }
  
  .join-grid {
    grid-template-columns: 1fr;
  }
  
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  
  .career-grid {
    grid-template-columns: 1fr;
  }
  
  .infra-grid {
    grid-template-columns: 1fr;
  }
  
  /* Insights page */
  .insights-category-grid {
    grid-template-columns: 1fr;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .research-list {
    flex-direction: column;
  }
  
  .research-item {
    width: 100%;
  }
  
  .tags-cloud {
    gap: 8px;
  }
  
  .tags-cloud span {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  
  .newsletter-form input[type="email"] {
    width: 100%;
    max-width: 100%;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  .insights-final-cta-buttons {
    flex-direction: column;
  }
  
  .insights-final-cta-buttons .btn {
    width: 100%;
  }
  
  /* About page */
  .who-we-are-content {
    grid-template-columns: 1fr;
  }
  
  .vmv-grid {
    grid-template-columns: 1fr;
  }
  
  .different-grid {
    grid-template-columns: 1fr;
  }
  
  .approach-steps {
    gap: 20px;
  }
  
  .model-content {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .client-logos .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .header {
    padding: 12px 0;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  .logo-img {
    width: 28px;
    height: 28px;
    margin-right: 5px;
  }
  
  nav {
    gap: 0.5rem;
    font-size: 0.85rem;
  }
  
  nav a {
    padding: 5px 10px;
  }
  
  nav .btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
  
  .container {
    padding: 0 15px;
  }
  .hero-slider {
    height: 380px;
    min-height: 350px;
  }
  
  .hero-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px !important;
  }
  
  .hero-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  
  .hero-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  .slide-content {
    padding: 20px 15px;
  }
  
  .slider-controls {
    bottom: 10px;
  }
  
  .cta-title {
    font-size: 1.75rem;
    color: var(--white);
  }
  
  .cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
  }
  
  .position-card,
  .service-card {
    padding: 30px;
  }
  
  .testimonial-track {
    min-height: 380px;
    height: 380px;
  }
  
  .testimonial-content {
    padding: 30px;
    min-height: 320px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
  
  /* Stats Grid - Single column on very small screens */
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  /* Footer */
  .footer {
    padding: 50px 0 20px;
  }
  
  .footer-col h4 {
    font-size: 1.1rem;
  }
  
  .social-links {
    gap: 8px;
  }
  
  .social-links a {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  
  /* Contact page */
  .contact-hero-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .contact-quick-card {
    padding: 20px;
  }
  
  .office-address {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .map-placeholder {
    height: 250px;
  }
  
  .map-placeholder iframe {
    height: 250px !important;
  }
  
  /* Services page */
  .services-hero-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .service-detail-text h3 {
    font-size: 1.5rem;
  }
  
  .process-step-content {
    padding: 25px;
  }
  
  /* Training page */
  .training-hero-tags {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .training-hero-tags span {
    font-size: 0.85rem;
  }
  
  .domain-card {
    padding: 20px;
  }
  
  /* Insights page */
  .insights-hero-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .insights-hero-cta {
    flex-direction: column;
  }
  
  .insights-hero-cta .btn {
    width: 100%;
  }
  
  .article-card {
    padding: 20px;
  }
  
  .article-thumb {
    height: 150px;
  }
  
  .research-thumb {
    height: 150px;
  }
  
  /* About page */
  .about-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .hero-stat-number {
    font-size: 2rem;
  }
  
  .trust-stats {
    grid-template-columns: 1fr;
  }
  
  .client-logos .logos-grid {
    grid-template-columns: 1fr;
  }
  
  /* General adjustments */
  .section-padding {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .btn-large {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  /* Ensure all buttons are touch-friendly */
  .btn,
  .btn-primary,
  .btn-outline {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Improve touch targets */
  nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Improve text readability on mobile */
  p, li, span {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Table responsive */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Smooth Animations */
[data-animate] {
  opacity: 0;
  will-change: opacity, transform;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   About Page Styles
   ============================================ */

/* About Hero */
.about-hero {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.about-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}

.hero-stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Who We Are */
.who-we-are {
  background: var(--white);
}

.who-we-are-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.who-we-are-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.who-we-are-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: var(--bg-light);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border: 2px dashed var(--border-color);
}

.image-placeholder svg {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  opacity: 0.5;
}

/* Vision Mission Values */
.vision-mission {
  background: var(--bg-light);
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.vmv-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.vmv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.vmv-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
}

.vmv-icon svg {
  width: 40px;
  height: 40px;
}

.vmv-card h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.vmv-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.values-list {
  list-style: none;
  text-align: left;
  padding: 0;
}

.values-list li {
  padding: 10px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

/* Journey Timeline */
.journey-timeline {
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
  position: absolute;
  left: -120px;
  top: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  width: 80px;
  text-align: right;
}

.timeline-content {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* What Makes Us Different */
.what-makes-different {
  background: var(--bg-dark);
  color: var(--white);
}

.what-makes-different .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.what-makes-different .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.different-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.different-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.different-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.different-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--white);
}

.different-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Our Approach */
.our-approach {
  background: var(--white);
}

.approach-steps {
  max-width: 900px;
  margin: 60px auto 0;
}

.approach-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.approach-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.step-content {
  flex: 1;
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Software + Training Model */
.software-training-model {
  background: var(--bg-light);
}

.model-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.model-diagram {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.model-box {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  min-width: 200px;
  border: 2px solid var(--border-color);
}

.model-box h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--text-dark);
  text-align: center;
}

.model-box ul {
  list-style: none;
  padding: 0;
}

.model-box ul li {
  padding: 8px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.model-box ul li:last-child {
  border-bottom: none;
}

.software-box {
  border-color: var(--primary-color);
}

.training-box {
  border-color: var(--accent-orange);
}

.result-box {
  border-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.model-arrow {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.result-arrow {
  color: #10b981;
  font-size: 2.5rem;
}

.model-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.model-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 30px;
}

.model-benefits {
  margin: 30px 0;
}

.model-benefit {
  padding: 16px;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 12px;
  border-left: 4px solid var(--primary-color);
}

.model-benefit strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 6px;
}

.model-benefit {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Leadership Team */
.leadership-team {
  background: var(--white);
}

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

.team-member {
  text-align: center;
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 20px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1rem;
}

.member-bio {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.member-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.member-social a {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--border-color);
}

.member-social a:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

/* Trust Signals */
.trust-signals {
  background: var(--bg-light);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.trust-stat-item {
  text-align: center;
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.trust-stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.trust-stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.client-logos {
  margin: 80px 0;
  text-align: center;
}

.client-logos h3 {
  font-size: 1.75rem;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.client-logo {
  background: var(--white);
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  font-weight: 600;
  transition: var(--transition);
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.trust-testimonials {
  margin-top: 80px;
}

.trust-testimonials h3 {
  font-size: 1.75rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-dark);
}

.trust-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.trust-testimonial {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
}

.trust-quote {
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.trust-testimonial p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  font-size: 1.05rem;
}

.trust-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-author strong {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.trust-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.5rem;
  }
  
  .about-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .who-we-are-content {
    grid-template-columns: 1fr;
  }
  
  .vmv-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    padding-left: 30px;
  }
  
  .timeline-year {
    position: static;
    width: auto;
    text-align: left;
    margin-bottom: 12px;
  }
  
  .timeline-item {
    padding-left: 0;
  }
  
  .timeline-item::before {
    left: -38px;
  }
  
  .approach-step {
    flex-direction: column !important;
  }
  
  .step-number {
    align-self: flex-start;
  }
  
  .model-content {
    grid-template-columns: 1fr;
  }
  
  .model-diagram {
    flex-direction: column;
  }
  
  .model-arrow {
    transform: rotate(90deg);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 80px 0 60px;
  }
  
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-stats {
    grid-template-columns: 1fr;
  }
  
  .trust-testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Services Page Styles
   ============================================ */

/* Services Hero */
.services-hero {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px;
}

.services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.services-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.services-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
}

.services-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.services-hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  opacity: 0.95;
}

.hero-feature svg {
  width: 20px;
  height: 20px;
}

.services-hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services Overview */
.services-overview {
  background: var(--white);
}

.service-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.category-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(79, 93, 255, 0.1) 0%, rgba(10, 108, 255, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary-color);
}

.category-icon svg {
  width: 36px;
  height: 36px;
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.category-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.category-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.category-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Core Services Detail */
.core-services {
  background: var(--bg-light);
}

.service-detail-section {
  margin-bottom: 80px;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-detail-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-content.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-detail-content.reverse > * {
  direction: ltr;
}

.service-detail-text h3 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.service-detail-text > p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 30px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-features li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-light);
  font-size: 1.05rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.service-benefits {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.service-benefits strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.service-benefits p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

.service-visual-box {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.service-visual-box h4 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--text-dark);
  text-align: center;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tech-tags span {
  background: var(--bg-light);
  padding: 10px 20px;
  border-radius: 8px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.tech-tags span:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Development Process */
.development-process {
  background: var(--white);
}

.process-steps {
  max-width: 900px;
  margin: 60px auto 0;
}

.process-step {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.process-step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.process-step-content {
  flex: 1;
  background: var(--bg-light);
  padding: 40px;
  border-radius: 16px;
  border-left: 4px solid var(--primary-color);
}

.process-step-content h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.process-step-content > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.process-step-content ul {
  list-style: none;
  padding: 0;
}

.process-step-content ul li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-light);
}

.process-step-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Tools & Technologies */
.tools-technologies {
  background: var(--bg-light);
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.tech-category {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.tech-category h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--text-dark);
  text-align: center;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tech-item {
  background: var(--bg-light);
  padding: 12px 24px;
  border-radius: 8px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.tech-item:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Engagement Models */
.engagement-models {
  background: var(--white);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.engagement-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.engagement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.engagement-card.featured {
  background: var(--white);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.engagement-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.engagement-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.engagement-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
}

.engagement-icon svg {
  width: 40px;
  height: 40px;
}

.engagement-card h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.engagement-price {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 1rem;
}

.engagement-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.engagement-features li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-light);
}

.engagement-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Why Choose Services */
.why-choose-services {
  background: var(--bg-dark);
  color: var(--white);
}

.why-choose-services .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-services .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.why-choose-grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.why-choose-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.why-choose-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.why-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
}

.why-choose-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
}

.why-choose-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Industries */
.industries {
  background: var(--bg-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.industry-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.industry-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1;
}

.industry-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.industry-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Services CTA */
.services-cta {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.services-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.services-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.services-cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.services-cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.services-cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  opacity: 0.95;
}

.cta-feature-item svg {
  width: 20px;
  height: 20px;
}

.services-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Styles for Services Page */
@media (max-width: 768px) {
  .services-hero-title {
    font-size: 2.5rem;
  }
  
  .services-hero-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .service-categories {
    grid-template-columns: 1fr;
  }
  
  .service-detail-content {
    grid-template-columns: 1fr;
  }
  
  .service-detail-content.reverse {
    direction: ltr;
  }
  
  .process-step {
    flex-direction: column;
    gap: 20px;
  }
  
  .process-step-number {
    align-self: flex-start;
  }
  
  .tech-categories {
    grid-template-columns: 1fr;
  }
  
  .engagement-grid {
    grid-template-columns: 1fr;
  }
  
  .engagement-card.featured {
    transform: scale(1);
  }
  
  .why-choose-grid-services {
    grid-template-columns: 1fr;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-cta-title {
    font-size: 2rem;
  }
  
  .services-cta-features {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 80px 0 60px;
  }
  
  .services-hero-title {
    font-size: 2rem;
  }
  
  .service-detail-text h3 {
    font-size: 1.75rem;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .services-cta-title {
    font-size: 1.75rem;
  }
}

/* ============================================
   Training Page Styles
   ============================================ */

/* Training Hero */
.training-hero {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px;
}

.training-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23dots)\"/></svg>');
  opacity: 0.3;
}

.training-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.training-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
}

.training-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.training-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.training-hero-tags span {
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.training-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Why Train */
.why-train {
  background: var(--white);
}

.why-train-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.why-train-card {
  background: var(--bg-light);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-train-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.why-train-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.why-train-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Training Domains */
.training-domains {
  background: var(--bg-light);
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.domain-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.domain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.domain-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.domain-card p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.domain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.domain-tags span {
  background: var(--bg-light);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Training Methodology */
.training-methodology {
  background: var(--white);
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.method-step {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.method-number {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.method-text h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.method-text p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

/* Training Tools */
.training-tools {
  background: var(--bg-light);
}

.training-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.training-tech-card {
  background: var(--white);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.training-tech-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--text-dark);
  text-align: center;
}

.tech-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tech-tag-list span {
  background: var(--bg-light);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Who Can Join */
.who-can-join {
  background: var(--white);
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.join-card {
  background: var(--bg-light);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.join-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.join-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.join-card p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Learning Outcomes */
.learning-outcomes {
  background: var(--bg-light);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.outcome-card {
  background: var(--white);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.outcome-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.outcome-card p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Career Support */
.career-support {
  background: var(--white);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.career-card {
  background: var(--bg-light);
  padding: 26px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.career-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.career-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.career-card p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Infrastructure */
.infrastructure {
  background: var(--bg-light);
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.infra-card {
  background: var(--white);
  padding: 26px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.infra-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.infra-card p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* FAQs */
.training-faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.faq-item {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.faq-item p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Training CTA */
.training-cta {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.training-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width=\"100\" height=\"100\" xmlns=\"http://www.w3.org/2000/svg\"><defs><pattern id=\"dots\" width=\"20\" height=\"20\" patternUnits=\"userSpaceOnUse\"><circle cx=\"10\" cy=\"10\" r=\"1\" fill=\"rgba(255,255,255,0.1)\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23dots)\"/></svg>');
  opacity: 0.3;
}

.training-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.training-cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.training-cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.training-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive for Training Page */
@media (max-width: 768px) {
  .training-hero {
    padding: 90px 0 70px;
  }
  .training-hero-title {
    font-size: 2.5rem;
  }
  .training-hero-subtitle {
    font-size: 1.1rem;
  }
  .training-hero-tags {
    gap: 10px;
  }
  .training-cta-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .training-hero-title {
    font-size: 2rem;
  }
  .training-hero-subtitle {
    font-size: 1rem;
  }
  .training-cta-title {
    font-size: 1.8rem;
  }
  .training-cta-subtitle {
    font-size: 1rem;
  }
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-hero {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 180px 0 90px;
}

.contact-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.contact-hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.contact-hero-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

.contact-hero-meta span::before {
  content: "•";
  margin-right: 6px;
}

.contact-quick {
  background: var(--white);
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.contact-quick-card {
  background: var(--bg-light);
  padding: 26px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
}

.contact-quick-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-quick-card p {
  color: var(--text-light);
  margin-bottom: 10px;
}

.contact-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-quick-card .contact-alt {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-quick-card .contact-alt .contact-link {
  font-weight: 500;
}

.inquiry-selector {
  margin-top: 20px;
  margin-bottom: 20px;
}

.inquiry-label {
  font-weight: 600;
  margin-bottom: 10px;
}

.inquiry-type-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inquiry-type-button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.inquiry-type-button.active,
.inquiry-type-button:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.contact-form-wrapper {
  margin-top: 20px;
}

.contact-form {
  background: var(--white);
  padding: 30px 24px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-field label span {
  color: #ef4444;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px rgba(79, 93, 255, 0.2);
}

.form-field textarea {
  resize: vertical;
}

.form-footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.checkbox input {
  width: 16px;
  height: 16px;
}

.form-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.office-details {
  background: var(--bg-light);
}

.office-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.office-info h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.office-address,
.office-contact {
  color: var(--text-light);
  line-height: 1.7;
}

.map-placeholder {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  background: var(--white);
  border: 1px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.95rem;
}

.visit-cta {
  background: var(--white);
}

.visit-cta-content {
  text-align: center;
}

.visit-cta-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.visit-cta-subtitle {
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  color: var(--text-light);
}

.visit-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Make outline button visible on light background inside visit-cta */
.visit-cta .btn.btn-outline {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.visit-cta .btn.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.business-hours {
  background: var(--bg-light);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.hours-column {
  background: var(--white);
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.hours-column p:first-child {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.hours-column p:last-child {
  color: var(--text-light);
  margin: 0;
}

.contact-faq {
  background: var(--white);
}

.final-cta {
  background: var(--gradient-primary);
  color: var(--white);
}

.final-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.final-cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 90px 0 70px;
  }
  .contact-hero-title {
    font-size: 2.4rem;
  }
  .contact-hero-subtitle {
    font-size: 1.05rem;
  }
  .office-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 2rem;
  }
  .contact-hero-subtitle {
    font-size: 0.95rem;
  }
}

/* ============================================
   Insights Page Styles
   ============================================ */

.insights-hero {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 180px 0 90px;
}

.insights-hero-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.insights-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.insights-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.insights-hero-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.insights-hero-meta span::before {
  content: "•";
  margin-right: 6px;
}

.insights-hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.featured-insight {
  background: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.1fr;
  gap: 40px;
  align-items: flex-start;
}

.featured-text h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.featured-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.featured-points {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.featured-points li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-light);
}

.featured-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 117, 255, 0.08);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.featured-meta {
  display: grid;
  gap: 12px;
}

.featured-meta-card {
  background: var(--bg-light);
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.meta-value {
  font-weight: 600;
  color: var(--text-dark);
}

.text-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.text-link:hover {
  text-decoration: underline;
}

.insights-categories {
  background: var(--bg-light);
}

.insights-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.insights-category-card {
  background: var(--white);
  padding: 26px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.insights-category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.insights-category-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.latest-articles {
  background: var(--white);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.article-card {
  background: var(--bg-light);
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.article-thumb {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--bg-light);
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 117, 255, 0.08);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.article-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.article-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.article-meta {
  font-size: 0.9rem;
  margin: 8px 0 10px;
}

.research-comparisons {
  background: var(--bg-light);
}

.research-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.research-item {
  background: var(--white);
  padding: 24px 22px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
}

.research-thumb {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--bg-light);
}

.research-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.research-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.research-item p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}

.trending-tags {
  background: var(--white);
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.tags-cloud span {
  background: var(--bg-light);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.insights-author {
  background: var(--bg-light);
}

.author-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.author-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

.author-avatar .avatar-placeholder {
  width: 100%;
  height: 100%;
  /*background: var(--gradient-primary); */
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  background: #C9C8DD !important;
  padding: 5px;
}

.author-info p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 10px;
}

.author-meta {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.author-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.insights-newsletter {
  background: var(--white);
}

.newsletter-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
}

.newsletter-card h2 {
  margin-bottom: 10px;
}

.newsletter-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.newsletter-form {
  margin: 24px auto 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  min-width: 260px;
  max-width: 360px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-note {
  font-size: 0.9rem;
  margin-top: 4px;
}

.insights-final-cta {
  background: var(--gradient-primary);
  color: var(--white);
}

.insights-final-cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.insights-final-cta-title {
  font-size: 2.7rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.insights-final-cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.96);
}

.insights-final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-meta {
    margin-top: 30px;
  }
  
  .author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .author-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .author-actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .insights-hero {
    padding: 90px 0 70px;
  }
  .insights-hero-title {
    font-size: 2.4rem;
  }
  .insights-hero-subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .insights-hero-title {
    font-size: 2rem;
  }
  
  .insights-hero-subtitle {
    font-size: 0.95rem;
  }
  
  .featured-text h2 {
    font-size: 1.5rem;
  }
  
  .featured-meta-card {
    padding: 15px;
  }
  
  .article-card h3 {
    font-size: 1.1rem;
  }
  
  .research-item h3 {
    font-size: 1.2rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
