
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root{
  --bg:#020a25;
  --panel:#020617;
  --border:rgba(255,255,255,.08);
  --text:#ffffff;
  --muted:#9ca3af;
  --accent:#22c55e;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:'Inter',Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  font-size:18px;font-weight:600
  
}

/* Navigation */
.top-ribbon{
  position:fixed;
  top:0;
  width:100%;
  background:var(--bg);
  border-bottom:1px solid var(--border);
  z-index:1000;
  padding: 8px 12px;   /* Reduce vertical padding */
}

.nav-container{
  max-width:1200px;
  margin:auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.nav-brand a{
  color:#fff;
  font-weight:800;
  font-size:20px;
  text-decoration:none;
}
.nav-links a{
  color:#cbd5f5;
  margin:0 10px;
  font-weight:600;
  text-decoration:none;
}
.menu-toggle{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:26px;
}

/* Mobile nav */
.mobile-menu{
  display:none;
  background:var(--bg);
  border-top:1px solid var(--border);
}
.mobile-menu a{
  display:block;
  padding:14px 20px;
  color:#e5e7eb;
  text-decoration:none;
  border-bottom:1px solid var(--border);
}

/* Hero */
header.hero{
  padding:200px 20px 90px;
  text-align:center;
  background:url('images/hero.jpg') center/cover no-repeat;
  color:#ffffff;
  margin: auto;
}

header.hero h1{font-size:42px;font-weight:800}
header.hero p{max-width:1000px;margin:12px auto 0;color:#ffffff;font-size:22px;font-weight:600}

/* Sections */
section{max-width:2800px;margin:auto;padding:80px 20px;text-align: center;}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.card,.info-card{
  background:#010b24;
  border:4px solid var(--border);
  padding:32px;
  border-radius:40px;
  font-size:18px;font-weight:600
  
}

.card p,.info-card p{color:var(--muted)}

/* CTA */
.cta{
  display:inline-block;
  margin:14px 10px 0;
  padding:14px 28px;
  background:linear-gradient(135deg, #8dee06, #8dee06);
  color:#022c22;
  font-weight:800;
  border-radius:12px;
  text-decoration:none;
}

/* Footer */
footer{
  background:var(--bg);
  border-top:1px solid var(--border);
  color:var(--muted);
  text-align:center;
  padding:30px 16px;
}

/* Mobile */
@media(max-width:768px){
  .nav-links{display:none}
  .menu-toggle{display:block}
  header.hero{padding:110px 16px 60px}
  header.hero h1{font-size:32px}
  .grid{grid-template-columns:1fr}
   .site-logo {
    height: 28px;
  }
  
  }

.rounded-box {

  align-self: auto;
  /* Add space around the text, inside the border */
  text-align: center;
   /* Add the border-radius property for rounded corners */
  border-radius: 25px; 
  /* Set a specific width (optional, auto is also fine) */
  width: 200px; 
  /* Center the text horizontally (optional) */
margin: 0 auto;
  /* Add an optional shadow */

  background-color:#06eedb;
  color:#022c22;
  font-size: 44px;
  font-weight:1000;
  text-decoration:none;
  p{max-width:760px;margin:12px auto 0;color:#000000;font-size:42px;font-weight:800}
  
}
.marquee-track a {
    padding: 15px 30px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.marquee-track a:hover {
    text-decoration: underline;
}
.site-logo {
  height: 40px;
  width: auto;
}
a {
  color: #ffffff;;          /* normal link color */
}