/* Import Satoshi Font */
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
  }
  
  /* Import Outfit Font */
  @font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }
  
  /* Global Styles */
  :root {
    /* Primary Colors */
    --primary: #1F235B; /* Main Accent Color (Buttons, Headings, Sections) */
    --secondary: #475467; /* Secondary Text / List Items */
    --success: #47CD89; /* Success States (Buttons, Alerts) */
    
    /* Neutral & Supporting Colors */
    --dark: #000000; /* Main Text */
    --muted: #667085; /* Muted Text / Paragraphs */
    --soft: #F2F4F7; /* Light Sections, Cards, Background */
    --highlight: #ABEFC6; /* Highlighted Text */
    --border: #C7D7FE; /* Input Borders, Placeholder */
    
   
  }
  
  /* Global Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  a{
    text-decoration: none;
  }
  
  body {
    background-color: #ffffff;
    color: var(--dark);
  }
  
  
  /* Utilities */
  .text-primary {
    color: var(--primary);
  }
  
  .text-secondary {
    color: var(--secondary);
  }
  
  .text-muted {
    color: var(--muted);
  }
  
  .text-highlight {
    color: var(--highlight);
  }
  
  .text-dark {
    color: var(--dark);
  }
  
  .text-success {
    color: var(--success);
  }
  
  /* Background & Borders */
  .bg-primary {
    background-color: var(--primary);
  }
  
  .bg-soft {
    background-color: var(--soft);
  }
  
  .border {
    border: 1px solid var(--border);
  }
  
  /* Buttons */
  .btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: white;
  }
  
  .btn-success {
    background-color: var(--success);
    color: white;
  }
  
  /* Input */
  input {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
  }
  
  input::placeholder {
    color: var(--border);
  }
  
  .main-home{
    font-family: 'Satoshi', sans-serif;
  }
    
  .container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
  }

  .main-container{
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
  }
  
  @media (max-width: 1024px) {
    .container {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  
  @media (max-width: 768px) {
    .container {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  
  
  