.schools-hero {
  text-align: center;
  padding: 120px 8%;
}

.schools-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.schools-hero p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}


.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.offer-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}


.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.process-step {
  background: white;
  padding: 25px;
  border-radius: 12px;
}


.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.impact-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
}


.school-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.school-form input,
.school-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.school-form button {
  padding: 12px;
  background: #5a2a82;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* GLOBAL */

:root {
  --primary: #5a2a82;
  --primary-hover: #451b66;
  --secondary: #ecb8ce;
  --bg-color: #faf9fc;
  --text-dark: #1f1a24;
  --text-light: #555;
  --white: #ffffff;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -3px rgba(90, 42, 130, 0.08), 0 4px 6px -2px rgba(90, 42, 130, 0.04);
  --shadow-lg: 0 20px 40px -5px rgba(90, 42, 130, 0.12), 0 10px 10px -5px rgba(90, 42, 130, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  margin: 0;
  font-family: 'Outfit', Arial, Helvetica, sans-serif;
  background: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
}

section {
  padding: 60px 8%;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 15px;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: 2.25rem;
  color: var(--primary);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: -20 px -60px;
  align-items: center;
  border-bottom: 1px solid var(--bg-muted);
  background: var(--bg-main);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.logo-box {
  background: var(--primary);
  color: var(--text-on-primary);
  /* width:;
     /* height:; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: bold;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 15px;
  transition: color 0.3s ease;
}

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

.login-btn {
  padding: 8px 18px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: var(--primary);
  color: #ffffff;
}


/* HERO */

.schools-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8% 80px;
  overflow: hidden;
  box-sizing: border-box;
  background: var(--bg-color);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(176, 141, 214, 0.4), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(236, 184, 206, 0.3), transparent 40%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.hero-split-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-text-content {
  flex: 1;
  text-align: left;
}

.hero-form-content {
  flex: 1;
  max-width: 500px;
  width: 100%;
}

.schools-hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: var(--primary);
  max-width: 900px;
  letter-spacing: -1px;
}

.schools-hero p {
  max-width: 600px;
  margin: 0 0 35px 0;
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1.7;
}

.primary-btn {
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary) 0%, #7c4aa3 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(90, 42, 130, 0.3);
  transition: var(--transition);
  font-family: inherit;
}

.primary-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(90, 42, 130, 0.4);
}

/* WHAT WE OFFER */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.offer-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.02);
  text-align: center;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(90, 42, 130, 0.1);
}

.offer-card h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.offer-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
}

/* TIMELINE */

.process-section {
  background: linear-gradient(to bottom, #ffffff, var(--bg-color));
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 60px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 25px;
  width: 4px;
  height: calc(100% - 50px);
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
  transform: translateX(-50%);
  border-radius: 4px;
}

.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 6px var(--bg-color), 0 4px 10px rgba(90, 42, 130, 0.3);
  transition: var(--transition);
}

.timeline-card {
  width: 42%;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.timeline-step:nth-child(odd) .timeline-card {
  margin-right: auto;
}

.timeline-step:nth-child(even) .timeline-card {
  margin-left: auto;
}

.timeline-step.active .timeline-card {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step.active .timeline-dot {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 0 6px var(--white), 0 4px 15px rgba(90, 42, 130, 0.4);
}

.timeline-card h3 {
  color: var(--primary);
  font-size: 1.25rem;
}

.timeline-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}






/* SECTION */

.impact-section {
  padding: 120px 8%;
  background: #faf9fc;
  text-align: center;
}

/* TITLE */

.impact-title {
  font-size: 38px;
  margin-bottom: 70px;
}

/* GRID */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */

.impact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 14px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);

  transition: all .35s ease;

  opacity: 0;
  transform: translateY(40px);
}

/* hover */

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* icon */

.impact-icon {
  font-size: 32px;
  margin-bottom: 18px;
}

/* text */

.impact-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2a2a2a;
}

.impact-card p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* animation */

.impact-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* responsive */

@media(max-width:1000px) {

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:600px) {

  .impact-grid {
    grid-template-columns: 1fr;
  }

}

/* CONTACT */

.schools-contact {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-color) 0%, rgba(236, 184, 206, 0.2) 100%);
  padding: 40px 8%;
}

.schools-contact h2 {
  font-size: 2.25rem;
}

.schools-contact p {
  color: var(--text-light);
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.school-form {
  max-width: 550px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.school-form input,
.school-form textarea,
.school-form select {
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid #eee;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-color);
}

.school-form input:focus,
.school-form textarea:focus,
.school-form select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(90, 42, 130, 0.1);
}

.school-form textarea {
  min-height: 140px;
  resize: vertical;
}

.school-form button {
  padding: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, #7c4aa3 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
  font-family: inherit;
  margin-top: 10px;
}

.school-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}



.footer {
  background: #0f0f0f;
  color: white;
  padding: 40px 10% 20px;
}


/* GRID */

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

/* FOOTER SECTION */

.footer {
  background: #4E1E70;
  color: #ffffff;
  ;
  padding: 40px 10% 20px 10%;
}


/* BRAND */

.footer-brand h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-brand p {
  color: #ffffff;
  font-size: 14px;
}

.logo-box {
  width: 40px;
  height: 40px;
  background: #4E1E70;
  color: var(--text-on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bold;
}


/* LINKS */

.footer-column h4 {
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-column a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent);
}


/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 14px;
}


/* SOCIAL */

.social-icons span {
  margin-left: 15px;
  color: #ffffff;
  ;
  cursor: pointer;
  transition: color 0.3s ease;
}

.social-icons span:hover {
  color: var(--accent);
}


/* MOBILE */

@media(max-width:900px) {

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

}


/* RESPONSIVE */

@media (max-width: 768px) {
  .navbar {
    padding: 20px 30px;
    flex-direction: column;
    gap: 15px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .schools-hero {
    padding: 120px 5% 80px;
  }

  .hero-split-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-text-content {
    text-align: center;
  }

  .schools-hero h1 {
    font-size: 2.5rem;
  }

  .schools-hero p {
    margin: 0 auto 30px auto;
  }

  .section-title,
  .impact-title,
  .schools-contact h2 {
    font-size: 2rem;
  }

  .timeline::before {
    left: 40px;
  }

  .timeline-dot {
    left: 40px;
  }

  .timeline-card {
    width: calc(100% - 100px);
  }

  .timeline-step:nth-child(odd) .timeline-card,
  .timeline-step:nth-child(even) .timeline-card {
    margin-left: 100px;
    margin-right: 0;
  }
}




.fade-item {
  opacity: 0;
  transform: scale(0.8);
}

.fade-item.visible {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.fade-item.item1 {
  animation-delay: 1s;
}

.fade-item.item2 {
  animation-delay: 0.2s;
}

.fade-item.item4 {
  animation-delay: 0.4s;
}

.fade-item.item5 {
  animation-delay: 0.6s;
}

.fade-item.item3 {
  animation-delay: 0.8s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}




@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

#parwah-timeline {
  --text-dark: #1b365d;
  --text-muted: #718096;
  --primary-green: #38a169;
  --light-green: #f0fdf4;
  --trad-bg: #f7fafc;
  --trad-border: #e2e8f0;
  --line-color: #cbd5e0;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f8fafc;
}

#parwah-timeline .comparison-section {
  max-width: 1000px;
  width: 100%;
}

#parwah-timeline .section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 60px;
  font-weight: 700;
}

#parwah-timeline .headers-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

#parwah-timeline .header-box {
  width: calc(50% - 40px);
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

#parwah-timeline .trad-header {
  background: white;
  color: var(--text-muted);
  border: 2px solid var(--trad-border);
}

#parwah-timeline .parwah-header {
  background: var(--primary-green);
  color: white;
  box-shadow: 0 10px 25px rgba(56, 161, 105, 0.3);
}

#parwah-timeline .timeline-container {
  position: relative;
  padding-bottom: 40px;
}

#parwah-timeline .center-line {
  position: absolute;
  top: 50px;
  bottom: 130px;
  left: 50%;
  width: 4px;
  background: var(--line-color);
  transform: translateX(-50%);
  border-radius: 2px;
}

#parwah-timeline .center-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--primary-green), #48bb78);
  border-radius: 2px;
  transition: height 2s ease-out;
}

#parwah-timeline .timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

#parwah-timeline .timeline-node {
  width: 30px;
  height: 30px;
  background: white;
  border: 4px solid var(--line-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#parwah-timeline .timeline-node.active {
  transform: translateX(-50%) scale(1);
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(56, 161, 105, 0.2);
}

#parwah-timeline .card {
  width: calc(50% - 50px);
  background: white;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
}

#parwah-timeline .card.left {
  transform: translateX(-40px);
  border: 1px solid var(--trad-border);
  background: var(--trad-bg);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#parwah-timeline .card.left.visible {
  opacity: 1;
  transform: translateX(0);
}

#parwah-timeline .card.right {
  transform: translateX(40px);
  border: 1px solid #c6f6d5;
  box-shadow: 0 10px 30px rgba(56, 161, 105, 0.08);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#parwah-timeline .card.right.visible {
  opacity: 1;
  transform: translateX(0);
}

#parwah-timeline .icon {
  font-size: 2.2rem;
  background: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#parwah-timeline .text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

#parwah-timeline .text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

#parwah-timeline .outcome-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

#parwah-timeline .outcome {
  width: calc(50% - 50px);
  text-align: center;
  padding: 15px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#parwah-timeline .outcome.visible {
  opacity: 1;
  transform: translateY(0);
}

#parwah-timeline .outcome-left {
  background: var(--trad-border);
  color: var(--text-muted);
}

#parwah-timeline .outcome-right {
  background: linear-gradient(90deg, #48bb78, #2f855a);
  color: white;
  box-shadow: 0 8px 20px rgba(56, 161, 105, 0.4);
}

#parwah-timeline .empty-slot {
  width: calc(50% - 50px);
}

@media(max-width:768px) {

  #parwah-timeline .center-line {
    left: 30px;
  }

  #parwah-timeline .timeline-node {
    left: 30px;
  }

  #parwah-timeline .headers-row {
    flex-direction: column;
  }

  #parwah-timeline .header-box {
    width: 100%;
    margin-bottom: 10px;
  }

  #parwah-timeline .timeline-row {
    flex-direction: column;
    align-items: flex-end;
  }

  #parwah-timeline .card {
    width: calc(100% - 70px);
    margin-bottom: 15px;
  }

  #parwah-timeline .empty-slot {
    display: none;
  }

  #parwah-timeline .outcome-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }

  #parwah-timeline .outcome {
    width: calc(100% - 70px);
  }

}




#reachout-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: #f5f6f8;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.reachout-container {

  width: 100%;
  max-width: 900px;

  background: #ffffff;

  padding: 50px 40px;

  border-radius: 24px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.reachout-title {

  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;

  margin-bottom: 30px;
}

.reachout-form {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.reachout-form input,
.reachout-form select,
.reachout-form textarea {

  width: 100%;

  padding: 16px 18px;

  border-radius: 12px;

  border: 1px solid #e3e5e8;

  font-size: 16px;

  outline: none;

  background: #fafafa;
}

.reachout-form input:focus,
.reachout-form select:focus,
.reachout-form textarea:focus {

  border-color: #6b5cff;
  background: white;
}

.full-width {

  grid-column: 1 / -1;
}

textarea {

  min-height: 140px;
  resize: none;
}

/* button */

.reachout-btn {

  grid-column: 1 / -1;

  margin-top: 10px;

  padding: 16px;

  border: none;

  border-radius: 14px;

  font-size: 18px;
  font-weight: 600;

  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, #7c4aa3 100%);

  cursor: pointer;

  transition: 0.2s;
}

.reachout-btn:hover {

  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(80, 70, 255, 0.25);
}

/* mobile */

@media(max-width:700px) {

  .reachout-form {

    grid-template-columns: 1fr;

  }

}

/* Implementation Section */
#implementation.section-container {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 20px;
}

#implementation .section-title {
  text-align: center;
  font-size: 2rem;
  color: #1b365d;
  margin-bottom: 40px;
  font-weight: 700;
}

#implementation .flex-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

#implementation .card {
  display: block;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  width: 230px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(56, 161, 105, 0.1);
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  cursor: pointer;
}

#implementation .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #38a169, #48bb78);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

#implementation .card.visible:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(56, 161, 105, 0.12);
  border-color: #c6f6d5;
  background: #f0fdf4;
}

#implementation .card.visible:hover::before {
  transform: scaleX(1);
}

#implementation .icon-box {
  font-size: 3.5rem;
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#implementation .card.visible:hover .icon-box {
  transform: scale(1.15) rotate(5deg);
}

#implementation .card h4 {
  font-size: 1.1rem;
  color: #1b365d;
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: 700;
}

#implementation .card p {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.5;
}

#implementation .arrow {
  color: #ecc94b;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

#implementation .dashed-arrow {
  width: 40px;
  height: 2px;
  background-image: linear-gradient(to right, #ecc94b 50%, transparent 50%);
  background-size: 10px 100%;
  position: relative;
}

#implementation .dashed-arrow::after {
  content: '▶';
  position: absolute;
  right: -10px;
  top: -12px;
  color: #ecc94b;
  font-size: 18px;
}

#implementation .bottom-banner {
  background: linear-gradient(90deg, #48bb78, #2f855a);
  color: white;
  text-align: center;
  padding: 10px 30px;
  border-radius: 30px;
  display: inline-block;
  margin: 30px auto 0 auto;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(72, 187, 120, 0.3);
}

#implementation .center-wrapper {
  text-align: center;
  width: 100%;
}

#implementation .seq-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#implementation .seq-item.visible {
  opacity: 1;
  transform: translateX(0);
}