@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --accent-purple: #7c3aed;
  --accent-blue: #2563eb;
  --accent-gradient: linear-gradient(135deg, #7c3aed, #2563eb);
  --accent-gradient-hover: linear-gradient(135deg, #9333ea, #3b82f6);
  --text-main: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.07);
  --container: 1080px;
  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.section {
  padding: 4rem 0;
}

.section-hero {
  padding: 5rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.section-title:hover {
  color: var(--accent-purple);
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  transition: color 0.3s ease;
}

.section-text:hover {
  color: var(--text-main);
}

.section-subtitle {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 700px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-gradient-hover);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5);
}

.btn-primary-light {
  background: #ffffff;
  color: var(--accent-purple);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.btn-primary-light:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline-light:hover {
  color: #ffffff;
  border-color: transparent;
  background: var(--accent-gradient-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-tooltip {
  position: absolute;
  left: 75px;
  background: var(--text-main);
  color: #fff;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* LOGO BOX STYLE */
/* LOGO BOX STYLE WITH ANIMATION */
/* LOGO IMAGE STYLES */
/* NAVBAR ADJUSTMENT */
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px; /* Increased from 70px to fit bigger logo */
  padding: 0.5rem 0;
}

/* LOGO IMAGE STYLES */
/* CLEAN LOGO STYLE (No Box/Border) */
/* STATIC LOGO STYLES (No Hover, Purple Border) */
/* LOGO STYLES (With Hover Effect) */
.logo-img-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  cursor: pointer;
}

.logo-image {
  height: 75px; 
  width: auto;
  display: block;
  object-fit: contain;
  
  /* Initial State: Light purple border */
  border: 2px solid rgba(124, 58, 237, 0.3); 
  border-radius: 8px;
  padding: 5px;
  
  /* Smooth Animation Settings */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* HOVER EFFECT */
.logo-img-wrapper:hover .logo-image {
  transform: scale(1.08); /* Zooms in slightly */
  border-color: rgba(124, 58, 237, 0.8); /* Border gets darker purple */
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3); /* Adds a soft purple glow */
}

/* Hover Animation (Optional) */

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-purple);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-main);
}

.nav-menu-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-menu-mobile a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu-mobile a:hover {
  color: var(--accent-purple);
}

.nav-menu-mobile.open {
  display: flex;
}

/* HERO SECTION */
.hero {
  background: var(--accent-gradient);
  color: #ffffff;
  padding: 5rem 0;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #e5e7eb;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* HERO PANEL (if used) */
.hero-panel {
  background: rgba(15, 23, 42, 0.15);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1.5rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.25);
  transition: all 0.3s ease;
}

.hero-panel:hover {
  background: rgba(15, 23, 42, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 24px 50px rgba(124, 58, 237, 0.35);
}

.hero-panel-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.hero-panel-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.75rem;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.hero-panel-card:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* SERVICES GRID */
.services-section {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.25);
  border-color: var(--accent-purple);
  color: #ffffff;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #ffffff;
}

/* BRAND MESSAGE */
.brand-message {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* CTA BOX */
.cta-box-section {
  padding: 3rem 0;
}

.cta-box {
  background: var(--accent-gradient);
  color: #ffffff;
  padding: 3.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(124, 58, 237, 0.5);
}

.cta-text {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* PROCESS STEPS */
.process-section {
  padding: 4rem 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.process-step {
  text-align: center;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  background: var(--accent-gradient-hover);
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5);
}

.process-image {
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.process-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.process-step:hover .process-image img {
  transform: scale(1.08);
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.process-step:hover h3 {
  color: var(--accent-purple);
}

/* WHY PARTNER WITH US */
.why-section {
  background: var(--bg-soft);
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.25);
  border-color: var(--accent-purple);
  color: #ffffff;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

/* CATEGORIES GRID */
.categories-section {
  padding: 4rem 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover img {
  transform: scale(1.12);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  transition: background 0.3s ease;
}

.category-overlay h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
}

/* FINAL CTA */
.final-cta {
  background: var(--bg-soft);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.cta-tagline {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.cta-subtext {
  font-size: 1.6rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.email-link {
  font-size: 1.15rem;
  color: var(--accent-purple);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-purple);
  transition: all 0.3s ease;
}

.email-link:hover {
  color: var(--accent-blue);
  border-bottom-color: var(--accent-blue);
}

.impact-text {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-main);
  margin-top: 2rem;
  letter-spacing: -1px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* PAGE HEADER */
.page-header {
  background: var(--accent-gradient);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 1.15rem;
  color: #e5e7eb;
}

/* SERVICE LIST (What We Do page) */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-item {
  background: var(--bg-soft);
  border-left: 4px solid var(--accent-purple);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: var(--bg);
  border-left-width: 6px;
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.service-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.service-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* WORKFLOW GRID (How We Work) */
.how-we-work {
  background: var(--bg-soft);
  padding: 4rem 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.workflow-step {
  text-align: center;
  background: var(--bg);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.workflow-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
  border-color: var(--accent-purple);
}

.workflow-number {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: var(--accent-gradient);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease;
}

.workflow-step:hover .workflow-number {
  background: var(--accent-gradient-hover);
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5);
}

.workflow-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.workflow-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CONTENT SECTION (About page) */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 3rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}

.content-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 999px;
}

.content-section p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-inline {
  margin-top: 2.5rem;
  text-align: center;
}

/* CONTACT FORM */
.contact-form {
  max-width: 750px;
  margin: 0 auto;
  background: var(--bg-soft);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: var(--font-main);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  transition: all 0.3s ease;
}

.form-input:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
  transform: translateY(-1px);
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.field-error {
  display: block;
  font-size: 0.85rem;
  color: #ef4444;
  margin-top: 0.35rem;
}

textarea.form-input {
  resize: vertical;
  min-height: 130px;
}

/* GRID UTILITIES */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* CARD ANIMATIONS */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.card-soft {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: cardFadeIn 0.5s ease-out both;
}

.card::before,
.card-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.card:hover,
.card-soft:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.25);
  border-color: var(--accent-purple);
}

.card:hover::before,
.card-soft:hover::before {
  opacity: 0.08;
}

/* ICON ANIMATION */
.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.icon-inner {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--accent-purple);
  transition: all 0.3s ease;
}

.card:hover .icon-circle,
.card-soft:hover .icon-circle {
  transform: translateY(-5px) scale(1.15);
  border-color: var(--accent-blue);
  background: rgba(124, 58, 237, 0.12);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.card:hover .icon-inner,
.card-soft:hover .icon-inner {
  background: var(--accent-blue);
}

/* CARD TEXT */
.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.card:hover .card-title,
.card-soft:hover .card-title {
  color: var(--accent-purple);
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.card:hover .card-text,
.card-soft:hover .card-text {
  color: var(--text-main);
}

/* TIMELINE */
.timeline {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.timeline-step {
  position: relative;
  padding-top: 0.5rem;
  transition: transform 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-6px);
}

.timeline-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease;
}

.timeline-step:hover .timeline-badge {
  background: var(--accent-gradient-hover);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5);
  transform: scale(1.2) rotate(10deg);
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  transition: color 0.3s ease;
}

.timeline-step:hover .timeline-title {
  color: var(--accent-purple);
}

.timeline-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.timeline-step:hover .timeline-text {
  color: var(--text-main);
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.3);
  border-color: var(--accent-purple);
}

.stat-card:hover::before {
  opacity: 0.1;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.stat-card:hover .stat-value {
  color: var(--accent-purple);
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
  color: var(--text-main);
}

/* PRODUCTS GRID */
.products-section {
  padding: 4rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.product-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.25);
  border-color: var(--accent-purple);
}

.product-image-wrap {
  background: var(--bg-soft);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.product-image-wrap img {
  max-height: 150px;
  width: auto;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.08);
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-purple);
  font-weight: 600;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-purple);
}

.product-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  background: var(--bg-soft);
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.product-cta:hover {
  background: var(--accent-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(124, 58, 237, 0.3);
}

/* FADE-IN SCROLL ANIMATIONS */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
.footer {
  background: var(--text-main);
  color: #d1d5db;
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 3px solid var(--accent-purple);
}

.footer p {
  transition: color 0.3s ease;
}

.footer p:hover {
  color: #ffffff;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
  .hero-heading {
    font-size: 2.5rem;
  }

  .grid-4,
  .stats-grid,
  .timeline,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .impact-text {
    font-size: 2.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .features-grid,
  .categories-grid,
  .workflow-grid,
  .process-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .stats-grid,
  .timeline,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-heading {
    font-size: 1.75rem;
  }

  .cta-tagline {
    font-size: 1.6rem;
  }

  .cta-subtext {
    font-size: 1.2rem;
  }

  .impact-text {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    left: 15px;
    bottom: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
/* VALUES GRID (About Page) */
.values-section {
  background: var(--bg); 
  padding: 4rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(37, 99, 235, 0.08)); 
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.15);
  border-color: var(--accent-purple);
}

.value-icon {
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.value-icon svg {
  stroke-width: 1.5px;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive adjustment */
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
/* Animated White Border on Hover for Primary Buttons */
.btn-primary {
  position: relative;
  z-index: 1;
  border: 2px solid transparent; /* Reserve space */
  transition: all 0.3s ease;
}

.btn-primary:hover {
  
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 0 0 2px var(--accent-purple), 
    0 0 0 4px #ffffff,              
    0 12px 30px rgba(124, 58, 237, 0.5); 
}
/* --- CONTACT FORM CONTAINER ANIMATION --- */
.contact-form {
  max-width: 750px;
  margin: 0 auto;
  background: var(--bg-soft);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth physics */
  position: relative;
  overflow: hidden;
}

/* Hover Effect on the Whole Form Box */
.contact-form:hover {
  transform: translateY(-8px); /* Lifts up */
  box-shadow: 0 25px 60px rgba(124, 58, 237, 0.15); /* Purple glow shadow */
  border-color: rgba(124, 58, 237, 0.3); /* Subtle purple border */
}

/* Optional: Top accent line that glows on hover */
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0); /* Hidden initially */
  transform-origin: left;
  transition: transform 0.4s ease;
}

.contact-form:hover::before {
  transform: scaleX(1); /* Slides in on hover */
}


/* --- INPUT FIELD ANIMATIONS & VALIDATION --- */

.form-group {
  position: relative;
  margin-bottom: 2rem; /* Spacing for error message */
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: var(--font-main);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 1. Focus State (Active Field) */
.form-input:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
  transform: translateY(-2px);
  background: #ffffff;
}

.form-input:focus + label {
  color: var(--accent-purple);
}

/* 2. Error State (Red Border + Shake) */
.form-input.error {
  border-color: #ef4444;
  background-color: #fff5f5; /* Very light red bg */
  animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}

.form-input.error:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
}

/* 3. Error Message Text (Slide Down) */
.field-error {
  display: block;
  font-size: 0.8rem;
  color: #ef4444;
  font-weight: 500;
  position: absolute;
  bottom: -1.3rem;
  left: 0;
  opacity: 0;
  transform: translateY(-8px); /* Start slightly up */
  transition: all 0.3s ease;
  pointer-events: none;
}

/* When input has .error, show the sibling .field-error */
.form-input.error ~ .field-error {
  opacity: 1;
  transform: translateY(0); /* Slide down into place */
}

/* 4. Shake Animation Keyframes */
@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}
@media (max-width: 600px) {
  .navbar-inner {
    height: 70px; /* Smaller navbar on mobile */
  }
  .logo-image {
    height: 55px; /* Smaller logo on mobile */
  }
}
/* SERVICE CARDS IMAGES */
.service-card .card-image {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    overflow: hidden;
    border-radius: 8px 8px 0 0; /* Rounded top corners only */
    margin-bottom: 1rem;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers area without squishing */
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* PRODUCT/BAGS IMAGES */
.product-image-wrapper {
    width: 100%;
    height: 250px; /* Taller for products */
    overflow: hidden;
    background-color: #f4f4f5; /* Light grey background for product */
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Or use 'contain' if you want to see the whole bag */
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.footer {
  background-color: #1f2937; /* Dark Grey/Blue background */
  color: #f3f4f6;            /* Light text color */
  padding-top: 4rem;
  margin-top: auto;          /* Pushes footer to bottom if page is short */
  border-top: 4px solid #7c3aed; /* Top accent border (Purple) */
}

.footer-content {
  display: grid;
  /* Responsive columns: fit as many as possible, min width 220px */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
}

/* --- COLUMN HEADERS --- */
.footer-col h3, 
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-logo {
  font-size: 1.8rem;
  color: #a78bfa; /* Light Purple Logo Text */
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d5db;
  max-width: 320px;
}

/* --- LINKS LIST (No Flicker Fix) --- */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: #9ca3af; /* Grey link color */
  text-decoration: none;
  font-size: 1rem;
  display: inline-block; /* Crucial for smooth transform */
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #a78bfa;      /* Purple on hover */
  transform: translateX(6px); /* Smooth slide right */
}

/* --- CONTACT INFO --- */
.contact-col p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.contact-col a {
  /* Reset hover slide for email link inside contact text */
  display: inline; 
  transform: none !important;
}

.contact-col a:hover {
  text-decoration: underline;
  color: #fff;
}

/* --- SOCIAL ICONS --- */
/* SOCIAL ICONS - PERFECTLY CENTERED */
/* FORCE CENTER SOCIAL ICONS */
/* ABSOLUTE CENTER FIX FOR ICONS */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  margin-left: 38px;
}

.social-link {
  /* Use Grid to force dead center */
  display: grid !important;
  place-items: center !important;
  
  width: 42px !important;
  height: 42px !important;
  
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  
  /* Kill any spacing that shifts it */
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0 !important;
  border: none !important;
  outline: none !important;
  
  transition: all 0.3s ease;
}

.social-link svg {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  fill: currentColor;
  /* Ensure SVG doesn't act like text */
  vertical-align: middle !important;
}

.social-link:hover {
  background-color: #7c3aed;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}


/* Force override any generic link hover effects that might shift it */
.footer-col .social-link {
  transform: none; 
}

.footer-col .social-link:hover {
  transform: translateY(-5px); /* Only lift up */
  background-color: #7c3aed;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}
/* --- COPYRIGHT BAR --- */
.footer-bottom {
  background-color: #111827; /* Darker bottom bar */
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

/* --- MOBILE RESPONSIVENESS --- */
/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  /* Center all footer content on mobile */
  .footer-content {
    text-align: center;
    justify-items: center; /* Centers Grid items if you used Grid */
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center; /* Forces flex children (like headers & lists) to center */
    width: 100%;         /* Ensure column takes full width */
  }
  
  /* Specifically center the social icons container */
  .social-icons {
    justify-content: center; /* Centers the icons horizontally */
    width: 100%;             /* Ensures container spans full width */
    margin: 1rem 0;          /* Add breathing room */
  }

  .footer-desc {
    margin: 0 auto;
    text-align: center;
  }
  
  .footer-logo {
    text-align: center;
    display: block;
    margin: 0 auto 1rem auto;
  }
}
/* --- INTRO SECTION ANIMATIONS --- */

/* Initial Text Styling */
.intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 2rem;
}

.intro-subtext {
  font-size: 1.1rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 2rem;
}

/* Purple Text Highlights */
.accent-text {
  color: #7c3aed;
  font-weight: 700;
}

/* Divider Line */
.intro-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  margin: 0 auto;
  border-radius: 2px;
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply Animation */
.fade-in-up {
  opacity: 0; /* Hidden initially */
  animation: fadeInUp 0.8s ease-out forwards; /* Run once and stay */
}

/* Delays for staggered effect */
.delay-200 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.6s;
}
/* --- HOW IT WORKS SECTION --- */

/* Main Grid Layout */
.process-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-card-modern {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.process-card-modern:hover {
  transform: translateY(-5px);
}

/* Header Styles */
.step-header {
  margin-bottom: 2rem;
}

.step-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.process-card-modern h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* --- STEP 1: DUAL BOXES LAYOUT --- */
.dual-boxes {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  height: 250px; /* Consistent height */
}

/* Individual Box Style */
.selection-box {
  position: relative;
  width: 45%;         /* Take up nearly half space each */
  height: 180px;      /* Fixed height for boxes */
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Hover Effect for Boxes */
.selection-box:hover {
  border-color: #a78bfa; /* Light purple */
  transform: scale(1.02);
}

/* The "Selected" Box (Right side) */
.selection-box.selected {
  border-color: #000000; /* Black border for selected item */
  border-width: 2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Image inside the box */
.box-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Black Checkmark Circle */
.check-badge {
  position: absolute;
  top: -10px;
  left: -10px; /* Moved to top-left like reference */
  width: 24px;
  height: 24px;
  background: #000000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

/* --- STEP 2 & 3: SINGLE IMAGE --- */
/* FORCE CENTER ALIGNMENT FIX */

.step-image-container {
  display: flex !important;           /* Force Flexbox */
  justify-content: center !important; /* Center Horizontally */
  align-items: center !important;     /* Center Vertically */
  height: 280px;                      /* Ensure enough height */
  width: 100%;
  position: relative;
  text-align: center;                 /* Fallback for inline images */
}

.step-img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;       /* auto margins align block elements */
  display: inline-block; /* allows text-align center to work */
  object-fit: contain;
}


/* --- BADGES & BUBBLES --- */
.status-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #e5e7eb;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  white-space: nowrap;
}

.chat-bubble {
  position: absolute;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  animation: floatBubble 3s infinite ease-in-out;
}

.left-bubble {
  top: 40px;
  left: 0;
  background: #1f2937;
  color: white;
  border-bottom-left-radius: 2px;
}

.right-bubble {
  top: 80px;
  right: 0;
  background: #d1fae5;
  color: #065f46;
  border-bottom-right-radius: 2px;
  animation-delay: 1.5s;
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.process-card-modern:nth-child(2) .step-img {
  height: 200px;       
  width: auto;       
  transform: scale(1.1); 
  position: relative;
  left: 15px;          
  top: -10px;          
}
