
:root {
      --white: #ffffff;
      --darkblue: #0b1e36;
      --orange: #ff7b00;
      --gray: #dddddd;
      --font: 'Arial', sans-serif;
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      color: #1b2a49;
      background-color: #ffffff;
      overflow-x: hidden;
    }

    nav {
      display: flex;
      justify-content: center;
      gap: 0.2rem;
      padding: 0.2rem;
      background-color: #f8f8f8;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--orange);
    }

    .nav-links {

      list-style: none;
      display: flex;
      gap: 1px;
    }

    header {
      text-align: center;
      padding: 4rem 1rem;
      animation: fadeIn 1s ease-in-out;
    }
    header h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
      font-weight: bold;
    }
    header p {
      font-size: 1.4rem;
      color: #555;
    }
    .signature-block {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .signature-block img {
      max-width: 220px;
      margin-bottom: 0.5rem;
    }
    .signature-block span {
      font-size: 1.2rem;
      font-weight: bold;
      color: #1b2a49;
    }
    .cta-button {
      background-color: #ff7a00;
      color: #fff;
      border: none;
      padding: 1rem 2rem;
      font-size: 1.2rem;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s, background-color 0.3s;
      margin-top: 1rem;
    }
    .cta-button:hover {
      background-color: #e56d00;
      transform: scale(1.05);
    }
    section {
      max-width: 1000px;
      margin: 4rem auto;
      padding: 0 1rem;
      text-align: center;
    }
    section h2 {
      font-size: 2.3rem;
      margin-bottom: 1rem;
      animation: slideIn 1s ease-in-out;
    }
    section p {
      font-size: 1.15rem;
      line-height: 1.7;
      color: #444;
    }
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .feature {
      background-color: #f8f8f8;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: transform 0.4s ease;
    }
    .feature:hover {
      transform: scale(1.05);
    }
    .feature h3 {
      color: #1b2a49;
      margin-bottom: 0.5rem;
    }
       .nav-links a {
      margin: 0 1rem;
      color: #1b2a49;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }




    footer {
      text-align: center;
      padding: 2rem 1rem;
      background-color: #f0f0f0;
      color: rgba(27,42,73,0.7);
    }
    footer a {
      color: #1b2a49;
      text-decoration: none;
    }
    @keyframes fadeIn {
      0% {opacity: 0;}
      100% {opacity: 1;}
    }
    @keyframes slideIn {
      0% {transform: translateY(40px); opacity: 0;}
      100% {transform: translateY(0); opacity: 1;}
    }
    .logo {
      font-size: 28px;
      font-weight: bold;
      color: var(--orange);
      text-decoration: none;
    }
    .about-preview {
      background-color: #f8f8f8;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      margin-top: 3rem;
    }
    .about-preview h3 {
      margin-bottom: 1rem;
    }
    .about-preview p {
      margin-bottom: 1rem;
    }
    .about-preview a {
      display: inline-block;
      margin-top: 0.5rem;
      color: #ff7a00;
      font-weight: bold;
      text-decoration: none;
    }

.logo-carousel-section {
  text-align: center;
  margin: 4rem auto;
  max-width: 1000px;
}

.logo-carousel-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--darkblue);
}

.logo-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 3rem;
  animation: scroll-logos 20s linear infinite;
}

.logo-track img {
  height: 60px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.logo-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
