* Fonts */ :root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
      "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
      "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Poppins", sans-serif;
  }
  :root {
    --color-default: #0a0d13;
    --color-primary: #dc3545;
    --color-secondary: #0e1d34;
  }
  :root {
    scroll-behavior: smooth;
  }
  body {
    font-family: var(--font-default);
    color: var(--color-default);
  }
  a {
    color: var(--color-primary);
    text-decoration: none;
  }
  a:hover {
    color: #dc3545;
    text-decoration: none;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-primary);
  }
  section {
    padding: 80px 0;
    overflow: hidden;
  }
  .breadcrumbs .page-header {
    padding: 140px 0 80px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .breadcrumbs .page-header:before {
    content: "";
    background-color: rgb(14 29 52 / 0.6);
    position: absolute;
    inset: 0;
  }
  .breadcrumbs .page-header h2 {
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-secondary);
  }
  .breadcrumbs .page-header p {
    color: rgb(255 255 255 / 0.8);
  }
  .breadcrumbs h2 span {
    color: #ffc451;
  }
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.2s;
  }
  .scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  .scroll-top:hover {
    background: #dc3545;
    color: #fff;
  }
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
  }
  #preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: all 0.15s ease-out;
    width: 100%;
    height: 100vh;
  }
  #preloader:before,
  #preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  #preloader:after {
    animation-delay: -0.3s;
  }
  @keyframes animate-preloader {
    0% {
      width: 10px;
      height: 10px;
      top: calc(50% - 5px);
      left: calc(50% - 5px);
      opacity: 1;
    }
    100% {
      width: 72px;
      height: 72px;
      top: calc(50% - 36px);
      left: calc(50% - 36px);
      opacity: 0;
    }
  }
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  /*--------------------------------------------------------------
  # Team Section
  --------------------------------------------------------------*/
  .team .team-member {
    background-color: var(--surface-color);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 195px; /* 👈 Ensures all cards are the same height */
    margin: 0 auto; /* 👈 Ensures horizontal centering */
    max-width: 300px; /* Prevents stretching */
  }
  
  .team .team-member .member-img {
    position: relative;
    overflow: hidden;
    height: 250px;
  }

  .team .team-member .member-img img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* 👈 Makes image fill the box nicely */
  }
  
  .team .team-member .member-info {
    padding: 25px 15px;
    background-color: #ffc451;
  }
  
  .team .team-member .member-info h4 a {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: black;
  }
  
  .team .team-member .member-info h4 {
    font-weight: 705;
    margin-bottom: 5px;
    font-size: 18px;
    color: black;
  }
  
  .team .team-member .member-info span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: black;
  }
  