/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* CSS Variables */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(210, 29%, 24%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(210, 29%, 24%);
  --primary: hsl(220, 54%, 23%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(24, 100%, 50%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(0, 0%, 96%);
  --muted-foreground: hsl(210, 29%, 35%);
  --accent: hsl(24, 100%, 50%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(220, 13%, 91%);
  --navy: hsl(220, 54%, 23%);
  --navy-dark: hsl(220, 67%, 15%);
  --orange: hsl(24, 100%, 50%);
  --orange-hover: hsl(24, 100%, 42%);
  --gray-light: hsl(0, 0%, 96%);
  --footer-dark: hsl(220, 67%, 15%);
  --radius: 0.5rem;
  --shadow-card: 0 4px 20px -4px hsla(220, 54%, 23%, 0.1);
  --shadow-card-hover: 0 12px 40px -8px hsla(220, 54%, 23%, 0.2);
  --shadow-orange-glow: 0 0 20px hsla(24, 100%, 50%, 0.3);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

hr {
  border: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header nav {
  padding: 1rem 0;
}

.header .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  background-color: var(--secondary);
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary-foreground);
}

.logo-text {
  font-size: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-foreground);
}

/* Desktop Navigation */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-foreground);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--primary-foreground);
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.3s ease-out;
}

.mobile-nav.active {
  display: block;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav .container {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav .nav-link {
  padding: 0.5rem 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy-dark) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  overflow: hidden;
}

.falling-char {
  position: absolute;
  font-weight: 700;
  color: var(--primary-foreground);
  animation: fall 10s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}

.hero h1 {
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out forwards;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero h1 .highlight {
  color: var(--secondary);
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.5rem;
  }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  display: block;
}

/* Page Hero (About & Payment) */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy-dark) 100%);
  padding: 6rem 0;
  overflow: hidden;
  margin-top: 73px;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out forwards;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.page-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

/* Section Styles */
section {
  padding: 5rem 0;
  border: none;
  outline: none;
}

.section-heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 2.25rem;
  }
}

.section-divider {
  width: 4rem;
  height: 0.25rem;
  background-color: var(--secondary);
  margin: 0 auto 2rem;
  border-radius: 9999px;
}

.text-center {
  text-align: center;
}

.bg-white {
  background-color: var(--background);
}

.bg-muted {
  background-color: var(--muted);
}

/* Mission Section */
.mission-section {
  background-color: var(--background);
}

.mission-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.mission-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* Language Cards */
.language-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .language-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.language-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.language-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(255, 128, 0, 0.5);
}

.language-flag {
  width: 4rem;
  height: 4rem;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.875rem;
  transition: transform 0.3s;
}

.language-card:hover .language-flag {
  transform: scale(1.1);
}

.language-card h3 {
  font-size: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
}

.language-card ul {
  margin-bottom: 1.5rem;
}

.language-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.language-card li span:first-child {
  color: var(--secondary);
  margin-top: 0.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background-color: var(--orange-hover);
  box-shadow: 0 4px 14px -3px rgba(255, 128, 0, 0.4);
}

.btn-secondary:active {
  transform: scale(0.95);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: background-color 0.3s;
}

.benefit-item:hover {
  background-color: var(--muted);
}

.benefit-icon {
  background-color: rgba(255, 128, 0, 0.1);
  padding: 0.75rem;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
  transition: transform 0.3s;
}

.benefit-item:hover .benefit-icon svg {
  transform: scale(1.1) rotate(6deg);
}

.benefit-item h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Methodology Section */
.methodology-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.methodology-image {
  position: relative;
}

.methodology-image-inner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy-dark) 100%);
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.methodology-image-content {
  text-align: center;
  padding: 2rem;
}

.methodology-image-content .emoji {
  font-size: 3.75rem;
  margin-bottom: 1rem;
}

.methodology-image-content p {
  color: var(--primary-foreground);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75;
}

.methodology-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: 0 4px 14px -3px rgba(255, 128, 0, 0.4);
}

.methodology-content p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.methodology-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.methodology-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.methodology-list .check-icon {
  background-color: rgba(255, 128, 0, 0.1);
  padding: 0.375rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.methodology-list .check-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--secondary);
}

.methodology-list span {
  font-weight: 500;
  color: var(--foreground);
}

/* Footer */
.footer {
  background-color: var(--footer-dark);
  color: var(--primary-foreground);
}

.footer-content {
  display: grid;
  gap: 2rem;
  padding: 3rem 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  background-color: var(--secondary);
  padding: 0.5rem;
  border-radius: var(--radius);
}

.footer-logo .logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary-foreground);
}

.footer-logo span {
  font-size: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-item span,
.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.contact-item a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* About Page Styles */
.about-intro {
  max-width: 56rem;
  margin: 0 auto;
}

.about-intro h2 {
  font-size: 1.875rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.about-intro .text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.about-intro strong {
  color: var(--foreground);
}

/* Contact Cards */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(255, 128, 0, 0.5);
}

.contact-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(255, 128, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--secondary);
}

.contact-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.contact-card a:hover {
  color: var(--secondary);
}

/* Map Section */
.map-wrapper {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 4px solid var(--primary);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Mission Vision Cards */
.mission-vision-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mission-vision-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  padding: 2rem;
}

.mission-vision-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(255, 128, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-vision-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--secondary);
}

.mission-vision-card h3 {
  font-size: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.mission-vision-card p {
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* Payment Page Styles */
.notice-box {
  background-color: #fffbeb;
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 3rem;
  display: flex;
  gap: 1rem;
}

.notice-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.notice-box h3 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.notice-box p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.payment-section {
  max-width: 56rem;
  margin: 0 auto;
}

.payment-section h2 {
  font-size: 1.875rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.payment-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.payment-content h3 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.policy-box {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

.policy-box p {
  color: var(--muted-foreground);
  line-height: 1.75;
}

.important-box {
  background-color: #fef2f2;
  border-left: 4px solid #ef4444;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.important-box h3 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.important-box p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.payment-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.payment-cta p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* Help Section */
.help-section {
  background-color: var(--muted);
  text-align: center;
}

.help-section h2 {
  font-size: 1.875rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.help-section > .container > p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.help-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.help-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.help-card h3 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.help-card a {
  color: var(--secondary);
}

.help-card a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fall {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(calc(100vh + 100px));
    opacity: 0;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fall {
  animation: fall 10s linear infinite;
}

/* Utility Classes */
.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

/* In-view animations (JS controlled) */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.fade-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease-out;
}

.slide-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease-out;
}

.slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}
