@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

/* Cursor */
.cursor{
    position: relative;
    width: 24em;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 30px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}
/* Animation */
.typewriter-animation {
  animation: 
    typewriter 5s steps(50) 1s 1 normal both, 
    blinkingCursor 500ms steps(50) infinite normal;
}
@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blinkingCursor{
  from { border-right-color: rgba(255,255,255,.75); }
  to { border-right-color: transparent; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { width: 0; }
  to { width: 100px; }
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
.top-gradient {
  background: linear-gradient(-180deg, rgb(0,0,0) 0%, rgb(10, 7, 26) 50%);
}
.bottom-gradient {
  background: linear-gradient(0deg, #040509 90%, rgb(10, 7, 26) 100%);
}
.glow-text {
  font-size: 2.23rem; 
  font-weight: bold;
  
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  animation: gradientMove 3s infinite linear;
}
.glow-hr {
  height: 4px; 
  border: none;
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
  background-size: 300% 300%;
  
  animation: gradientMove 3s infinite linear;
}
.glow-button {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
  background-size: 300% 300%;
  
  color: white;
  
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.7), 0 0 10px rgba(0, 255, 255, 0.7);

}

.glow-button:hover {
  background-size: 400% 400%;
  /* Animation */
  animation: gradientMove 3s infinite linear;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 20px rgba(255, 0, 255, 1), 0 0 20px rgba(0, 255, 255, 1);
  transform: scale(1.05);
}
.feature-section {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, rgba(38, 22, 37, 0.92), rgba(26, 32, 23, 0.95));
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.1s ease-in-out;
}

.feature-section:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.feature-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d4d4d4;
}
.mobile-menu-btn {
background: #ffffff;
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 1.5rem;
  height: 1.5rem;
}
.footer-icon {
  background: #ffffff;
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 1.5rem;
  height: 1.5rem;
}
.linkedin-icon {
  background: #ffffff;
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 3rem;
  height: 3rem;
}
.gradient-icon {
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  width: 5rem;
  height: 5rem;
}
  
.feature-img {
  border-radius: 12px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.callout {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
  border-left: 4px solid #ff00ff;
  border-right: 4px solid #00ffff;
}


.features-title {
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  animation: gradientMove 6s infinite linear;
}

.features-underline {
  background: linear-gradient(90deg, #06b6d4, #a855f7);
  margin: 10px auto;
  border-radius: 2px;
  animation: gradientMove 3s infinite linear;
}
.analytics-title {
  /* Gradient Background */
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientMove 6s infinite linear;
}

.analytics-underline {
  height: 4px;
  width: 50rem;
  background: linear-gradient(90deg, #06b6d4, #a855f7);
  margin: 10px auto;
  border-radius: 2px;
  animation: gradientMove 3s infinite linear;
}

.gradient-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  
  width: 8vw;
  height: 8vw; 
  max-width: 103px;
  max-height: 103px;
  padding: 1vw; /* Responsive padding */
  
  border-radius: 10%;
  background-color: #000;

  box-shadow: 0 0 1px #ADE9E9, 0 0 6px rgba(173, 233, 233, 0.6);
}

.gradient-icon-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0.2rem; /* Reduced padding for smaller sizes */
  border-radius: 10%;
  background: linear-gradient(135deg, rgb(255, 0, 255), rgb(0, 255, 255)); 
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.gradient-icon-border {
  width: 6vw; /* Width based on viewport size */
  height: 6vw; /* Height based on viewport size */
  max-width: 103px;
  max-height: 103px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.gradient-icon-back {
  width: 3vw; /* Width based on viewport size */
  height: 3vw; /* Height based on viewport size */
  max-width: 100px;
  max-height: 100px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
@media (max-width: 768px) {
  .gradient-icon-wrapper {
    width: 12vw; 
    height: 12vw;
    padding: 1.5vw; 
  }

  .gradient-icon-border {
    width: 10vw; 
    height: 10vw;
  }
}
@media (min-width: 1024px) {
  .gradient-icon-wrapper {
    width: 6vw; 
    height: 6vw;
    padding: 0.8vw; 
  }

  .gradient-icon-border {
    width: 5vw;
    height: 5vw;
  }
}






