/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;


body{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


:root {
    --primary-color: #E63946;    /* Set a primary color variable */
    --secondary-color: #457B9D;  /* Set a secondary color variable */ 
    --light-color: #A8DADC;  /* Set a secondary color variable */
    --extralight-color: #F1FAEE;  /* Set a secondary color variable */
    --dark-color:#1D3557;
  }

  @keyframes stockRunning {
    0% {
      mask-image: radial-gradient(100% 100% at top right, white, transparent);
    }
    100% {
      mask-image: radial-gradient(100% 100% at top left, white, transparent);
    }
  }

  .stock-background {
    animation: stockRunning 5s ease-in-out infinite;
    transition: all 0.3s ease-in-out;
  }




/* Initially, position the cards off-screen to the left */
.card {
  opacity: 0;
  transform: translateX(-50px);  /* Move the card to the left off-screen */
  transition: opacity 0.5s ease, transform 0.5s ease;  /* Smooth animation */
}

/* When the card becomes visible */
.card.visible {
  opacity: 1;
  transform: translateX(0);  /* Slide the card into its normal position */
}


.bg-light{
  background: rgb(230,57,70);
background: linear-gradient(90deg, rgba(230,57,70,1) 0%, rgba(168,218,220,1) 41%, rgba(232,242,232,1) 73%, rgba(241,250,238,1) 100%, rgba(29,53,87,1) 100%);
  /* background-color: var(--extralight-color); */
}
.secondary-color{
  color: var(--secondary-color);
}
.dark-color{
  color: var(--dark-color);
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }





  
.cormorant-thin {
    font-family: "Cormorant Infant", serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .cormorant-extralight {
    font-family: "Cormorant Infant", serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .cormorant-light {
    font-family: "Cormorant Infant", serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .cormorant-regular {
    font-family: "Cormorant Infant", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .cormorant-medium {
    font-family: "Cormorant Infant", serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .cormorant-semibold {
    font-family: "Cormorant Infant", serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .cormorant-bold {
    font-family: "Cormorant Infant", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .cormorant-extrabold {
    font-family: "Cormorant Infant", serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .cormorant-black {
    font-family: "Cormorant Infant", serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .cormorant-thin-italic {
    font-family: "Cormorant Infant", serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .cormorant-extralight-italic {
    font-family: "Cormorant Infant", serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .cormorant-light-italic {
    font-family: "Cormorant Infant", serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .cormorant-regular-italic {
    font-family: "Cormorant Infant", serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .cormorant-medium-italic {
    font-family: "Cormorant Infant", serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .cormorant-semibold-italic {
    font-family: "Cormorant Infant", serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .cormorant-bold-italic {
    font-family: "Cormorant Infant", serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .cormorant-extrabold-italic {
    font-family: "Cormorant Infant", serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .cormorant-black-italic {
    font-family: "Cormorant Infant", serif;
    font-weight: 900;
    font-style: italic;
  }


  body {
    font-family: 'Poppins', sans-serif;
}

.card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border-radius: 15px;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    transition: transform 0.8s;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.slider-container {
    scroll-behavior: smooth;
}

.nav-button {
    transition: all 0.3s;
    opacity: 0.9;
}

.nav-button:hover {
    transform: scale(1.1);
    opacity: 1;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.feature-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gradient-text {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blur-backdrop {
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.8);
}

.group {
  position: relative;
  display: inline-block;
}

.group:hover::after {
  width: 100%;
}

@keyframes neon-pulse {
  0%, 100% { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #00ffff, 0 0 35px #00ffff, 0 0 40px #00ffff, 0 0 50px #00ffff, 0 0 75px #00ffff; }
  50% { text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 7px #fff, 0 0 10px #00ffff, 0 0 17px #00ffff, 0 0 20px #00ffff, 0 0 25px #00ffff, 0 0 37px #00ffff; }
}

.neon-text {
  animation: neon-pulse 1.5s infinite alternate;
}
.bannerText{
  color: #2a2b40;
}
.bg-animated {
  background: linear-gradient(-45deg, #000000, #1a1a1a, #000033, #003366);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cyber-grid {
  background-image: linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: cyber-grid-move 20s linear infinite;
}

@keyframes cyber-grid-move {
  0% { background-position: 0 0; }
  100% { background-position: 20px 20px; }
}

.feature-card {
  backdrop-filter: blur(10px);
  /* background-color: rgba(0, 0, 0, 0.5); */
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.feature-icon {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(360deg) scale(1.2);
}

