/* =========================================
   apnaHR – Main Stylesheet
   ========================================= */

:root {
  --purple-900: #4c1d95;
  --purple-700: #6d28d9;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-100: #ede9fe;
  --purple-50:  #f5f3ff;
  --dark:       #0f0a1e;
  --dark-2:     #1a1135;
  --text:       #1e1b4b;
  --text-muted: #6b7280;
  --white:      #ffffff;
  --gray-50:    #f8f9ff;
  --gray-100:   #f1f0f9;
  --accent:     #10b981;
  --shadow-sm:  0 2px 8px rgba(109,40,217,.08);
  --shadow-md:  0 8px 32px rgba(109,40,217,.14);
  --shadow-lg:  0 20px 60px rgba(109,40,217,.18);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  28px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { display: inline-block; background: var(--purple-100); color: var(--purple-600); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: 6px 16px; border-radius: 50px; margin-bottom: 14px; }
.section-header h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--dark); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-600); color: var(--white);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: .95rem;
  padding: 14px 32px; border-radius: 50px;
  transition: all .25s ease; box-shadow: 0 4px 20px rgba(124,58,237,.35);
}
.btn-primary:hover { background: var(--purple-700); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,.45); }
.btn-primary.full-width { width: 100%; justify-content: center; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--purple-600); color: var(--purple-600);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: .95rem;
  padding: 13px 32px; border-radius: 50px; transition: all .25s ease;
}
.btn-outline:hover { background: var(--purple-600); color: white; transform: translateY(-2px); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,58,237,.08);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-spacer { height: 72px; }
.navbar { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.5rem; }
.logo-apna { color: var(--dark); }
.logo-hr { color: var(--purple-600); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 16px; border-radius: 8px; font-size: .9rem; font-weight: 500; color: var(--text-muted); transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--purple-600); background: var(--purple-50); }
.nav-links .nav-cta { background: var(--purple-600); color: white; border-radius: 50px; padding: 10px 22px; }
.nav-links .nav-cta:hover { background: var(--purple-700); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== LOGO IMAGE ===== */
.logo { display: flex; align-items: center; }
.logo-img {
  height: 44px; width: auto; object-fit: contain;
  border-radius: 4px; display: block;
}
.logo-img-footer {
  height: 38px;
  background: white;
  border-radius: 8px;
  padding: 4px 10px;
}

/* ===== HERO SLIDER ===== */
.hero-slider-section {
  position: relative; overflow: hidden;
  background: #0f0a1e;
  /* sits right below fixed header */
}
.hero-slider { position: relative; width: 100%; }

/* Each slide */
.slide {
  display: none;
  position: relative;
  width: 100%;
  line-height: 0; /* remove img gap */
}
.slide.active { display: block; }
.slide-img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Thin hover overlay for CTA button */
.slide-overlay {
  position: absolute;
  bottom: 8%;
  left: 5%;
  display: flex;
  align-items: center;
}
.slide-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-600); color: white;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 14px 34px; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(124,58,237,.5);
  transition: all .25s ease; letter-spacing: .02em;
}
.slide-cta-btn:hover { background: var(--purple-700); transform: translateY(-2px) scale(1.03); }
.slide-cta-dark {
  background: #1e1463; box-shadow: 0 6px 24px rgba(30,20,99,.5);
}
.slide-cta-dark:hover { background: #150e4e; }

/* Arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 20; cursor: pointer; border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: all .2s ease; color: var(--purple-700);
}
.slider-arrow:hover { background: white; transform: translateY(-50%) scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,.25); }
.slider-arrow svg { width: 22px; height: 22px; }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Dots */
.slider-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 20;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: 2px solid rgba(255,255,255,.7);
  cursor: pointer; transition: all .25s; padding: 0;
}
.dot.active { background: white; width: 28px; border-radius: 5px; border-color: white; }

/* Slide fade animation */
@keyframes slideFadeIn {
  from { opacity: 0; transform: scale(1.015); }
  to   { opacity: 1; transform: scale(1); }
}
.slide.active { animation: slideFadeIn .5s ease forwards; }

/* ===== TRANSFORM BANNER ===== */
.transform-banner { background: var(--dark); padding: 100px 24px; text-align: center; }
.transform-banner h2 { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 20px; }
.transform-banner p { color: rgba(255,255,255,.7); max-width: 620px; margin: 0 auto 36px; font-size: 1.05rem; line-height: 1.7; }

/* ===== PROCESS ===== */
.process-section { padding: 80px 24px; background: white; }
.process-heading { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 56px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-card {
  background: white; border-radius: 12px; padding: 36px 28px 32px;
  text-align: center;
  border: 1px solid #e8e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: all .3s ease;
}
.process-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(124,58,237,.12); border-color: rgba(124,58,237,.2); }
.process-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: #f0eeff; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.process-icon-wrap svg { width: 30px; height: 30px; }
.process-card h4 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); line-height: 1.35; }
.process-card p { font-size: .87rem; color: #6b7280; line-height: 1.65; }

/* ===== COMMITMENT ===== */
.commitment-section { padding: 100px 24px; }
.commitment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.img-blob { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--purple-100); aspect-ratio: 4/3; }
.img-blob img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.commitment-text h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.commitment-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.commitment-text .btn-primary { margin-top: 8px; }

/* ===== WHY US ===== */
.why-us-section { padding: 100px 24px; background: var(--purple-50); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: white; border-radius: var(--radius); padding: 36px 28px; border: 1px solid rgba(124,58,237,.1); transition: all .3s; }
.why-card.featured { background: var(--purple-600); color: white; transform: scale(1.04); box-shadow: var(--shadow-lg); }
.why-card:not(.featured):hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--purple-400); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h4 { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.why-card.featured h4 { color: white; }
.why-card p { font-size: .9rem; line-height: 1.65; }
.why-card.featured p { color: rgba(255,255,255,.85); }

/* ===== INDUSTRIES ===== */
/* .industries-section { padding: 80px 24px; background: white; overflow: hidden; }
.industries-heading { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--purple-700); text-align: center; margin-bottom: 56px; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card {
  background: white; border-radius: 12px; padding: 36px 20px 28px;
  text-align: center; border: 1px solid #e8e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: all .3s ease; cursor: default;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(124,58,237,.12); border-color: rgba(124,58,237,.2); }
.industry-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: #f4f4f8; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.industry-icon-wrap svg { width: 40px; height: 40px; }
.industry-card h4 { font-family: 'Sora', sans-serif; font-size: .95rem; font-weight: 700; color: var(--dark); line-height: 1.4; } */




/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.industry-card {
  background: #fff;
  border: 1.5px solid var(--border, #e5e7eb);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark, #111827);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: default;
}

.industry-card:hover {
  border-color: var(--purple-600, #7c3aed);
  box-shadow: 0 4px 20px rgba(124, 58, 237, .1);
  transform: translateY(-2px);
}

.industry-card-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-light, #ede9fe);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple-600, #7c3aed);
}

/* Responsive */
@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ===== EXPERTISE ===== */
.expertise-section { padding: 100px 24px; background: var(--dark); }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.expertise-text .section-tag { background: rgba(167,139,250,.15); color: var(--purple-400); }
.expertise-text h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: white; margin-bottom: 20px; }
.expertise-text p { color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 16px; }
/* Image: natural size, centered, no stretch */
.expertise-img-wrap {
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,.04);
  padding: 16px;
}
.expertise-img-wrap img {
  max-width: 100%; height: auto;
  border-radius: var(--radius);
  display: block; object-fit: contain;
}

/* ===== CLIENTS ===== */
.clients-section { padding: 80px 24px; background: var(--gray-50); }
.clients-track-wrapper { overflow: hidden; position: relative; }
.clients-track-wrapper::before,
.clients-track-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.clients-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--gray-50), transparent); }
.clients-track-wrapper::after { right: 0; background: linear-gradient(-90deg, var(--gray-50), transparent); }
.clients-track { display: flex; gap: 24px; animation: scroll-clients 30s linear infinite; width: max-content; }
.clients-track:hover { animation-play-state: paused; }
@keyframes scroll-clients { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-logo { min-width: 180px; height: 90px; background: white; border-radius: var(--radius-sm); padding: 16px 24px; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(0,0,0,.06); transition: box-shadow .2s; }
.client-logo:hover { box-shadow: var(--shadow-md); }
.client-logo img { max-width: 140px; max-height: 56px; width: auto; height: auto; object-fit: contain; display: block; filter: grayscale(30%); transition: filter .3s; }
.client-logo:hover img { filter: grayscale(0%); }
.client-placeholder { font-weight: 600; color: var(--text-muted); font-size: .88rem; text-align: center; }

/* ===== FAQ ===== */
.faq-section { padding: 100px 24px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(124,58,237,.12); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; text-align: left; font-family: 'Sora', sans-serif; font-size: .95rem; font-weight: 600; color: var(--dark); background: white; transition: background .2s; }
.faq-question:hover { background: var(--purple-50); }
.faq-item.open .faq-question { background: var(--purple-600); color: white; }
.faq-icon { font-size: 1.4rem; font-weight: 300; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 20px 24px; background: white; border-top: 1px solid rgba(124,58,237,.08); }
.faq-answer p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 24px; background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--text-muted); }
.contact-form { background: white; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 1px solid rgba(124,58,237,.15);
  border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: .95rem;
  color: var(--text); background: var(--gray-50); transition: all .25s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--purple-500); background: white; box-shadow: 0 0 0 3px rgba(124,58,237,.1); }
.form-group textarea { resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-check input { width: 18px; height: 18px; accent-color: var(--purple-600); margin-top: 2px; flex-shrink: 0; }
.form-check label { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding: 72px 24px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,.55); }
.footer-logo { margin-bottom: 4px; display: inline-block; }
.footer-logo .logo-apna { color: white; }
.footer-logo .logo-hr { color: var(--purple-400); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; transition: background .2s; }
.social-links a:hover { background: var(--purple-600); }
.footer-col h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: .9rem; color: white; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .86rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul a:hover { color: var(--purple-400); }
.footer-col p { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer-contact { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; font-size: .86rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: transform .3s;
  color: white;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ===== INNER PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--purple-900), var(--purple-600)); padding: 80px 24px; text-align: center; color: white; }
.page-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { opacity: .8; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .85rem; opacity: .7; margin-top: 16px; }
.breadcrumb a:hover { opacity: 1; }
.content-section { padding: 80px 24px; }
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { font-family: 'Sora', sans-serif; font-size: 1.9rem; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.content-block h3 { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 600; margin: 32px 0 12px; color: var(--dark); }
.content-block p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

/* ===== SERVICES PAGE ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: white; border-radius: var(--radius); padding: 36px; border: 1px solid rgba(124,58,237,.1); text-align: center; transition: all .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--purple-400); }
.service-icon { font-size: 3rem; margin-bottom: 16px; }
.service-card h3 { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.service-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(124,58,237,.08); transition: all .3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumbnail { aspect-ratio: 16/9; background: var(--purple-100); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-body { padding: 24px; }
.blog-tag { display: inline-block; background: var(--purple-100); color: var(--purple-600); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
.blog-body h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); line-height: 1.4; }
.blog-body p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.blog-meta { margin-top: 16px; font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

/* ===== SUCCESS TOAST ===== */
.toast {
  position: fixed; bottom: 100px; right: 28px; z-index: 9999;
  background: var(--accent); color: white; padding: 14px 24px; border-radius: 12px;
  font-weight: 600; box-shadow: 0 8px 24px rgba(16,185,129,.4);
  transform: translateX(200px);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  pointer-events: none;
}
.toast.show {
  transform: translateX(0);
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-cards { max-width: 500px; margin: 0 auto; }
  .commitment-grid, .expertise-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: white; box-shadow: var(--shadow-md); padding: 12px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 0; padding: 14px 24px; border-bottom: 1px solid var(--gray-100); }
  .nav-links .nav-cta { margin: 12px 24px; border-radius: 50px; }
  .process-grid, .why-grid, .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
  .why-card.featured { transform: scale(1); }
  /* Slider mobile */
  .slider-arrow { width: 38px; height: 38px; }
  .slider-arrow svg { width: 18px; height: 18px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .slide-cta-btn { font-size: .85rem; padding: 11px 22px; }
  .slide-overlay { bottom: 5%; left: 50%; transform: translateX(-50%); }
  .logo-img { height: 36px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: center; }
  .hero-cards { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }




/* =====  SVG icons ===== */
