

/* ensure exact font & heading sizes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body { font-family: 'Poppins', sans-serif }

/* card corners exactly as Figma */
.rounded-3xl { border-radius: 1.5rem; }

/* tune the border opacity */
.border-white\/70 { border-color: rgba(255,255,255,0.7); }

/* heading line-height tighter */
.leading-tight { line-height: 1.1; }



/* mobile-menu */
#nav-toggle:focus { outline: none; }

/* marquee animation */
.marquee {
    display: inline-block;          /* or inline-flex if you prefer */
    animation: marquee 15s linear infinite ;
  }
  
  @keyframes marquee {
    from { transform: translateX(0);}
    to { transform: translateX(-40%);}
  }
/* active link styling */
.nav-link.active {
  @apply text-white font-semibold;
}

