.footer {
  background-color: #0b0e14;
  border-top: 1px solid #30363d;
  margin-top: 32px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 2;
}

.footer-logo {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #e0e2ea;
  display: block;
  margin-bottom: 16px;
}

.footer-text {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8b949e;
  margin-bottom: 16px;
}

.footer-copyright {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8b949e;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-heading {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #a2c9ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.email-group {
  align-items: flex-start;
}

.email-list {
  display: flex;
  flex-direction: column;
}

.contact-text {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8b949e;
}

.icon-small {
  font-size: 16px !important;
  color: #8b949e;
  flex-shrink: 0;
}

.footer-link {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8b949e;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #a2c9ff;
}

/* ---------- Utility Classes ---------- */
.text-primary {
  color: #a2c9ff;
}

.text-tertiary {
  color: #ffba42;
}

/* header */
.MobileNav{
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-color: #0d1117;
    padding-top: 10%;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease-in-out;
    z-index: 10;
}
.MobileNav.Visible{
    transform: scaleX(1);
}
.Mobile-links{
    display: flex;
    flex-direction: column;
    font-size: 36px ;
   
}
.Services-Mobile-Link{
    width: 80%;
    
    border-bottom: 2px solid #a2c9ff;
    height: 60px;
    margin: 5% auto 5% auto;
    display: flex;
    align-items: center;
}

.Logo{
    width: 48px;
    aspect-ratio: 1/1;
  
    background-image: url(assets/logoV2.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.logo-area{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 25%;
}
.Nav-Right{
    display: flex;
    flex-direction: row;
    align-items: center;;
}
@media (max-width:530px) {
    .logo-area{
        width: 50%;
    }
}

.Menu{
    /* border: 2px solid red; */
    width: 48px;
    aspect-ratio: 1/1;
    
    background-image: url(assets/menu.svg);
    background-position: center;
    background-size:cover;
    margin-left: 5px;
}
@media (min-width:660px) {
    .Menu{
        display: none;
    
    }
}
body {
  background-color: #0d1117;
  color: #c9d1d9;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Geist', sans-serif;
}

/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #161b22;
  border-bottom: 1px solid #30363d;
  z-index: 50;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-text {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 32px;
  font-weight: 600;
  color: #a2c9ff;
  letter-spacing: -0.025em;
  margin-left: 3%;
}

.nav-links {
  display: none;
  gap: 32px;
  align-items: center;
}

@media (min-width: 662px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: #c0c7d4;
  text-decoration: none;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  transition: color 0.2s;
  cursor: pointer;
  padding: 4px 0;
}


.nav-link:hover {
  color: #a2c9ff;
}

.nav-link.active {
  color: #a2c9ff;
  font-weight: 700;
  border-bottom: 2px solid #a2c9ff;
  padding-bottom: 4px;
}
/* buttons */
/* Buttons */
.btn-primary {
  background-color: #58a6ff;
  color: #00315c;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-get-started {
  background-color: #58a6ff;
  color: #00315c;
}

.btn-claim {
  width: 100%;
  margin-top: 32px;
  padding: 12px 16px;
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.btn-secondary {
  background-color: #e0e2ea;
  color: #00315c;
  padding: 12px 32px;
  border-radius: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-secondary:hover {
  background-color: #c9e3ff;
}
.btn-cta{
    display: flex;
    /* justify-content: center; */
    align-items: center;
}