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

:root {
  --background: #ffffff;
  --foreground: #1c1645;
  --text-secondary: #6b7280;
  --accent: #93b8da;
  --surface-secondary: #eef4f8;
  --error: #f65a5b;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --spacing-container: 1.5rem;
}

@media (min-width: 768px) {
  :root {
    --spacing-container: 2rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  width: 100vw;
  max-width: 100%;
}

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

a {
  color: inherit;
}

/* -------------------
   Typography
------------------- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-super { letter-spacing: 0.2em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.2; }
.leading-snug { line-height: 1.375; }

.text-accent { color: var(--accent); }
.text-foreground { color: var(--foreground); }
.text-text-secondary { color: var(--text-secondary); }
.text-white { color: white; }

/* Dynamic Typography scaling */
.heading-hero {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -0.05em;
}

.heading-section {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

/* -------------------
   Layout Utilities
------------------- */
.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-container);
  padding-right: var(--spacing-container);
}

.section-py {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-py {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* -------------------
   Buttons & Badges
------------------- */
.pill-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(147, 184, 218, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(147, 184, 218, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  height: 3.5rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 1.125rem;
  font-family: inherit;
}

@media (min-width: 768px) {
    .btn {
        height: 4.5rem;
        padding: 0 2.5rem;
    }
}

.btn-primary {
  background-color: var(--foreground);
  color: white;
  box-shadow: 0 20px 50px rgba(28,22,69,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(28,22,69,0.2);
  background-color: #000;
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 2px solid rgba(28,22,69,0.05);
}

.btn-outline:hover {
  border-color: rgba(147, 184, 218, 0.2);
  background-color: rgba(147, 184, 218, 0.05);
}

.btn-white-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-white-outline:hover {
    border-color: rgba(255,255,255,0.4);
    background-color: rgba(255,255,255,0.05);
}

.btn-white {
    background-color: white;
    color: var(--foreground);
    box-shadow: 0 30px 60px rgba(255,255,255,0.1);
}

.btn-white:hover {
    background-color: rgba(255,255,255,0.9);
    transform: scale(1.05);
}

/* -------------------
   Navigation
------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.5s ease;
}

nav {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--spacing-container);
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 60;
  position: relative;
}
.logo a {
  text-decoration: none;
}

.logo img {
  height: 4.5rem;
  width: auto;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

/* Logo Text Structure */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.logo-container img {
  height: 4.5rem;
  width: auto;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: left;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: -0.03em;
}

.logo-title .equi {
  color: #82c0f0;
}

.logo-title .tech {
  color: #1b4382;
}

.logo-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1b4382;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em;
  margin-top: 0.15rem;
}

@media (min-width: 768px) {
  .logo-title {
    font-size: 1.85rem;
  }
  .logo-subtitle {
    font-size: 1.05rem;
  }
}


.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--foreground);
  font-weight: 600;
}

.nav-links a.btn-primary, .nav-links a.btn-primary:hover {
  color: white;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--foreground);
  cursor: pointer;
  z-index: 60;
  position: relative;
  background: none;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--foreground);
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-overlay .nav-links-mobile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.mobile-nav-overlay a {
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: block;
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a:focus {
  color: white;
  transform: translateX(4px);
}

/* When menu is open, keep hamburger color the same */
.menu-btn.menu-open {
  color: var(--foreground);
}

/* -------------------
   Backgrounds & Orbs
------------------- */
.bg-dot-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
}

.blob-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}

/* -------------------
   Hero Section
------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: white;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.hero-line {
  display: block;
}

.hero-line-highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
  z-index: 1;
}

.hero-line-highlight::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 100%;
  height: 33.333%;
  background-color: rgba(147, 184, 218, 0.2);
  z-index: -1;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 500;
  max-width: 48rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.hero p span {
  color: var(--foreground);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 24rem;
  margin-top: 1rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    width: auto;
    padding: 0;
  }
}

/* -------------------
   Features Section
------------------- */
.features-section {
  background-color: white;
  border-top: 1px solid #f3f4f6;
  position: relative;
}

.features-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .features-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  padding-top: 2.5rem;
  border-top: 2px solid rgba(28, 22, 69, 0.05);
  transition: border-color 0.7s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.feature-item:hover {
  border-color: var(--foreground);
}

.feature-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
}

.feature-item h4 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--foreground);
  margin-bottom: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.feature-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.625;
  font-weight: 500;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .feature-item p {
    font-size: 1.125rem;
  }
}

.feature-link {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}

.feature-item:hover .feature-link {
  gap: 1rem;
}

.feature-link .line {
  width: 2rem;
  height: 2px;
  background-color: var(--foreground);
}

/* -------------------
   How It Works (Dark Section)
------------------- */
.how-it-works {
  background-color: var(--foreground);
  color: white;
  overflow: hidden;
  box-shadow: inset 0 40px 80px rgba(0,0,0,0.2);
}

.how-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .how-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 6rem;
  }
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .how-grid {
    gap: 6rem;
  }
}

.how-step {
  display: flex;
  flex-direction: column;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.step-label {
  font-size: 0.75rem;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(147, 184, 218, 0.2);
  border-radius: 9999px;
  white-space: nowrap;
}

.step-line {
  height: 1px;
  flex: 1;
  background-color: rgba(255,255,255,0.1);
  transition: background-color 0.5s ease;
}

.how-step:hover .step-line {
  background-color: rgba(147, 184, 218, 0.4);
}

.how-step h4 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  color: white;
  transition: color 0.5s ease;
}

.how-step:hover h4 {
  color: var(--accent);
}

.how-step p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.625;
  font-weight: 500;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .how-step p {
    font-size: 1.125rem;
  }
}

.step-progress-wrapper {
  margin-top: 3rem;
  width: 100%;
  height: 4px;
  background-color: rgba(255,255,255,0.05);
  overflow: hidden;
}

.step-progress {
  height: 100%;
  background-color: var(--accent);
  width: 0;
  transition: width 1s ease-out;
}

.how-step:hover .step-progress {
  width: 100%;
}

/* -------------------
   CTA Section
------------------- */
.cta-section {
  position: relative;
  background-color: var(--foreground);
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    gap: 1.5rem;
  }
}

/* -------------------
   Footer Section
------------------- */
footer {
  background-color: white;
  border-top: 1px solid #f3f4f6;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--foreground);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* -------------------
   Contact Setup / Form
------------------- */
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
  text-align: left;
}

@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
  .contact-info, .contact-form-wrapper {
    flex: 1;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: white;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  font-size: 0.9375rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .contact-form {
    padding: 2.5rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(147, 184, 218, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-submit-btn {
  width: 100%;
  border-radius: 12px;
  margin-top: 0.5rem;
  height: 3.5rem;
  font-size: 1rem;
  font-weight: 700;
  background: white;
  color: var(--foreground);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

.form-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

.form-status.success { color: #4ade80; }
.form-status.error { color: #f87171; }

/* Spam protection - hidden field */
.form-hp { 
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* -------------------
   Utility: sr-only
------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* -------------------
   Floating Icons (Service Pages Hero)
------------------- */
.floating-icons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1; /* Behind text but above background */
  opacity: 0; /* Start invisible for fade-in */
  animation: fadeInIcons 2s ease-in-out 0.5s forwards; /* Delay slightly to allow fonts to load */
}

@keyframes fadeInIcons {
  from { opacity: 0; }
  to { opacity: 0.3; } /* Balanced visibility */
}

.floating-icons-container i {
  position: absolute;
  /* Removed grayscale so they pop */
}

/* Define individual float positions and delays for randomness */
.icon-float-1 { top: 15%; left: 8%; font-size: 3.5rem; animation: float-anim-1 12s infinite ease-in-out alternate; }
.icon-float-2 { top: 65%; left: 12%; font-size: 4.5rem; animation: float-anim-2 15s infinite ease-in-out alternate-reverse; }
.icon-float-3 { top: 25%; right: 10%; font-size: 5rem; animation: float-anim-3 14s infinite ease-in-out alternate; }
.icon-float-4 { top: 75%; right: 15%; font-size: 3rem; animation: float-anim-4 11s infinite ease-in-out alternate-reverse; }
.icon-float-5 { top: 40%; left: 25%; font-size: 2.5rem; animation: float-anim-1 13s infinite ease-in-out alternate; }
.icon-float-6 { top: 50%; right: 28%; font-size: 4rem; animation: float-anim-2 16s infinite ease-in-out alternate-reverse; }
.icon-float-7 { top: 10%; left: 50%; font-size: 3rem; animation: float-anim-3 10s infinite ease-in-out alternate; }
.icon-float-8 { bottom: 10%; left: 45%; font-size: 3.5rem; animation: float-anim-4 12s infinite ease-in-out alternate-reverse; }

@keyframes float-anim-1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(15px, -25px) rotate(8deg); }
  100% { transform: translate(-10px, 15px) rotate(-5deg); }
}

@keyframes float-anim-2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, 30px) rotate(-10deg); }
  100% { transform: translate(15px, -15px) rotate(6deg); }
}

@keyframes float-anim-3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(25px, 20px) rotate(12deg); }
  100% { transform: translate(-20px, -25px) rotate(-8deg); }
}

@keyframes float-anim-4 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-15px, -30px) rotate(-6deg); }
  100% { transform: translate(20px, 20px) rotate(10deg); }
}