font-face {
  font-family: 'ArchitypeTschichold';
  src: url('/fonts/ArchitypeTschichold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
       .hero-bg {
    position: relative;
    overflow: hidden;
    background-color: rgb(17, 24, 40);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 110vh;
}

/* Blurred logo in the background */
@keyframes pulseLogo {
  0% {
    transform: scale(1);
    opacity: 0.35;
    filter: blur(20px) brightness(1.2);
  }
  50% {
    transform: scale(1.05);
    opacity: 0.6;
    filter: blur(22px) brightness(1.4);
  }
  100% {
    transform: scale(1);
    opacity: 0.35;
    filter: blur(20px) brightness(1.2);
  }
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/purblelogo.png') no-repeat center center;
  background-size: 80%;
  filter: blur(20px) brightness(1.2);
  opacity: 0.35;
  z-index: 0;
  animation: pulseLogo 6s ease-in-out infinite; /* pulsating logo */
  transform-origin: center;
}


/* Subtle purple vignette overlay for depth */
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse  at center,
        rgba(147, 51, 234, 0.25) 0%,
        rgb(17, 24, 40) 69%);
    z-index: 1;
}

/* Ensure content is above both layers */
.hero-bg > * {
    position: relative;
    z-index: 2;
}
@media (max-width: 640px) {
 .hero-bg {
    min-height: 30vh;  /* You can adjust this value */
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.logo-outline path {
  stroke-dasharray: 1000; /* total path length, adjust if needed */
  stroke-dashoffset: 1000;
  animation: drawOutline 4s linear infinite;
}

@keyframes drawOutline {
  0% {
    stroke-dashoffset: 1000;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1000;
  }
}




        .card-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}
        .card {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}


.card:hover {
    transform: scale(1.08) translateY(-8px) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
     box-shadow: 
        0 0 25px rgba(147, 51, 234, 0.6), 
        0 0 50px rgba(147, 51, 234, 0.4), 
        0 6px 12px rgba(0,0,0,0.2) !important;
    z-index: 10 !important;
    
}
body {
  font-family: 'ArchitypeTschichold', sans-serif;
}


