/* ------------------------------------------------------
   FONT IMPORTS
   ------------------------------------------------------ */
   @font-face {
    font-family: 'SF Pro';
    src: url('/resources/fonts/SF-Pro-Display-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'SF Pro';
    src: url('/resources/fonts/SF-Pro-Display-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'SF Pro';
    src: url('/resources/fonts/SF-Pro-Display-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
  }
  
  /* ------------------------------------------------------
     ROOT VARIABLES
     ------------------------------------------------------ */
  :root {
    --font-family: 'SF Pro', sans-serif;
  
    --heading-color: #000000;
    --heading-size: 30px;
    --heading-weight: 600;
  
    --subheading-color: #595959;
    --subheading-size: 22px;
    --subheading-weight: 600;
  
    --description-color: #000000;
    --description-size: 14px;
    --description-weight: 400;
  
    --subdescription-color: #8C8C8C;
    --subdescription-size: 14px;
    --subdescription-weight: 400;
  
    --link-color: #0088FF;
    --link-size: 14px;
    --link-weight: 400;
  
    --navlist-color: #333333;
    --navlist-size: 12px;
    --navlist-weight: 500;
  }
  
  /* ------------------------------------------------------
     TYPOGRAPHY STYLES
     ------------------------------------------------------ */
  .heading {
    color: var(--heading-color);
    font-size: var(--heading-size);
    font-family: var(--font-family);
    font-weight: var(--heading-weight);
  }
  
  .subheading {
    color: var(--subheading-color);
    font-size: var(--subheading-size);
    font-family: var(--font-family);
    font-weight: var(--subheading-weight);
  }
  
  .description {
    color: var(--description-color);
    font-size: var(--description-size);
    font-family: var(--font-family);
    font-weight: var(--description-weight);
  }
  
  .subdescription {
    color: var(--subdescription-color);
    font-size: var(--subdescription-size);
    font-family: var(--font-family);
    font-weight: var(--subdescription-weight);
    line-height: 1.5;
  }
  
  .link-text {
    color: var(--link-color);
    font-size: var(--link-size);
    font-family: var(--font-family);
    font-weight: var(--link-weight);
    text-decoration: none;
  }
  
  .link-text:hover {
    color: var(--description-color);
  }
  
  .navlist-text {
    color: var(--navlist-color);
    font-size: var(--navlist-size);
    font-family: var(--font-family);
    font-weight: var(--navlist-weight);
    text-transform: none;
    letter-spacing: 0.5px;
  }

  .navlist-text:hover{
    color: var(--link-color);
  }
  
  /* ------------------------------------------------------
     OPTIONAL BASE STYLING
     ------------------------------------------------------ */
  body {
    font-family: var(--font-family);
    background-color: #fff;
    margin:0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  li{
    list-style: none;
    padding: 0;
    margin: 0;
  }

  a{
    text-decoration: none;
    padding: 0;
    margin: 0;
  }

  .navbar{
    height: 45px;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.5);
    border-bottom: solid #D9D9D9 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    backdrop-filter: blur(10px);
    z-index: 999;
  }
  
  .navContainer{
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navlist{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
  }

  .Container{
    width: 70%;
  }

  .row{
    width: 100%;
    column-gap: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .col{
    height: 100%;
  }

  /* ------------------------------------------------------
   BUILT BY ONE SECTION
   ------------------------------------------------------ */
.built-section {
  width: 70%;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.built-title {
  text-align: center;
  margin-bottom: 40px;
}

.built-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  row-gap: 15px;
  width: 100%;
}

.built-card {
  border: 1px solid #E6E6E6;
  border-radius: 0px;
  background-color: #FFFFFF;
  padding: 0px 15px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.02);
  margin: -1px 0 0 -1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.built-card:hover {
  transform: translateY(0px);
  box-shadow: 0px 6px 12px rgba(0,0,0,0.05);
}

.built-card h3 {
  margin-bottom: 10px;
}

.built-card p {
  line-height: 1.6;
}

.built-card.wide {
  grid-column: span 2;
}

/* ------------------------------------------------------
   FOOTER SECTION (Matches Design Image)
   ------------------------------------------------------ */
   .footer {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    padding: 60px 0 25px 0;
  }
  
  .footer-wrapper {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
  }
  
  /* ----- Top Section ----- */
  .footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  /* Brand Section */
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-logo {
    width: 22px;
    height: 22px;
  }
  
  .footer-name {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: #000;
  }
  
  /* Columns Section */
  .footer-columns {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-link {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 500;
    color: var(--subdescription-color);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .footer-link:hover {
    color: var(--link-color);
  }
  
  /* ----- Bottom Section ----- */
  .footer-bottom {
    border-top: 1px solid #E6E6E6;
    padding-top: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer-email {
    color: var(--link-color);
    text-decoration: none;
  }
  
  .footer-email:hover {
    text-decoration: underline;
  }
  
  /* ----- Responsive Layout ----- */
  @media (max-width: 768px) {
    .footer-wrapper {
      width: 90%;
      gap: 30px;
    }
  
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-columns {
      justify-content: center;
      gap: 30px;
    }
  
    .footer-bottom {
      text-align: center;
    }
  }

  
  