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

:root {
  --bg: #0a0f1f;
  --bg-alt: #0f172a;
  --card: rgba(17, 25, 45, 0.85);
  --accent: #35ff5b;
  --accent-dark: #0ecf38;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.2);
  --shadow: 0 24px 50px rgba(5, 10, 20, 0.35);
}

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

body {
  font-family: 'Manrope', sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(53, 255, 91, 0.15), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.12), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 6px);
  pointer-events: none;
  opacity: 0.35;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(6, 10, 20, 0.75);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(10, 15, 35, 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-family: 'Space Grotesk', sans-serif;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 600;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--accent);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}

.primary-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--text-muted);
}

.primary-nav a.active,
.primary-nav a:hover {
  color: var(--text);
}

.primary-nav a.active::after,
.primary-nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.hero {
  padding: 90px 0 70px;
  position: relative;
}

.hero-compact {
  padding: 70px 0 40px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 3vw + 1.5rem, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-lead {
  color: var(--text-muted);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #04120b;
  box-shadow: 0 12px 30px rgba(53, 255, 91, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(53, 255, 91, 0.4);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(15, 23, 42, 0.65);
}

.btn-ghost:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.hero-stats h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.hero-card {
  background: var(--card);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.hero-card ul {
  margin: 18px 0 20px;
  padding-left: 18px;
  color: var(--text-muted);
}

.bubble-outline {
  position: relative;
}

.bubble-outline::before,
.bubble-outline::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.bubble-outline::before {
  width: 70px;
  height: 70px;
  border: 3px solid rgba(53, 255, 91, 0.7);
  background: radial-gradient(circle at 30% 30%, rgba(53, 255, 91, 0.1) 0%, transparent 50%);
  top: 10%;
  right: 10%;
  animation: bubblePulse 3s ease-in-out infinite, bubbleRotate 8s linear infinite;
  box-shadow: 
    0 0 15px rgba(53, 255, 91, 0.4),
    inset 0 0 10px rgba(53, 255, 91, 0.2);
}

.bubble-outline::after {
  width: 45px;
  height: 45px;
  border: 2px solid rgba(56, 189, 248, 0.6);
  background: radial-gradient(circle at 60% 40%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
  bottom: 15%;
  left: 15%;
  animation: bubblePulse 4s ease-in-out infinite 0.5s, bubbleRotate 10s linear infinite reverse;
  box-shadow: 
    0 0 12px rgba(56, 189, 248, 0.3),
    inset 0 0 8px rgba(56, 189, 248, 0.15);
}

@keyframes bubblePulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: scale(1.05) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    transform: scale(1.08) rotate(270deg);
    opacity: 0.4;
  }
}

.bubble-outline:hover::before {
  transform: scale(1.2);
  box-shadow: 
    0 0 25px rgba(53, 255, 91, 0.6),
    inset 0 0 15px rgba(53, 255, 91, 0.3);
  border-color: rgba(53, 255, 91, 0.9);
}

.bubble-outline:hover::after {
  transform: scale(1.15);
  box-shadow: 
    0 0 20px rgba(56, 189, 248, 0.5),
    inset 0 0 12px rgba(56, 189, 248, 0.25);
  border-color: rgba(56, 189, 248, 0.8);
}

@keyframes bubbleRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

.bubble-container::before,
.bubble-container::after,
.bubble-container .bubble-middle {
  position: relative;
}

.bubble-container::before::after,
.bubble-container::after::after,
.bubble-container .bubble-middle::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 30%;
  height: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  animation: shimmer 3s ease-in-out infinite;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.8);
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 15, 31, 0.4) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.hero-bg-1 {
  background-image: url('../assets/hero-accounting.png');
}

.hero-bg-2 {
  background-image: url('../assets/hero-networking.jpg');
}

.hero-bg-3 {
  background-image: url('../assets/hero-cybersecurity.jpg');
}

.hero-bg-4 {
  background-image: url('../assets/hero-software-dev.jpg');
}

.hero-bg-5 {
  background-image: url('../assets/hero-hr.jpg');
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: rgba(15, 23, 42, 0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(12, 18, 32, 0.8);
  border: 1px solid var(--border);
  min-height: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(53, 255, 91, 0.08), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 45px rgba(10, 14, 30, 0.35), 0 0 0 1px rgba(53, 255, 91, 0.25);
  border-color: rgba(53, 255, 91, 0.4);
  background: rgba(12, 18, 32, 0.9);
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--accent);
}

.service-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-item {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(10, 15, 30, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.08), transparent);
  transition: left 0.5s ease;
}

.service-item:hover::before {
  left: 100%;
}

.service-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 15px 35px rgba(10, 14, 30, 0.3), 0 0 0 1px rgba(56, 189, 248, 0.25);
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(10, 15, 30, 0.85);
}

.service-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.service-item:hover h4 {
  color: #38bdf8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.service-card {
  padding: 24px;
  border-radius: 18px;
  background: rgba(11, 18, 33, 0.75);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(10, 14, 30, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(53, 255, 91, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(10, 14, 30, 0.4), 0 0 0 1px rgba(53, 255, 91, 0.3);
  border-color: rgba(53, 255, 91, 0.5);
  background: rgba(11, 18, 33, 0.85);
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--accent);
}

.cta {
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(53, 255, 91, 0.15), rgba(15, 23, 42, 0.9));
  border-radius: 22px;
  padding: 30px 34px;
  border: 1px solid rgba(53, 255, 91, 0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.contact-form {
  background: rgba(11, 18, 33, 0.75);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
}

.contact-form button {
  margin: 20px auto 0;
  display: block;
  width: fit-content;
}

.form-message {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  animation: slideInUp 0.3s ease-out;
}

.form-message--success {
  background: rgba(53, 255, 91, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.form-message--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
  font-family: inherit;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(11, 18, 33, 0.7);
}

.map-placeholder {
  border-radius: 18px;
  border: 1px dashed rgba(53, 255, 91, 0.4);
  height: 180px;
  display: grid;
  place-items: center;
  color: var(--text-muted);
}

.site-footer {
  background-color: #1B3B36;
  padding: 30px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-inner {
  color: var(--text-muted);
  animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-section p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.social-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icons a {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.5);
}

.social-icons a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(53, 255, 91, 0.1);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.newsletter-form input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
  font-family: inherit;
}

.newsletter-form button {
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #04120b;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-form button:hover {
  background: var(--accent-dark);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .primary-nav {
    position: absolute;
    top: 80px;
    right: 4vw;
    flex-direction: column;
    background: rgba(6, 10, 20, 0.95);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    gap: 12px;
    width: min(220px, 80vw);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.2s ease;
  }

  .site-header.nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .header-inner {
    gap: 10px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner {
    align-items: flex-start;
  }
}

.bubble-container {
  position: relative;
  overflow: hidden;
}

.bubble-container::before,
.bubble-container::after,
.bubble-container .bubble-middle {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.bubble-container::before {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, rgba(53, 255, 91, 0.4) 0%, rgba(53, 255, 91, 0.2) 30%, transparent 70%);
  top: 15%;
  left: 5%;
  animation: bubbleFloat1 12s ease-in-out infinite;
  box-shadow: 
    0 0 30px rgba(53, 255, 91, 0.3),
    inset 0 0 20px rgba(53, 255, 91, 0.2);
}

.bubble-container::after {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at 70% 70%, rgba(56, 189, 248, 0.35) 0%, rgba(56, 189, 248, 0.18) 35%, transparent 70%);
  bottom: 15%;
  right: 10%;
  animation: bubbleFloat2 15s ease-in-out infinite;
  box-shadow: 
    0 0 25px rgba(56, 189, 248, 0.25),
    inset 0 0 15px rgba(56, 189, 248, 0.15);
}

.bubble-container .bubble-middle {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 40% 60%, rgba(255, 206, 84, 0.3) 0%, rgba(255, 206, 84, 0.15) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: bubbleFloat3 13s ease-in-out infinite;
  box-shadow: 
    0 0 20px rgba(255, 206, 84, 0.2),
    inset 0 0 12px rgba(255, 206, 84, 0.1);
}

.bubble-container.bubble-extra::before {
  box-shadow: 
    0 0 0 15px rgba(53, 255, 91, 0.08),
    0 0 0 30px rgba(53, 255, 91, 0.04),
    0 0 0 45px rgba(53, 255, 91, 0.02);
}

.bubble-container.bubble-extra::after {
  box-shadow: 
    0 0 0 12px rgba(56, 189, 248, 0.06),
    0 0 0 24px rgba(56, 189, 248, 0.03),
    0 0 0 36px rgba(56, 189, 248, 0.01);
}

@keyframes bubbleFloat3 {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0) translateX(0) scale(1) rotate(0deg);
    opacity: 0.6;
  }
  20% {
    transform: translate(-50%, -50%) translateY(-25px) translateX(-18px) scale(1.15) rotate(72deg);
    opacity: 0.7;
  }
  40% {
    transform: translate(-50%, -50%) translateY(-12px) translateX(12px) scale(0.95) rotate(144deg);
    opacity: 0.4;
  }
  60% {
    transform: translate(-50%, -50%) translateY(-30px) translateX(-8px) scale(1.08) rotate(216deg);
    opacity: 0.65;
  }
  80% {
    transform: translate(-50%, -50%) translateY(-18px) translateX(15px) scale(1.02) rotate(288deg);
    opacity: 0.5;
  }
}

@keyframes bubbleFloat1 {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
    opacity: 0.7;
  }
  20% {
    transform: translateY(-30px) translateX(20px) scale(1.2) rotate(60deg);
    opacity: 0.8;
  }
  40% {
    transform: translateY(-20px) translateX(-12px) scale(0.9) rotate(120deg);
    opacity: 0.5;
  }
  60% {
    transform: translateY(-40px) translateX(25px) scale(1.15) rotate(180deg);
    opacity: 0.75;
  }
  80% {
    transform: translateY(-25px) translateX(-8px) scale(1.05) rotate(240deg);
    opacity: 0.6;
  }
}

@keyframes bubbleFloat2 {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-35px) translateX(-20px) scale(1.3) rotate(90deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-25px) translateX(15px) scale(0.8) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-45px) translateX(-10px) scale(1.1) rotate(270deg);
    opacity: 0.65;
  }
}

@media (max-width: 768px) {
  .bubble-container::before {
    width: 90px;
    height: 90px;
  }
  
  .bubble-container::after {
    width: 70px;
    height: 70px;
  }
  
  .bubble-container .bubble-middle {
    width: 65px;
    height: 65px;
  }
  
  .bubble-outline::before {
    width: 50px;
    height: 50px;
    border-width: 2px;
  }
  
  .bubble-outline::after {
    width: 35px;
    height: 35px;
    border-width: 1.5px;
  }
}
