/* =============================================
   Professional Portfolio CSS - Orange Theme
   Dynamic and Vibrant Consultancy Website
   ============================================= */

/* CSS Variables for Deep Orange Theme */
:root {
  --primary-orange: #d84315;
  --secondary-orange: #bf360c;
  --light-orange: #ff5722;
  --dark-orange: #b71c1c;
  --accent-orange: #ffab91;
  
  --text-dark: #2c3e50;
  --text-medium: #5a6c7d;
  --text-light: #8fa0b0;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #343a40;
  
  --shadow-light: 0 2px 10px rgba(216, 67, 21, 0.1);
  --shadow-medium: 0 4px 20px rgba(216, 67, 21, 0.15);
  --shadow-heavy: 0 8px 30px rgba(216, 67, 21, 0.2);
  
  --border-radius: 8px;
  --border-radius-large: 16px;
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  --gradient-light: linear-gradient(135deg, var(--light-orange), var(--accent-orange));
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Single font across the site */
:root {
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html, body {
  font-family: var(--font-base) !important;
}

/* Force all common text elements to use the same font */
h1, h2, h3, h4, h5, h6,
p, span, div, a, li, small, strong, em,
button, .btn, input, textarea, select, label,
.nav-link, .nav-logo, .section-title, .hero-accent-para {
  font-family: var(--font-base) !important;
}

/* Subtle global element transition (non-layout properties only) */
button, .btn, a, .skill-tag, .feature-item, .service-card, .testimonial-card, .portfolio-card {
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

/* Accessible focus outline */
:focus-visible {
  outline: 3px solid var(--primary-orange);
  outline-offset: 2px;
}

/* Hero gentle entrance (single paint, no layout shift) */
.hero.hero-fade-ready { opacity: 0; }
.hero.hero-fade-active { opacity: 1; transition: opacity 900ms ease; }

@media (prefers-reduced-motion: reduce) {
  .hero.hero-fade-ready { opacity: 1; }
  .hero.hero-fade-active { transition: none; }
  button, .btn, a, .skill-tag, .feature-item, .service-card, .testimonial-card, .portfolio-card { transition: none; }
}

/* Hero badges background (fades in subtle, overlay keeps text legible) */
.hero.badges-bg { position:relative; overflow:hidden; }
.hero.badges-bg::before {
  content:""; position:absolute; inset:0;
  background:url('../images/my badges.png') center/cover no-repeat;
  opacity:0; transform:scale(1.06);
  animation:heroBadgeFade 3s ease forwards; filter:brightness(0.9) saturate(0.92);
}
.hero.badges-bg::after { content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(115deg,rgba(255,255,255,0.88) 0%,rgba(255,255,255,0.74) 30%,rgba(255,255,255,0.5) 55%,rgba(255,255,255,0.28) 78%,rgba(255,255,255,0.15) 100%);
}
@keyframes heroBadgeFade { 0%{opacity:0;transform:scale(1.08);} 55%{opacity:0.32;} 100%{opacity:0.25;transform:scale(1.015);} }
@media (max-width:780px){
  .hero.badges-bg::before { background-position:center top; }
  .hero.badges-bg::after { background:linear-gradient(180deg,rgba(255,255,255,0.95) 0%,rgba(255,255,255,0.78) 40%,rgba(255,255,255,0.35) 100%); }
}

/* Hero intro paragraph enhanced typography */
/* Replace Plus Jakarta Sans with Inter */
.hero-intro-copy .hero-accent-para {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight:500;
  letter-spacing:0.15px;
  -webkit-font-smoothing:antialiased;
  background:linear-gradient(95deg,#2c3e50 0%,#5a6c7d 50%,#2c3e50 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
@supports not (-webkit-background-clip:text) {
  .hero-intro-copy .hero-accent-para { color:#2c3e50; background:none; }
}
@media (prefers-reduced-motion:reduce){
  .hero-intro-copy .hero-accent-para { transition:none; }
}

/* Typography */
/* Classy + Modern typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Inter', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-medium);
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 1rem auto;
  border-radius: 2px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--medium-gray);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo h2 {
  font-family: 'Playfair Display', 'Inter', serif;
  color: var(--primary-orange);
  margin-bottom: 0;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-orange);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--medium-gray);
}

.btn-outline:hover {
  background: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange);
}

.btn-full {
  width: 100%;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #fff 0%, var(--accent-orange) 100%);
  padding-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-family: 'Playfair Display', 'Inter', serif;
  font-size: 4rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Home dynamic inserts (latest insight + featured credential) */
#latestInsight, #featuredCredential {
  transition: box-shadow .3s ease, transform .3s ease;
}
#latestInsight:hover, #featuredCredential:hover {
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  position: relative;
  width: 400px;
  height: 400px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-heavy);
}

.floating-element {
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 60%;
  right: -15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 40px;
  height: 40px;
  bottom: 10%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.scroll-arrow {
  width: 2px;
  height: 40px;
  background: var(--primary-orange);
  margin: 0 auto;
  position: relative;
  animation: scroll 2s infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid var(--primary-orange);
}

@keyframes scroll {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* Page Header */
.page-header {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: 6rem 0 4rem;
  margin-top: 80px;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Services Preview */
.services-preview {
  padding: 6rem 0;
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-large);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-orange);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-orange);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Why Choose Section */
.why-choose {
  padding: 6rem 0;
}

/* Strengths section updated: simplify layout */
.why-choose-content {
  display: block;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.feature-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-orange);
  min-width: 80px;
}

.feature-text h4 {
  margin-bottom: 0.5rem;
}

/* Removed stat bars (deprecated) */

/* Certifications & Badges */
.certifications-badges {
  padding: 6rem 0;
  background: var(--light-gray);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.certification-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
}

.certification-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-orange);
}

.badge-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  border: 3px dashed var(--primary-orange);
  transition: var(--transition);
  cursor: pointer;
}

.badge-placeholder:hover {
  transform: scale(1.1);
  border-style: solid;
}

.badge-placeholder i {
  font-size: 2.5rem;
  color: var(--primary-orange);
  z-index: 2;
}

.badge-overlay {
  position: absolute;
  inset: 0;
  background: rgba(216, 67, 21, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.badge-placeholder:hover .badge-overlay {
  opacity: 1;
}

.badge-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.certification-item h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.certification-item p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cert-year {
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.certifications-note {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-orange);
  color: var(--text-medium);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.certifications-note i {
  color: var(--primary-orange);
  margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta-section .btn-secondary {
  background: var(--white);
  color: var(--primary-orange);
  border-color: var(--white);
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-orange);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-orange);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #495057;
  color: var(--text-light);
}

/* About Page Styles */
.about-content {
  padding: 6rem 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-image {
  display: flex;
  justify-content: center;
}

.profile-photo-container {
  display: flex;
  justify-content: center;
}

.profile-photo-placeholder {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  text-align: center;
  box-shadow: var(--shadow-medium);
  border: 3px dashed var(--primary-orange);
  transition: var(--transition);
  cursor: pointer;
}

.profile-photo-placeholder:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-heavy);
}

.profile-photo-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.profile-photo-placeholder h4 {
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.profile-photo-placeholder p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.profile-photo-placeholder small {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Professional Photo Section */
.professional-photo {
  padding: 6rem 0;
  background: var(--light-gray);
}

.photo-upload-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.main-photo-placeholder {
  background: var(--white);
  border-radius: var(--border-radius-large);
  padding: 3rem;
  box-shadow: var(--shadow-medium);
}

.photo-upload-area {
  text-align: center;
  padding: 3rem;
  border: 3px dashed var(--primary-orange);
  border-radius: var(--border-radius-large);
  background: linear-gradient(135deg, var(--accent-orange) 0%, rgba(255, 255, 255, 0.9) 100%);
  transition: var(--transition);
  cursor: pointer;
}

.photo-upload-area:hover {
  border-style: solid;
  transform: scale(1.02);
}

.photo-upload-area i {
  font-size: 4rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.photo-upload-area h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.photo-upload-area p {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.upload-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.upload-specs span {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.upload-specs i {
  color: var(--primary-orange);
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.photo-tips {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--primary-orange);
}

.photo-tips h4 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.photo-tips ul {
  list-style: none;
  padding: 0;
}

.photo-tips li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-medium);
}

.photo-tips i {
  color: var(--primary-orange);
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.profile-placeholder {
  width: 300px;
  height: 300px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: 5rem;
  box-shadow: var(--shadow-medium);
}

/* Timeline */
.experience {
  padding: 6rem 0;
  background: var(--light-gray);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-orange);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 2rem;
}

.timeline-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-orange);
  border-radius: 50%;
  top: 0;
}

.timeline-item:nth-child(odd) .timeline-marker {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -10px;
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.timeline-date {
  color: var(--primary-orange);
  font-weight: 600;
}

/* Skills Section */
.skills {
  padding: 6rem 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.skill-category {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--primary-orange);
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: var(--accent-orange);
  color: var(--primary-orange);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Education Grid */
.education {
  padding: 6rem 0;
  background: var(--light-gray);
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.education-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.education-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.education-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary-orange);
}

.education-year {
  color: var(--primary-orange);
  font-weight: 600;
}

/* Approach Steps */
.approach {
  padding: 6rem 0;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.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.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Services Page Styles */
.services-overview {
  padding: 4rem 0;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.main-services {
  padding: 4rem 0;
}

.service-detail {
  margin-bottom: 4rem;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail.reverse .service-content {
  direction: rtl;
}

.service-detail.reverse .service-text {
  direction: ltr;
}

.service-features {
  list-style: none;
  margin: 2rem 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.service-features i {
  color: var(--primary-orange);
  font-size: 1.2rem;
}

.service-graphic {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
  margin: 0 auto;
}

.service-graphic.strategy { background: linear-gradient(135deg, #ff6b35, #ff8c42); }
.service-graphic.process { background: linear-gradient(135deg, #28a745, #20c997); }
.service-graphic.change { background: linear-gradient(135deg, #007bff, #6610f2); }
.service-graphic.digital { background: linear-gradient(135deg, #6f42c1, #e83e8c); }

/* Additional Services */
.additional-services {
  padding: 6rem 0;
  background: var(--light-gray);
}

/* Engagement Process */
.engagement-process {
  padding: 6rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-icon {
  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;
  margin: 0 auto 1rem;
}

/* Pricing Information */
.pricing-info {
  padding: 6rem 0;
  background: var(--light-gray);
}

.pricing-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-option {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: left;
}

/* Contact Page Styles */
.contact-content {
  padding: 6rem 0;
}

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

/* Contact Form */
.contact-form-section {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(216, 67, 21, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-success {
  text-align: center;
  padding: 2rem;
  background: var(--accent-orange);
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.success-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Contact Information */
.contact-info-section {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: var(--border-radius-large);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
}

/* Quick Inquiry */
.quick-inquiry {
  padding: 6rem 0;
  background: var(--light-gray);
}

.inquiry-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.inquiry-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.inquiry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.inquiry-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary-orange);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--primary-orange);
}

/* Portfolio Page Styles */
.portfolio-filter {
  padding: 2rem 0;
  text-align: center;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--medium-gray);
  background: var(--white);
  color: var(--text-dark);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange);
}

/* Featured Case Study */
.featured-case-study {
  padding: 6rem 0;
  background: var(--light-gray);
}

.case-study-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.case-study-category {
  color: var(--primary-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.case-study-metrics {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.case-study-graphic {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
  margin: 0 auto;
}

/* Portfolio Grid */
.portfolio-grid-section {
  padding: 6rem 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.portfolio-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.portfolio-graphic {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
}

.portfolio-graphic.manufacturing { background: linear-gradient(135deg, #6c757d, #495057); }
.portfolio-graphic.fintech { background: linear-gradient(135deg, #28a745, #20c997); }
.portfolio-graphic.healthcare { background: linear-gradient(135deg, #dc3545, #fd7e14); }
.portfolio-graphic.retail { background: linear-gradient(135deg, #007bff, #6610f2); }
.portfolio-graphic.logistics { background: linear-gradient(135deg, #ffc107, #fd7e14); }
.portfolio-graphic.consulting { background: linear-gradient(135deg, #6f42c1, #e83e8c); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 53, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-category {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-metrics {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.metric-item {
  background: var(--accent-orange);
  color: var(--primary-orange);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Results Summary */
.results-summary {
  padding: 6rem 0;
  background: var(--light-gray);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.result-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
}

.result-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary-orange);
}

.result-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.result-label {
  color: var(--text-medium);
  font-weight: 500;
}

/* Industry Experience */
.industry-experience {
  padding: 6rem 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.industry-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary-orange);
}

/* Process Overview */
.process-overview {
  padding: 6rem 0;
  background: var(--light-gray);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  position: relative;
}

.process-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  width: 30px;
  height: 30px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Testimonials Page Styles */
.featured-testimonial {
  padding: 6rem 0;
  background: var(--light-gray);
}

.testimonial-hero {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary-orange);
  margin-bottom: 2rem;
}

.testimonial-hero blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.company-info {
  display: flex;
  gap: 0.5rem;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.rating i {
  color: #ffc107;
}

/* Testimonials Grid */
.testimonials-grid {
  padding: 6rem 0;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.quote-mark {
  font-size: 2rem;
  color: var(--primary-orange);
}

.testimonial-card blockquote {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-orange);
}

.author-details h4 {
  margin-bottom: 0.25rem;
}

.author-details p {
  margin-bottom: 0.25rem;
  color: var(--text-medium);
}

.author-details span {
  color: var(--primary-orange);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Client Statistics */
.client-stats {
  padding: 6rem 0;
  background: var(--light-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary-orange);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-medium);
  font-weight: 500;
}

/* Industries Served */
.industries-served {
  padding: 6rem 0;
}

.industries-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.industry-logo {
  display: flex;
  justify-content: center;
}

.logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.logo-placeholder:hover {
  background: var(--accent-orange);
  color: var(--primary-orange);
}

.logo-placeholder i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-orange);
}

.logo-placeholder span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Video Testimonials */
.video-testimonials {
  padding: 6rem 0;
  background: var(--light-gray);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--white);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  background: var(--gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder {
  text-align: center;
  color: var(--primary-orange);
}

.video-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.play-button:hover {
  background: var(--primary-orange);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  margin-bottom: 0.5rem;
}

.video-info p {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.video-duration {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Feedback Form */
.feedback-form {
  padding: 6rem 0;
}

.feedback-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Page Styles */
.featured-article {
  padding: 6rem 0;
  background: var(--light-gray);
}

.featured-post {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-category {
  color: var(--primary-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.featured-excerpt {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.author-info {
  display: flex;
  gap: 1rem;
}

.read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-graphic {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
  margin: 0 auto;
}

.article-graphic.featured { background: var(--gradient-primary); }

/* Blog Categories */
.blog-categories {
  padding: 2rem 0;
  text-align: center;
}

.category-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--medium-gray);
  background: var(--white);
  color: var(--text-dark);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
}

.category-btn.active,
.category-btn:hover {
  background: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange);
}

/* Blog Grid */
.blog-grid {
  padding: 6rem 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-post {
  background: var(--white);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.post-image {
  height: 200px;
}

.article-graphic.strategy { background: linear-gradient(135deg, #ff6b35, #ff8c42); }
.article-graphic.digital { background: linear-gradient(135deg, #6f42c1, #e83e8c); }
.article-graphic.leadership { background: linear-gradient(135deg, #007bff, #6610f2); }
.article-graphic.operations { background: linear-gradient(135deg, #28a745, #20c997); }
.article-graphic.trends { background: linear-gradient(135deg, #ffc107, #fd7e14); }
.article-graphic.data { background: linear-gradient(135deg, #17a2b8, #6f42c1); }
.article-graphic.performance { background: linear-gradient(135deg, #dc3545, #fd7e14); }
.article-graphic.innovation { background: linear-gradient(135deg, #28a745, #20c997); }
.article-graphic.cybersecurity { background: linear-gradient(135deg, #6c757d, #495057); }

.post-content {
  padding: 2rem;
}

.post-category {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-content h3 {
  margin: 1rem 0;
}

.post-content h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.post-content h3 a:hover {
  color: var(--primary-orange);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.load-more {
  text-align: center;
}

/* Newsletter Signup */
.newsletter-signup {
  padding: 6rem 0;
  background: var(--gradient-primary);
  color: var(--white);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form-fields {
  display: flex;
  gap: 1rem;
}

.newsletter-form-fields input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.newsletter-form-fields .btn {
  white-space: nowrap;
}

.newsletter-disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-disclaimer a {
  color: var(--white);
}

/* Popular Topics */
.popular-topics {
  padding: 6rem 0;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.topic-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.topic-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary-orange);
}

.topic-card h3 {
  margin-bottom: 0.5rem;
}

.topic-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* Featured credential (Home) */
.featured-credential {
  background: #fff;
  border-top: 1px solid #f1e4e0;
  border-bottom: 1px solid #f1e4e0;
  padding: 1rem 0;
}
.featured-credential .container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.featured-credential img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.featured-credential-text h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.05rem;
  color: #2c3e50;
}
.featured-credential-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #4a5568;
}

/* Certifications grid (About) */
.certifications {
  padding: 4rem 0;
  background: #fffaf8;
}
.certifications .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.cert-item {
  background: #fff;
  border: 1px solid #f1e4e0;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cert-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(216, 67, 21, 0.12);
}
.cert-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
  display: block;
}
.cert-item figcaption {
  font-size: 0.9rem;
  color: #2c3e50;
}

@media (max-width: 600px) {
  .featured-credential .container { gap: 0.75rem; }
  .featured-credential-text h3 { font-size: 1rem; }
  .featured-credential-text p { font-size: 0.85rem; }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-content,
  .about-intro,
  .why-choose-content,
  .case-study-hero,
  .featured-post,
  .service-content,
  .contact-grid,
  .newsletter-content,
  .photo-upload-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-detail.reverse .service-content {
    direction: ltr;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  .hero .hero-description { font-size:1rem; }
  #featuredCredential { flex-direction:row; }
  
  .timeline::before {
    left: 2rem;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 4rem !important;
    padding-right: 0 !important;
  }
  
  .timeline-marker {
    left: 1.5rem !important;
    right: auto !important;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    padding: 2rem 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero-title {
    font-size: 2.5rem;
  }
  .hero h2 { font-size:1.1rem !important; }
  .hero ul { grid-template-columns:1fr; }
  #featuredCredential { flex-direction:column; text-align:center; }
  #featuredCredential > div:first-child { margin:0 auto; }
  #latestInsight { padding:1.25rem 1.1rem; }
  
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .featured-meta {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .newsletter-form-fields {
    flex-direction: column;
  }
  
  .case-study-metrics {
    justify-content: center;
  }
  
  .services-grid,
  .skills-grid,
  .education-grid,
  .approach-steps,
  .process-steps,
  .pricing-options,
  .inquiry-options,
  .faq-grid,
  .results-grid,
  .industry-grid,
  .process-timeline,
  .stats-grid,
  .industries-logos,
  .video-grid,
  .topics-grid,
  .certifications-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid,
  .posts-grid,
  .testimonials-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav-container {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  .hero h2 { font-size:0.95rem !important; letter-spacing:0.5px; }
  .hero-description { font-size:0.95rem; }
  .hero ul li { font-size:0.8rem; }
  #featuredCredential { padding:1.1rem 1rem; }
  #featuredCredential h3 { font-size:0.9rem; }
  #latestInsight { padding:1.1rem 1rem; }
  #latestInsight .insight-body { font-size:0.75rem; }
  #latestInsight .insight-tags a { padding:5px 12px !important; }
  
  .page-header {
    padding: 4rem 0 3rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .metric {
    min-width: auto;
  }
  
  .case-study-metrics {
    flex-direction: column;
    gap: 1rem;
  }
  
  .floating-element {
    display: none;
  }
}


/* Print Styles */
@media print {
  .navbar,
  .scroll-indicator,
  .cta-section,
  .footer {
    display: none;
  }
  
  .page-header {
    margin-top: 0;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  .service-card,
  .testimonial-card,
  .blog-post,
  .portfolio-card {
    page-break-inside: avoid;
  }
}

/* Calendly Embed Tweaks */
.scheduling-section .calendly-inline-container iframe { border-radius:16px; }
.scheduling-section .calendly-inline-container { animation: calendlyFade 0.5s ease; }
@keyframes calendlyFade { from { opacity:0; } to { opacity:1; } }
@media (max-width:640px) {
  .scheduling-section .calendly-inline-container { height:780px !important; }
}