/*
Theme Name: IHC Portfolio
Theme URI: https://elegance-hub-io.lovable.app/
Author: Intejamul Hoq Chowdhury
Author URI: https://elegance-hub-io.lovable.app/
Description: Professional IT Infrastructure & Cybersecurity Portfolio Theme - Elementor Compatible
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ihc-portfolio
Tags: one-page, dark, portfolio, professional, elementor
*/

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
  --color-bg: #0d1b2a;
  --color-bg-header: rgba(9, 25, 42, 0.85);
  --color-primary: #6fc267;
  --color-primary-hover: #5db356;
  --color-primary-dark: #0d1b2a;
  --color-foreground: #f0f6fc;
  --color-muted: #738292;
  --color-card: #122334;
  --color-card-2: #0f1e2e;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-secondary: #1e2f41;
  --font-primary: 'Inter', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-foreground);
}

h1 { font-size: clamp(48px, 6vw, 80px); }
h2 { font-size: clamp(36px, 4vw, 60px); }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p { color: var(--color-muted); font-size: 16px; line-height: 1.7; }

.text-primary { color: var(--color-primary) !important; }
.text-muted { color: var(--color-muted) !important; }

/* ============================================
   LAYOUT
   ============================================ */
.ihc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
  border-top: 1px solid var(--color-border);
}

.ihc-section-label {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
#ihc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--color-bg-header);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

#ihc-header .header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ihc-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-foreground);
  text-decoration: none;
}

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

.ihc-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.ihc-nav a {
  font-size: 14px;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.15s ease;
  font-family: var(--font-primary);
}

.ihc-nav a:hover { color: var(--color-foreground); }

/* Header CTA Button - "Get in Touch" */
.ihc-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-primary-dark) !important;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-primary);
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  cursor: pointer;
  border: none;
}

.ihc-header-btn:hover {
  opacity: 0.9;
  color: var(--color-primary-dark) !important;
  transform: translateY(-1px);
}

.ihc-header-btn:active {
  transform: scale(0.97);
  opacity: 0.85;
}

/* Hamburger mobile menu */
.ihc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.ihc-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-foreground);
  transition: all 0.3s ease;
}

.ihc-mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}

.ihc-mobile-nav a {
  font-size: 16px;
  color: var(--color-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.ihc-mobile-nav a:hover { color: var(--color-primary); }

.ihc-mobile-nav.open { display: flex; }

/* ============================================
   HERO SECTION
   ============================================ */
#ihc-hero {
  position: relative;
  padding: 128px 0 96px;
  border-top: none;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.ihc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.ihc-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.ihc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.ihc-hero-title span { color: var(--color-primary); display: block; }

.ihc-hero-divider {
  width: 48px;
  height: 2px;
  background: var(--color-primary);
  margin-bottom: 28px;
}

.ihc-hero-desc {
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 32px;
}

.ihc-hero-contact-info {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.ihc-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-muted);
}

.ihc-contact-item svg { color: var(--color-primary); flex-shrink: 0; }

.ihc-hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Green "Contact Me" button */
.ihc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-primary-dark) !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-primary);
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  cursor: pointer;
  border: none;
}

.ihc-btn-primary:hover {
  opacity: 0.9;
  color: var(--color-primary-dark) !important;
  transform: translateY(-2px);
}

.ihc-btn-primary:active {
  transform: scale(0.97) translateY(0);
}

/* Ghost "View Experience" button */
.ihc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-foreground) !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-primary);
  text-decoration: none;
  border: 1px solid var(--color-border);
  transition: background 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}

.ihc-btn-ghost:hover {
  background: var(--color-secondary);
  color: var(--color-foreground) !important;
  transform: translateY(-2px);
}

.ihc-btn-ghost:active { transform: scale(0.97); }

/* Hero stats row */
.ihc-hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.ihc-stat-item {}

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

.ihc-stat-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-left: 2px;
  vertical-align: middle;
}

.ihc-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 4px;
}

/* Hero image */
.ihc-hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ihc-hero-image-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(111, 194, 103, 0.3);
  box-shadow: 0 0 80px rgba(111, 194, 103, 0.15), 0 0 0 8px rgba(111, 194, 103, 0.05);
  position: relative;
}

.ihc-hero-image-circle::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(9, 25, 42, 0.6), transparent);
}

.ihc-hero-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Floating dots decoration */
.ihc-dot-deco {
  position: absolute;
  border-radius: 50%;
  background: var(--color-primary);
}

.ihc-dot-deco-1 { width: 14px; height: 14px; top: 20%; right: -30px; opacity: 0.8; }
.ihc-dot-deco-2 { width: 10px; height: 10px; top: 35%; right: -55px; opacity: 0.5; }
.ihc-dot-deco-3 { width: 14px; height: 14px; bottom: 30%; right: -20px; opacity: 0.6; }

/* ============================================
   ABOUT SECTION
   ============================================ */
#ihc-about {
  background: var(--color-bg);
}

.ihc-about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.ihc-about-content p {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.ihc-about-content strong {
  color: var(--color-foreground);
}

.ihc-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ihc-info-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color 0.2s ease;
}

.ihc-info-card:hover { border-color: rgba(111, 194, 103, 0.3); }

.ihc-info-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.ihc-info-card-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-foreground);
  font-family: var(--font-display);
}

.ihc-linkedin-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  color: var(--color-foreground);
}

.ihc-linkedin-card:hover {
  border-color: rgba(111, 194, 103, 0.3);
  background: var(--color-secondary);
  color: var(--color-foreground);
}

.ihc-linkedin-card .label { font-size: 15px; font-weight: 600; }

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
#ihc-experience { background: var(--color-bg); }

.ihc-exp-intro { margin-bottom: 48px; }

.ihc-exp-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px 48px;
  transition: border-color 0.2s ease;
}

.ihc-exp-card:hover { border-color: rgba(111, 194, 103, 0.2); }

.ihc-exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 12px;
}

.ihc-exp-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-foreground);
}

.ihc-exp-date {
  font-size: 13px;
  color: var(--color-muted);
  background: var(--color-secondary);
  padding: 4px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.ihc-exp-company {
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 4px;
}

.ihc-exp-location {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.ihc-exp-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin-bottom: 36px;
  list-style: none;
}

.ihc-exp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

.ihc-exp-bullets li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background: rgba(111, 194, 103, 0.1);
  margin-top: 2px;
  position: relative;
}

.ihc-exp-bullets li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236fc267' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.ihc-exp-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ihc-meta-card {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 16px;
}

.ihc-meta-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.ihc-meta-card-value {
  font-size: 13px;
  color: var(--color-foreground);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
#ihc-expertise { background: var(--color-bg); }

.ihc-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.ihc-skill-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ihc-skill-card:hover {
  border-color: rgba(111, 194, 103, 0.3);
  transform: translateY(-2px);
}

.ihc-skill-icon {
  width: 44px;
  height: 44px;
  background: rgba(111, 194, 103, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.ihc-skill-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 8px;
}

.ihc-skill-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ============================================
   EDUCATION SECTION
   ============================================ */
#ihc-education { background: var(--color-bg); }

.ihc-edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.ihc-edu-list { display: flex; flex-direction: column; gap: 12px; }

.ihc-edu-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s ease;
}

.ihc-edu-card:hover { border-color: rgba(111, 194, 103, 0.3); }

.ihc-edu-card.featured { border-color: rgba(111, 194, 103, 0.2); }

.ihc-edu-icon {
  width: 40px;
  height: 40px;
  background: rgba(111, 194, 103, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.ihc-edu-info { flex: 1; }

.ihc-edu-degree {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 4px;
}

.ihc-edu-institution {
  font-size: 13px;
  color: var(--color-muted);
}

.ihc-edu-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(111, 194, 103, 0.12);
  padding: 3px 10px;
  border-radius: 9999px;
  white-space: nowrap;
}

.ihc-certs-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px;
}

.ihc-certs-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ihc-cert-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
}

.ihc-cert-item:last-child { border-bottom: none; }

.ihc-cert-check {
  width: 18px; height: 18px; min-width: 18px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background: rgba(111,194,103,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236fc267' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
  margin-top: 2px;
}

/* ============================================
   PRESS SECTION
   ============================================ */
#ihc-press { background: var(--color-bg); }

.ihc-press-featured {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color 0.2s ease;
}

.ihc-press-featured:hover { border-color: rgba(111, 194, 103, 0.3); }

.ihc-press-tv-icon {
  width: 48px; height: 48px;
  background: rgba(111, 194, 103, 0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); flex-shrink: 0;
}

.ihc-press-featured-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 8px;
}

.ihc-press-featured-desc {
  font-size: 14px; color: var(--color-muted); line-height: 1.6;
}

.ihc-press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ihc-press-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.ihc-press-item:hover {
  border-color: rgba(111, 194, 103, 0.3);
  background: var(--color-secondary);
}

.ihc-press-item-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ihc-press-icon {
  width: 32px; height: 32px;
  background: rgba(111, 194, 103, 0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}

.ihc-press-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-foreground);
}

.ihc-press-arrow { color: var(--color-muted); font-size: 14px; }

/* ============================================
   CONTACT SECTION
   ============================================ */
#ihc-contact {
  background: var(--color-bg);
  text-align: center;
}

.ihc-contact-intro {
  max-width: 600px;
  margin: 0 auto 64px;
}

.ihc-contact-intro h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--color-foreground);
  margin-bottom: 20px;
  line-height: 1.1;
}

.ihc-contact-intro p {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
}

.ihc-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 48px;
}

.ihc-contact-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  transition: border-color 0.2s ease;
}

.ihc-contact-card:hover { border-color: rgba(111, 194, 103, 0.3); }

.ihc-contact-card-icon {
  color: var(--color-primary);
  margin-bottom: 12px;
}

.ihc-contact-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.ihc-contact-card-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-foreground);
  font-family: var(--font-display);
}

.ihc-send-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-primary-dark) !important;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  cursor: pointer;
  border: none;
}

.ihc-send-btn:hover {
  opacity: 0.9;
  color: var(--color-primary-dark) !important;
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
#ihc-footer {
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
}

.ihc-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ihc-footer-copy {
  font-size: 13px;
  color: var(--color-muted);
}

.ihc-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ihc-footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ihc-footer-links a:hover { color: var(--color-primary); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.ihc-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ihc-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.ihc-fade-in-delay-1 { transition-delay: 0.1s; }
.ihc-fade-in-delay-2 { transition-delay: 0.2s; }
.ihc-fade-in-delay-3 { transition-delay: 0.3s; }
.ihc-fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .ihc-hero-inner { grid-template-columns: 1fr; }
  .ihc-hero-image-wrap { display: none; }
  .ihc-about-grid { grid-template-columns: 1fr; }
  .ihc-exp-bullets { grid-template-columns: 1fr; }
  .ihc-exp-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .ihc-skills-grid { grid-template-columns: repeat(2, 1fr); }
  .ihc-edu-grid { grid-template-columns: 1fr; }
  .ihc-press-grid { grid-template-columns: repeat(2, 1fr); }
  .ihc-contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .ihc-nav { display: none; }
  .ihc-hamburger { display: flex; }
  .ihc-skills-grid { grid-template-columns: 1fr; }
  .ihc-press-grid { grid-template-columns: 1fr; }
  .ihc-exp-meta-grid { grid-template-columns: 1fr 1fr; }
  .ihc-exp-card { padding: 28px 24px; }
  .ihc-hero-stats { gap: 28px; }
  .ihc-hero-contact-info { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================
   WORDPRESS & ELEMENTOR OVERRIDES
   ============================================ */
.elementor-section { width: 100%; }
.wp-block-group { width: 100%; }
body.page-template-default .site-content { padding-top: 0; }
