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

body {
  font-family: "Arial", sans-serif;
  background: #010066;
  color: white;
  overflow-x: hidden;
  --primary-blue: #010066;
  --primary-yellow: #f9d31e;
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease-out;
}

.preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.logo-animation {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-tm {
  width: 200px;
  height: 200px;
  animation: logoScale 2.5s ease-in-out;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-tm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border: 3px solid var(--primary-yellow);
  border-radius: 50%;
  opacity: 0;
  animation: ringExpand 3.5s ease-out 1s forwards;
}

@keyframes logoScale {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(90deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes ringExpand {
  0% {
    width: 250px;
    height: 250px;
    opacity: 1;
  }
  100% {
    width: 350px;
    height: 350px;
    opacity: 0;
  }
}

/* Main Website Styles */
.main-site {
  opacity: 0;
  transition: opacity 1s ease-in;
}

.main-site.show {
  opacity: 1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(1, 0, 102, 0.95);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(249, 211, 30, 0.1);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 10px;
}

.nav-links a:hover {
  color: #f9d31e;
  transform: translateY(-2px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #f9d31e, #ffe055);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav-toggle span {
  width: 25px;
  height: 3px;
  background: #f9d31e;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links.mobile-open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(1, 0, 102, 0.98);
  flex-direction: column;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
}

.nav-links.mobile-open li {
  margin: 10px 0;
}

/* Navbar logo fade-up */
.logo-img {
  opacity: 0; /* start invisible */
  transform: translateY(20px); /* slight down */
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.logo-img.show {
  opacity: 1; /* fade in */
  transform: translateY(0); /* move to normal */
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #010066 0%, #000040 50%, #010066 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(249, 211, 30, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(249, 211, 30, 0.1) 0%,
      transparent 50%
    );
  animation: backgroundPulse 4s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(249, 211, 30, 0.1), transparent);
  border-radius: 50%;
  animation: morphShape 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes morphShape {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    border-radius: 50%;
  }
  25% {
    transform: scale(1.2) rotate(90deg);
    border-radius: 30% 70% 60% 40%;
  }
  50% {
    transform: scale(0.8) rotate(180deg);
    border-radius: 60% 40% 30% 70%;
  }
  75% {
    transform: scale(1.1) rotate(270deg);
    border-radius: 40% 60% 70% 30%;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: 700px; /* force bigger size */
  max-width: 100%; /* still shrink on small screens */
  height: auto;
  margin-bottom: 50px;
  display: block;
}

.cta-buttons {
  display: flex;
  gap: 20px; /* spacing between buttons */
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(45deg, #f9d31e, #ffe055);
  color: #010066;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(249, 211, 30, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(249, 211, 30, 0.5);
}

.cta-button-secondary {
  background: transparent;
  color: #f9d31e;
  border: 2px solid #f9d31e;
}

.cta-button-secondary:hover {
  background: #f9d31e;
  color: #010066;
}

/* Common Section Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #f9d31e, #ffe055);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  padding: 120px 20px;
  background: linear-gradient(180deg, #010066 0%, #000050 100%);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23F9D31E" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.about-creative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.about-text h3 {
  color: #f9d31e;
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-weight: bold;
}

.about-text p {
  margin-bottom: 20px;
}

.core-values {
  margin: 25px 0;
}

.core-values h4 {
  color: #f9d31e;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(249, 211, 30, 0.05);
  border-radius: 8px;
  border-left: 3px solid #f9d31e;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(249, 211, 30, 0.1);
  transform: translateX(10px);
}

.value-icon {
  font-size: 1.5rem;
}

.value-item strong {
  color: #f9d31e;
  font-size: 0.95rem;
}

.innovation-features {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(249, 211, 30, 0.05);
  border-radius: 12px;
  border-left: 3px solid #f9d31e;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(249, 211, 30, 0.1);
  transform: translateX(10px);
}

.feature-icon,
.showcase-icon {
  width: 40px; /* smaller size */
  height: auto;
  display: block;
  margin: 0 auto 12px; /* centers icon above text */
}

.feature-item strong {
  color: #f9d31e;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

.feature-item p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.stats-highlight {
  background: rgba(249, 211, 30, 0.1);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #f9d31e;
  margin: 30px 0;
}

.creative-visual {
  position: relative;
  height: 500px;
  background: linear-gradient(
    135deg,
    rgba(249, 211, 30, 0.1),
    rgba(1, 0, 102, 0.3)
  );
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(249, 211, 30, 0.3);
  padding: 40px 20px;
}

.interactive-showcase {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(249, 211, 30, 0.4);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
}

.showcase-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid rgba(249, 211, 30, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  width: auto;
}

.showcase-item:hover {
  background: rgba(249, 211, 30, 0.2);
  border-color: #f9d31e;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(249, 211, 30, 0.4);
  z-index: 10;
}

.showcase-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.showcase-item h4 {
  color: #f9d31e;
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: bold;
}

.showcase-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.3;
}

.stats-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 60px;
  width: 100%;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(249, 211, 30, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 200px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: #f9d31e;
  box-shadow: 0 20px 40px rgba(249, 211, 30, 0.2);
  z-index: 2;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #f9d31e;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Services Section */
.services {
  padding: 120px 20px;
  background: #010066;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(249, 211, 30, 0.2);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover {
  transform: translateY(-20px) scale(1.02);
  background: rgba(249, 211, 30, 0.08);
  border-color: #f9d31e;
  box-shadow: 0 25px 50px rgba(249, 211, 30, 0.3),
    0 0 0 1px rgba(249, 211, 30, 0.1);
}

.service-icon {
  width: auto; /* let image control size */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px; /* keep some space below the icon */
  box-shadow: none; /* remove the glow unless you want hover */
}

.service-icon img {
  width: 60px; /* adjust icon size */
  height: auto;
  display: block;
}

.service-title {
  font-size: 1.8rem;
  color: #f9d31e;
  margin-bottom: 20px;
  font-weight: bold;
}

.service-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Portfolio Section */
.portfolio {
  padding: 120px 20px;
  background: linear-gradient(180deg, #010066 0%, #000040 100%);
  position: relative;
}

.portfolio-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(249, 211, 30, 0.2);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.category-btn:hover,
.category-btn.active {
  background: #f9d31e;
  color: #010066;
  border-color: #f9d31e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 211, 30, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: none;
}

.portfolio-item.show {
  display: block;
  animation: fadeInUp 0.6s ease forwards;
}

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

.portfolio-item:hover {
  transform: translateY(-10px);
  border-color: rgba(249, 211, 30, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(249, 211, 30, 0.2);
}

.portfolio-media {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #000;
}

.portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-video {
  transform: scale(1.03);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 0, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .video-overlay {
  opacity: 1;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(249, 211, 30, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #010066;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  backdrop-filter: blur(10px);
}

.play-btn:hover {
  background: #f9d31e;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(249, 211, 30, 0.4);
}

.portfolio-content {
  padding: 24px;
}

.portfolio-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #f9d31e;
  margin-bottom: 8px;
  line-height: 1.3;
}

.portfolio-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 16px;
}

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

.portfolio-category {
  background: linear-gradient(45deg, #f9d31e, #ffe055);
  color: #010066;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-type {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 400;
}

/* Our Clients Section */
.clients {
  padding: 120px 20px;
  background: linear-gradient(180deg, #000040 0%, #010066 100%);
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(249, 211, 30, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(249, 211, 30, 0.03) 0%,
      transparent 50%
    );
  animation: backgroundPulse 6s ease-in-out infinite alternate;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 2;
}

.client-logo {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid rgba(249, 211, 30, 0.1);
  backdrop-filter: blur(20px);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.client-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(249, 212, 30),
    transparent
  );
  transition: left 0.6s ease;
}

.client-logo:hover::before {
  left: 100%;
}

.client-logo:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: rgba(249, 211, 30, 0.6);
  box-shadow: 0 25px 50px rgb(1, 1, 255), 0 0 0 1px rgba(249, 211, 30, 0.3);
  background: rgba(255, 255, 255, 0);
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.1);
  opacity: 0.9;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  background: transparent;
}

.client-logo:hover img {
  opacity: 1;
  filter: brightness(1) contrast(1.2);
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  padding: 120px 20px;
  background: linear-gradient(180deg, #000050 0%, #010066 100%);
  text-align: center;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.contact-item {
  padding: 30px 25px;
  background: rgba(249, 211, 30, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(249, 211, 30, 0.3);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(249, 211, 30, 0.2);
}

.contact-item h4 {
  color: #f9d31e;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: bold;
}

.contact-item p {
  font-size: 1.1rem;
}

.contact-item a {
  color: #f9d31e;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #000030, #000020);
  padding: 60px 20px 30px;
  border-top: none;
  position: relative;
}

.footer::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: #f9d31e;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23F9D31E" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrid)"/></svg>');
  z-index: 1;
}

.footer-content {
  background-color: #080825;
  padding: 40px 20px;
  color: white;
  position: relative;
  z-index: 3;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.footer-section h3 {
  color: #f9d31e;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-section p,
.footer-section li {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 10px;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #f9d31e;
  transform: translateX(5px);
}

.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #f9d31e;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(249, 211, 30, 0.3);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(249, 211, 30, 0.1);
  border: 1px solid rgba(249, 211, 30, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9d31e;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: #f9d31e;
  color: #010066;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(249, 211, 30, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(249, 211, 30, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.95rem;
}

.footer-bottom a {
  color: #f9d31e;
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Animated Dot Background */
.dot-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1; /* was 1 → keep it ABOVE page backgrounds */
  opacity: 0;
  transition: opacity 2s ease-in-out;
  overflow: hidden;
}

.dot-background.show {
  opacity: 0.5; /* brighter so it shows through dark areas */
}

.floating-dot {
  position: absolute;
  width: 5px; /* was 4px */
  height: 5px;
  background: rgba(249, 211, 30, 0.7); /* was 0.8 → punchier on dark bg */
  border-radius: 50%;
  animation: floatDot 15s linear infinite;
  opacity: 0;
  box-shadow: 0 0 8px rgba(249, 211, 30, 0.5); /* stronger glow */
}

@keyframes floatDot {
  0% {
    transform: translateY(100vh) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 0.55;
  } /* was 0.8 → but we upped base brightness */
  90% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(-50px) translateX(30px);
    opacity: 0;
  }
}

/* Enhanced Company Background Icons */
.company-bg-icons {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.company-icon {
  position: absolute;
  font-size: 4rem;
  color: rgba(249, 211, 30, 0.08);
  animation: companyIconFloat 18s linear infinite;
  opacity: 0;
  text-shadow: 0 0 20px rgba(249, 211, 30, 0.3);
}

.company-icon:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
  font-size: 3rem;
}
.company-icon:nth-child(2) {
  left: 15%;
  animation-delay: -2s;
  font-size: 5rem;
}
.company-icon:nth-child(3) {
  left: 25%;
  animation-delay: -4s;
  font-size: 3.5rem;
}
.company-icon:nth-child(4) {
  left: 35%;
  animation-delay: -6s;
  font-size: 4.5rem;
}
.company-icon:nth-child(5) {
  left: 45%;
  animation-delay: -8s;
  font-size: 3.2rem;
}
.company-icon:nth-child(6) {
  left: 55%;
  animation-delay: -10s;
  font-size: 4.8rem;
}
.company-icon:nth-child(7) {
  left: 65%;
  animation-delay: -12s;
  font-size: 3.8rem;
}
.company-icon:nth-child(8) {
  left: 75%;
  animation-delay: -14s;
  font-size: 4.2rem;
}
.company-icon:nth-child(9) {
  left: 85%;
  animation-delay: -16s;
  font-size: 3.6rem;
}
.company-icon:nth-child(10) {
  left: 95%;
  animation-delay: -18s;
  font-size: 4rem;
}

/* Floating Geometric Shapes */
.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: floatShape 20s linear infinite;
}

.shape-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #f9d31e, #ffe055);
  border-radius: 50%;
  left: 10%;
  animation-delay: -2s;
  box-shadow: 0 0 20px rgba(249, 211, 30, 0.3);
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid rgba(249, 211, 30, 0.6);
  left: 30%;
  animation-delay: -5s;
  filter: drop-shadow(0 0 10px rgba(249, 211, 30, 0.3));
}

.shape-square {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(249, 211, 30, 0.6),
    rgba(255, 224, 85, 0.4)
  );
  left: 50%;
  animation-delay: -8s;
  transform: rotate(45deg);
  box-shadow: 0 0 15px rgba(249, 211, 30, 0.3);
}

.shape-diamond {
  width: 50px;
  height: 50px;
  background: rgba(249, 211, 30, 0.5);
  left: 70%;
  animation-delay: -12s;
  transform: rotate(45deg);
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(249, 211, 30, 0.4);
}

.shape-hexagon {
  width: 50px;
  height: 28px;
  background: rgba(249, 211, 30, 0.4);
  left: 85%;
  animation-delay: -15s;
  position: relative;
  box-shadow: 0 0 12px rgba(249, 211, 30, 0.3);
}

.shape-hexagon:before,
.shape-hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
}

.shape-hexagon:before {
  bottom: 100%;
  border-bottom: 14px solid rgba(249, 211, 30, 0.4);
}

.shape-hexagon:after {
  top: 100%;
  border-top: 14px solid rgba(249, 211, 30, 0.4);
}

@keyframes floatShape {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 0.3;
  }
  95% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Animated Background Grid */
.animated-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image: linear-gradient(
      rgba(249, 211, 30, 0.2) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(249, 211, 30, 0.2) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 30s linear infinite;
}

/* Ambient Light Effects */
.ambient-lights {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.light {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
}

.light-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 211, 30, 0.4), transparent);
  top: 20%;
  left: 10%;
  animation: pulse1 8s ease-in-out infinite;
}

.light-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 224, 85, 0.3), transparent);
  top: 60%;
  right: 15%;
  animation: pulse2 12s ease-in-out infinite;
}

.light-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(249, 211, 30, 0.5), transparent);
  bottom: 30%;
  left: 60%;
  animation: pulse3 10s ease-in-out infinite;
}

@keyframes pulse1 {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.3) translate(20px, -10px);
    opacity: 0.2;
  }
}

@keyframes pulse2 {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.08;
  }
  50% {
    transform: scale(1.2) translate(-30px, 15px);
    opacity: 0.15;
  }
}

@keyframes pulse3 {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.12;
  }
  50% {
    transform: scale(1.4) translate(10px, -20px);
    opacity: 0.18;
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Animation Classes */
.scroll-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animation.animate {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animation.slide-left {
  transform: translateX(-50px);
}

.scroll-animation.slide-right {
  transform: translateX(50px);
}

.scroll-animation.animate.slide-left,
.scroll-animation.animate.slide-right {
  transform: translateX(0);
}

.scroll-animation.zoom-in {
  transform: scale(0.8);
}

.scroll-animation.animate.zoom-in {
  transform: scale(1);
}

/* Page Transition Animations */
.page-transition {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

section {
  transition: all 0.6s ease-in-out;
  will-change: transform, opacity;
  opacity: 1;
  transform: translateY(0);
}

.interactive-card {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.interactive-card:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

.interactive-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 211, 30, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}

.interactive-card:hover::after {
  opacity: 1;
}

.magnetic-btn {
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.magnetic-btn:hover {
  transform: scale(1.05);
}

.glow-border {
  position: relative;
  overflow: hidden;
}

.glow-border::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #4a90e2, #7bb3f0, #4a90e2);
  border-radius: inherit;
  z-index: -1;
  animation: subtleGlow 4s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.4;
  }
}

.gradient-text {
  background: linear-gradient(45deg, #f9d31e, #ffe055, #f9d31e);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.text-reveal {
  overflow: hidden;
  position: relative;
}

.text-reveal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #010066;
  transform: translateX(-100%);
  animation: revealText 1.5s ease-out forwards;
}

@keyframes revealText {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

.section-loader {
  position: relative;
  overflow: hidden;
}

.section-loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(249, 211, 30, 0.2),
    transparent
  );
  animation: sectionLoad 2s ease-out;
}

@keyframes sectionLoad {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .section-title {
    font-size: 3rem;
  }
  .about-creative {
    gap: 60px;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .hero {
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 15px;
  }
  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .about-creative {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .stats-grid {
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 20px;
  }

  .stat-card {
    width: 180px;
    height: 130px;
    padding: 25px 20px;
    flex-shrink: 0;
  }
  .stat-card:hover {
    transform: translateY(-20px) scale(1.03);
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-card {
    padding: 40px 30px;
  }
  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .about,
  .services,
  .contact {
    padding: 80px 20px;
  }
  .creative-visual {
    height: 200px;
  }

  .interactive-showcase {
    width: 300px;
    height: 350px;
    padding: 15px;
    gap: 12px;
  }

  .showcase-item {
    padding: 15px 10px;
  }

  .showcase-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
  }

  .showcase-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .showcase-item p {
    font-size: 0.8rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-media {
    height: 200px;
  }

  .portfolio-content {
    padding: 20px;
  }

  .portfolio-title {
    font-size: 1.2rem;
  }

  .portfolio-description {
    font-size: 0.9rem;
  }

  .portfolio-meta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .category-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  .clients {
    padding: 80px 20px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 700px;
  }

  .client-logo {
    padding: 25px 15px;
    aspect-ratio: 4/3;
  }

  .client-logo:hover {
    transform: translateY(-10px) scale(1.03);
  }

  .logo-animation {
    width: 250px;
    height: 250px;
  }

  .logo-tm {
    width: 150px;
    height: 150px;
  }

  .logo-ring {
    width: 200px;
    height: 200px;
  }

  @keyframes ringExpand {
    0% {
      width: 200px;
      height: 200px;
      opacity: 1;
    }
    100% {
      width: 300px;
      height: 300px;
      opacity: 0;
    }
  }

  /* Mobile dot optimization */
  .floating-dot {
    width: 3px;
    height: 3px;
    background: rgba(249, 211, 30, 0.6);
    box-shadow: 0 0 4px rgba(249, 211, 30, 0.3);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .stats-grid {
    gap: 10px;
    padding: 0 10px;
  }

  .stat-card {
    width: 160px;
    height: 120px;
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }
  .service-card {
    padding: 30px 20px;
  }
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  .service-title {
    font-size: 1.5rem;
  }
  .about-text h3 {
    font-size: 1.8rem;
  }
  .about-text {
    font-size: 1.1rem;
  }
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .header {
    padding: 10px 0;
  }
  .nav {
    padding: 0 15px;
  }
  .creative-visual {
    height: 220px;
  }

  .interactive-showcase {
    width: 280px;
    height: 320px;
    padding: 12px;
    gap: 10px;
  }

  .showcase-item {
    padding: 12px 8px;
  }

  .showcase-icon {
    font-size: 1.6rem;
  }

  .showcase-item h4 {
    font-size: 0.95rem;
  }

  .showcase-item p {
    font-size: 0.75rem;
  }

  .portfolio-categories {
    gap: 10px;
    margin-bottom: 30px;
  }

  .category-btn {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  .portfolio-grid {
    gap: 15px;
  }

  .portfolio-media {
    height: 180px;
  }

  .portfolio-content {
    padding: 16px;
  }

  .portfolio-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .portfolio-description {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .portfolio-category {
    padding: 4px 12px;
    font-size: 0.7rem;
  }

  .portfolio-type {
    font-size: 0.8rem;
  }

  .clients {
    padding: 60px 20px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
  }

  .client-logo {
    padding: 20px 10px;
    aspect-ratio: 4/3;
  }

  .client-logo:hover {
    transform: translateY(-8px) scale(1.02);
  }

  .client-logo img {
    max-width: 90%;
    max-height: 90%;
  }

  .logo-animation {
    width: 200px;
    height: 200px;
  }

  .logo-tm {
    width: 120px;
    height: 120px;
  }

  .logo-ring {
    width: 150px;
    height: 150px;
  }

  @keyframes ringExpand {
    0% {
      width: 150px;
      height: 150px;
      opacity: 1;
    }
    100% {
      width: 250px;
      height: 250px;
      opacity: 0;
    }
  }

  .footer {
    padding: 40px 15px 20px;
  }
  .footer-section h3 {
    font-size: 1.2rem;
  }

  /* Extra small mobile dot optimization */
  .floating-dot {
    width: 2px;
    height: 2px;
    background: rgba(249, 211, 30, 0.5);
    box-shadow: 0 0 3px rgba(249, 211, 30, 0.2);
  }
}

@media (max-width: 320px) {
  .hero-title {
    font-size: 1.9rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 280px;
  }

  .client-logo {
    padding: 15px 8px;
    aspect-ratio: 5/3;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 20px 50px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-icon,
  .social-link {
    box-shadow: 0 0 0 0.5px rgba(249, 211, 30, 0.2);
  }
}
/* Portfolio video + icon styling */
.portfolio-media {
  position: relative;
  overflow: hidden;
}

.portfolio-media .portfolio-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; /* prevent pausing when clicking */
}

.media-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  text-decoration: none;
  backdrop-filter: saturate(1.2) blur(2px);
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  opacity: 0.9;
}
.media-link:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
}
.media-link svg {
  display: block;
}
/* ===== Global Styles ===== */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0e1129;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-loader {
  padding: 100px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #aaa;
}

/* Stats Section */
.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  width: 200px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00f2de;
}

.stat-label {
  font-size: 0.9rem;
  color: #aaa;
}

/* Mobile Fix: Stack stats vertically on small screens */
@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}
