/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0b0b0b;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 5%;
}

/* --- Left Side --- */
.left {
  flex: 1;
}

.title {
  font-size: 4rem;
  font-weight: bold;
  background: linear-gradient(135deg, #bbb, #fff, #aaa);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 1.5s ease-in-out infinite alternate;
}

@keyframes shine {
  0% { background-position: 0%; }
  100% { background-position: 100%; }
}

.desc {
  margin: 20px 0;
  font-size: 1.1rem;
  max-width: 500px;
  color: #ccc;
}

.contact-btn {
  padding: 12px 24px;
  border: 1px solid #c0c0c0;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #c0c0c0;
  color: #000;
}

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  color: #c0c0c0;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

/* --- Right Side --- */
.right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 50%;
  height: 50%;
  object-fit: contain;
  z-index: 2;
  position: relative;
  filter: brightness(50%) contrast(200%) saturate(150%) drop-shadow(0 0 15px rgba(255, 255, 255, 0.4))
          drop-shadow(0 0 25px rgba(192, 192, 255, 0.3));
  transition: filter 0.3s ease-in-out;
}

.currency-symbol {
  position: absolute;
  font-size: 2rem;
  color: #fff;
  opacity: 0.3;
  animation: float 6s infinite ease-in-out;
  z-index: 1;
}

.currency-symbol:nth-child(2) { top: 10%; left: 15%; animation-delay: 0s; }
.currency-symbol:nth-child(3) { bottom: 10%; right: 10%; animation-delay: 1s; }
.currency-symbol:nth-child(4) { top: 25%; right: 20%; animation-delay: 2s; }
.currency-symbol:nth-child(5) { bottom: 25%; left: 15%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 0.2; }
  50% { transform: translateY(-15px); opacity: 0.5; }
}

/* --- Silver shimmer effect --- */
@keyframes shimmerOnce {
  0% {
    background-position: -200%;
  }
  50% {
    background-position: 200%;
  }
  100% {
    background-position: -200%;
  }
}

.shimmer-activate {
  background: linear-gradient(120deg, #fff, #c0c0c0, #fff);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerOnce 2s ease-in-out forwards;
}
