/*
Theme Name: GD Pro Academy Complete
Description: Professional WordPress theme for training business - Complete Working Version
Author: GD Pro Academy
Version: 2.0.0
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --primary-color: #051d40;
  --secondary-color: #1e40af;
  --accent-color: #10b981;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-accent: #f3f4f6;
  --border-color: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
  text-decoration: none;
}

.logo-img {
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.main-navigation a {
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

.main-navigation a:hover {
  color: var(--secondary-color);
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-navigation a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--primary-color) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--secondary-color) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-primary);
}

/* Hero Section */
.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #e0f2fe 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title-highlight {
  color: var(--secondary-color);
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}

/* Page Header */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #e0f2fe 100%);
  text-align: center;
}

.page-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.page-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Training Cards Section */
.training-section {
  padding: 80px 0;
  background: white;
}

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

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.training-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.training-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.training-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.individual-card .card-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
}

.card-badge {
  background: var(--bg-accent);
  color: var(--text-secondary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.individual-card .card-badge {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-color);
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
}

.feature-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}

.card-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-top: auto;
}

.individual-card .card-cta {
  background: var(--accent-color);
}

.card-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

/* Programs Section */
.programs-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

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

.program-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.program-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.program-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-features {
  list-style: none;
}

.program-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-primary);
}

.program-features li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: 600;
}

/* Quick Actions */
.quick-actions {
  background: var(--bg-accent);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}

.action-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.action-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Forms */
.form-section {
  padding: 80px 0;
  background: white;
}

.form-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 15px;
  background: white;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.info-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  height: fit-content;
}

.info-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.info-list {
  list-style: none;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.info-icon {
  font-size: 18px;
  margin-top: 2px;
}

.info-content strong {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.info-content span,
.info-content a {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Footer */
.site-footer {
  background: var(--primary-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .training-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-navigation {
    display: none;
  }

  .hero-section {
    padding: 120px 0 60px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .training-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .training-card {
    padding: 24px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quick-actions {
    padding: 32px 24px;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .training-card,
  .program-card {
    padding: 20px;
  }

  .form-card,
  .info-card {
    padding: 24px;
  }
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Ensure equal height cards and bottom-aligned buttons */
.program-card,
.training-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card .program-features,
.training-card .card-content {
    flex: 1;
}

.program-card .btn,
.training-card .card-cta {
    margin-top: auto;
}

/* Price badge styling */
.program-card [style*="background: var(--bg-secondary)"] {
    background: var(--bg-secondary) !important;
    color: var(--text-primary);
    font-weight: 500;
}

/* Bundle special styling */
.program-card[style*="border: 2px solid var(--accent-color)"] {
    position: relative;
    overflow: visible;
}
/* =========== HERO ROTATING BACKGROUND =========== */
.hero-section { position: relative; isolation: isolate; overflow: hidden; }
.hero-bg-rotator { position: absolute; inset: 0; z-index: 0; }
.hero-bg-rotator .slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; filter: blur(4px) saturate(1.1); transition: opacity 1.2s ease-in-out; }
.hero-bg-rotator .slide.visible { opacity: 0.35; }
.hero-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 70% 20%, rgba(30,64,175,.08), transparent 60%), radial-gradient(50% 50% at 10% 80%, rgba(13,148,136,.06), transparent 60%); z-index: 1; }
.hero-container, .hero-content { position: relative; z-index: 2; }

/* =========== “OUR HIGHLIGHTS” STRIP =========== */
.hero-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.highlight-card { background: rgba(255,255,255,.85); border: 1px solid var(--border-color); border-radius: 14px; padding: 18px 16px; text-align: center; box-shadow: var(--shadow-sm); backdrop-filter: blur(6px); }
.highlight-top { font-size: 22px; font-weight: 800; color: var(--primary-color); letter-spacing: -.02em; }
.highlight-label { margin-top: 6px; font-size: 13px; color: var(--text-secondary); font-weight: 600; }
@media (max-width: 768px) { .hero-highlights { grid-template-columns: 1fr; } }

/* =========== FOOTER QUICK LINK ICONS =========== */
.footer-links.with-icons li { display: flex; align-items: center; gap: 10px; }
.footer-links .ql-ic { width: 18px; height: 18px; display: inline-flex; align-items:center; justify-content:center; color: rgba(255,255,255,.85); flex-shrink: 0; }

/* About Page Enhanced – neutralized to avoid conflicts /
.about-hero { position: relative; min-height: 520px; display: grid; align-items: center; }
.about-hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: blur(2px) saturate(1.05); transform: scale(1.03); }
.about-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.75) 0%, rgba(255,255,255,.6) 40%, rgba(255,255,255,.5) 100%); }
/ REMOVE the invalid negative padding /
.about-hero-content { position: relative; z-index: 2; text-align: center; }
/ REMOVE the negative margin on title */
.about-title { font-size: clamp(32px, 5vw, 44px); font-weight: 800; color: var(--text-primary); }
.about-subtitle { max-width: 800px; margin: 0 auto 18px; color: var(--text-secondary); font-size: 18px; }

.about-story { padding: 60px 0; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 36px; align-items: center; }
.about-photo img { width: 100%; border-radius: 18px; box-shadow: var(--shadow-lg); }
.about-copy .lead { font-size: 18px; color: var(--text-primary); margin-bottom: 10px; }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 18px; }
.pill { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: 999px; padding: 6px 12px; font-weight: 600; font-size: 13px; }
.about-philosophy h3 { margin: 10px 0 8px; }
.tick-list { list-style: none; padding: 0; }
.tick-list li { margin: 6px 0; }
.tick-list li::before { content: "✓ "; color: var(--accent-color); font-weight: 700; }

.about-mission-vision { padding: 40px 0; }
.mv-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.mv-card { background: white; border: 1px solid var(--border-light); border-radius: 16px; padding: 22px; box-shadow: var(--shadow-md); }
.mv-icon { font-size: 26px; margin-bottom: 6px; }

.about-specializations { padding: 50px 0; background: var(--bg-secondary); }
.spec-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.spec-card { background: white; border: 1px solid var(--border-light); border-radius: 16px; padding: 18px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.spec-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.spec-icon { font-size: 28px; margin-bottom: 8px; }
.mini-list { list-style: none; padding: 0; color: var(--text-secondary); }
.mini-list li { margin: 6px 0; }

.about-impact { padding: 50px 0; }
.counter-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.counter-card { background: white; border: 1px solid var(--border-light); border-radius: 16px; padding: 20px; text-align: center; box-shadow: var(--shadow-sm); }
.counter-number { font-size: 34px; font-weight: 800; color: var(--primary-color); }
.counter-label { color: var(--text-secondary); font-weight: 600; margin-top: 6px; }
.impact-badges { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.badge { background: var(--bg-accent); border: 1px solid var(--border-color); padding: 6px 12px; border-radius: 999px; font-weight: 600; font-size: 13px; }

.about-location { padding: 50px 0; background: var(--bg-secondary); }
.loc-wrapper { display: grid; grid-template-columns: 1.3fr 1.7fr; gap: 24px; align-items: center; }
.loc-media img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-md); }

.about-cta { padding: 40px 0 70px; }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2,1fr); }
  .counter-grid, .mv-grid, .loc-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 640px) { .spec-grid { grid-template-columns: 1fr; } }

/* About Hero Polish */
.about-hero { position: relative; min-height: 560px; display: grid; align-items: center; }
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: blur(1.5px) saturate(1.03); transform: scale(1.02); }
.about-hero-overlay { position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 30%, rgba(0,0,0,.15), rgba(0,0,0,.35) 60%, rgba(0,0,0,.55) 100%), linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.55) 100%); }
.about-hero-content { position: relative; z-index: 2; text-align: center; padding: 72px 16px 36px; max-width: 1100px; margin: -60px auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); background: rgba(0,0,0,.25); color: #fff; font-weight: 700; letter-spacing: .2px; margin-bottom: 14px; }
.about-title { color: #fff; font-size: clamp(34px, 5vw, 56px); font-weight: 900; letter-spacing: -.02em; line-height: 1.1; margin: 8px auto 12px; text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.about-subtitle { color: rgba(255,255,255,.92); font-size: clamp(16px, 2.3vw, 20px); line-height: 1.6; max-width: 900px; margin: 0 auto 22px; text-shadow: 0 1px 2px rgba(0,0,0,.2); }
.about-hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.about-hero-cta .btn { padding: 14px 22px; font-size: 16px; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.about-hero-cta .btn-primary { background: var(--primary-color); border-color: var(--primary-color); }
.about-hero-cta .btn-outline { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.about-hero-cta .btn-outline:hover { background: rgba(255,255,255,.18); }
@media (min-width: 1600px) { .about-hero-content { max-width: 1200px; } }
@media (max-width: 768px) { .about-hero { min-height: 520px; } .about-hero-overlay { background: radial-gradient(70% 60% at 50% 35%, rgba(0,0,0,.18), rgba(0,0,0,.45) 60%, rgba(0,0,0,.6) 100%), linear-gradient(180deg, rgba(0,0,0,.40) 0%, rgba(0,0,0,.55) 100%); } .about-hero-cta .btn { width: 100%; max-width: 320px; } }
.about-hero-content.has-plate { backdrop-filter: blur(2px); background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.12)); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; }

/* ================= ABOUT PAGE – FULL REFRESH ================= */
/* Hero */
.about-hero { position: relative; min-height: 580px; display: grid; align-items: center; }
.about-hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); filter: saturate(1.06) contrast(1.02); }
/* Overlay: vignette + dark glaze for legibility */
.about-hero-overlay { position: absolute; inset: 0; background:
  radial-gradient(60% 60% at 50% 35%, rgba(0,0,0,.20), rgba(0,0,0,.35) 60%, rgba(0,0,0,.50) 100%),
  linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.47) 45%, rgba(0,0,0,.52) 100%);
}
.about-hero-content { position: relative; z-index: 2; text-align: center; padding: 80px 16px 44px; max-width: 1100px; margin: +200px auto 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); background: rgba(0,0,0,.25); color: #fff; font-weight: 700; letter-spacing: .2px; margin-bottom: 12px; }
.about-title { color: #fff; font-size: clamp(36px,5vw,64px); font-weight: 900; letter-spacing: -.02em; line-height: 1.1; margin: 8px auto 10px; text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.about-subtitle { color: rgba(255,255,255,.95); font-size: clamp(16px,2.1vw,20px); line-height: 1.6; max-width: 900px; margin: 0 auto 22px; text-shadow: 0 1px 2px rgba(0,0,0,.18); }
.about-hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.about-hero-cta .btn { padding: 15px 24px; font-size: 17px; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.about-hero-cta .btn-outline { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.about-hero-cta .btn-outline:hover { background: rgba(255,255,255,.18); }
@media (max-width: 768px) { .about-hero { min-height: 520px; } .about-hero-content{ margin-top:-20px; padding-top:64px; } .about-hero-cta .btn{ width:100%; max-width:320px; } }

/* Professional Background – clean two-column card */
.about-story { padding: 64px 0 30px; }
.about-grid { display: grid; grid-template-columns: 1.1fr 1.9fr; gap: 36px; align-items: center; }
.about-photo img { width: 100%; border-radius: 18px; box-shadow: var(--shadow-lg); }
.about-copy .lead { font-size: 18px; color: var(--text-primary); margin-bottom: 10px; }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 10px; }
.pill { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: 999px; padding: 6px 12px; font-weight: 600; font-size: 13px; }
.about-textbox { background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 22px 22px 14px; box-shadow: var(--shadow-sm); }
.about-textbox p { margin-bottom: 10px; color: var(--text-secondary); }

/* Mission & Vision – modern icon cards */
.about-mission-vision { padding: 40px 0; }
.mv-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.mv-card { background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 22px; box-shadow: var(--shadow-md); display:flex; gap:16px; align-items:flex-start; }
.mv-icon { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:24px; background: linear-gradient(135deg, #0ea5e9, #2563eb); color:#fff; }
.mv-card:nth-child(2) .mv-icon{ background: linear-gradient(135deg, #f59e0b, #ef4444); }

/* Specializations – interactive cards */
.about-specializations { padding: 56px 0; background: var(--bg-secondary); }
.spec-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.spec-card { background:#fff; border:1px solid var(--border-light); border-radius:16px; padding:18px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; position:relative; overflow:hidden; }
.spec-card::after { content:""; position:absolute; inset:auto -30% -30% auto; width:120px; height:120px; background: radial-gradient(closest-side, rgba(37,99,235,.12), transparent 70%); transform: translate(30%,30%); }
.spec-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.spec-icon { font-size:28px; margin-bottom:8px; }
.mini-list { list-style:none; padding:0; color:var(--text-secondary); }
.mini-list li { margin:6px 0; }

/* Achievements – animated counters */
.about-impact { padding: 56px 0 34px; }
.counter-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.counter-card { background:#fff; border:1px solid var(--border-light); border-radius:16px; padding:22px; text-align:center; box-shadow: var(--shadow-sm); }
.counter-number { font-size: 34px; font-weight: 800; color: var(--primary-color); }
.counter-label { color: var(--text-secondary); font-weight: 600; margin-top: 6px; }
.impact-badges { margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.badge{ background:var(--bg-accent); border:1px solid var(--border-color); padding:6px 12px; border-radius:999px; font-weight:600; font-size:13px; }

/* Location */
.about-location{ padding: 50px 0; background: var(--bg-secondary); }
.loc-wrapper{ display:grid; grid-template-columns:1.3fr 1.7fr; gap:24px; align-items:center; }
.loc-media img{ width:100%; border-radius:16px; box-shadow:var(--shadow-md); }

/* Responsive */
@media (max-width: 1024px){ .about-grid{ grid-template-columns:1fr; } .spec-grid{ grid-template-columns: repeat(2,1fr);} .counter-grid,.mv-grid,.loc-wrapper{ grid-template-columns:1fr; } }
@media (max-width: 640px){ .spec-grid{ grid-template-columns:1fr; } }

/* Kill generic hero/page-header padding on About (Refreshed) /
.page-template-about-refreshed .hero-section,
.page-template-about-refreshed .page-header,
.page-template-about-refreshed .site-main > .hero-section {
padding: 0 !important;
}
/ Remove any unintended top spacing on first section */
.page-template-about-refreshed .site-main,
.page-template-about-refreshed .site-main > section:first-child {
padding-top: 0 !important;
margin-top: 0 !important;
}
/* Watermark the About hero image /
.about-hero-media img {
opacity: 0.45; / try 0.35–0.55 to taste /
filter: saturate(0.95); / optional: tame strong colors; 1.0 to disable */
}
.about-specializations {
padding: 64px 0;
background: var(--bg-secondary);
}

.spec-header {
text-align: center;
margin-bottom: 20px;
}

.spec-kicker {
display: inline-block;
background: #eef2ff;
color: #334155;
border: 1px solid #e5e7eb;
padding: 6px 12px;
border-radius: 999px;
font-size: 12px;
font-weight: 700;
letter-spacing: .3px;
text-transform: uppercase;
margin-bottom: 10px;
}

.spec-title { margin: 6px 0 6px; }
.spec-sub { color: var(--text-secondary); margin: 0 auto 12px; }

.spec-grid-centered {
display: grid;
grid-template-columns: repeat(4,1fr);
gap: 18px;
align-items: stretch;
}

.spec-card-centered {
background: #fff;
border: 1px solid var(--border-light);
border-radius: 16px;
padding: 24px 18px 20px;
text-align: center;
box-shadow: var(--shadow-sm);
transition: transform .25s ease, box-shadow .25s ease;
position: relative;
overflow: hidden;
}

.spec-card-centered::after {
content: "";
position: absolute;
inset: auto -30% -30% auto;
width: 120px; height: 120px;
background: radial-gradient(closest-side, rgba(37,99,235,.10), transparent 70%);
transform: translate(30%,30%);
pointer-events: none;
}

.spec-card-centered:hover {
transform: translateY(-6px);
box-shadow: 0 10px 24px rgba(2,6,23,.10);
}

.spec-icon-wrap {
display: inline-flex;
align-items: center;
justify-content: center;
width: 56px; height: 56px;
margin: 0 auto 10px;
border-radius: 14px;
background: linear-gradient(135deg, #0ea5e9, #2563eb);
color: #fff;
box-shadow: 0 6px 16px rgba(37,99,235,.25);
transition: transform .25s ease;
}

.spec-card-centered:nth-child(2) .spec-icon-wrap {
background: linear-gradient(135deg, #f59e0b, #ef4444);
box-shadow: 0 6px 16px rgba(239,68,68,.20);
}
.spec-card-centered:nth-child(3) .spec-icon-wrap {
background: linear-gradient(135deg, #10b981, #059669);
}
.spec-card-centered:nth-child(4) .spec-icon-wrap {
background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.spec-card-centered:hover .spec-icon-wrap { transform: translateY(-2px); }

.spec-icon { font-size: 26px; line-height: 1; }

.spec-name {
font-size: 18px;
font-weight: 800;
color: var(--text-primary);
margin: 6px 0 8px;
}

.spec-list {
list-style: none;
padding: 0;
color: var(--text-secondary);
font-size: 15px;
}
.spec-list li { margin: 6px 0; }

@media (max-width: 1024px) {
.spec-grid-centered { grid-template-columns: repeat(2,1fr); gap: 16px; }
}
@media (max-width: 640px) {
.spec-grid-centered { grid-template-columns: 1fr; }
}
.about-impact.v1-centered { padding: 60px 0 40px; }
.about-impact.v1-centered .impact-header { text-align: center; margin-bottom: 16px; }
.about-impact.v1-centered .impact-sub { color: var(--text-secondary); margin-top: 6px; }

.impact-grid.v1 {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
justify-items: center; /* center cards within grid cells */
}

.impact-card.v1 {
width: 100%;
background: #fff;
border: 1px solid var(--border-light);
border-radius: 16px;
padding: 22px 18px;
text-align: center;
box-shadow: var(--shadow-sm);
transition: transform .2s ease, box-shadow .2s ease;
}

.impact-card.v1:hover {
transform: translateY(-4px);
box-shadow: 0 10px 20px rgba(2,6,23,.08);
}

.impact-card.v1 .impact-value {
font-size: clamp(28px, 4.2vw, 44px);
font-weight: 900;
color: var(--primary-color);
letter-spacing: -.02em;
line-height: 1.1;
}

.impact-card.v1 .impact-label {
margin-top: 8px;
color: var(--text-secondary);
font-weight: 600;
font-size: 14px;
}

/* Center badges row */
.impact-badges.v1 {
margin-top: 16px;
display: flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}

/* Responsive layout: keep same visuals, just stack nicely */
@media (max-width: 1024px) {
.impact-grid.v1 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
.impact-grid.v1 { grid-template-columns: 1fr; }
}