/* Root Variables */
:root {
    --primary-color: #1a3a8f;
    --secondary-color: #f8c537;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --transition: all 0.3s ease;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo-img {
    height: 40px;
    width: 40px;
    border-radius: 5px;
    object-fit: cover;
  }

  .logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
  }

  .nav-links li a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .nav-links li a:hover,
  .nav-links li a.nav-cta {
    color: #0077cc;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Hamburger "X" animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Responsive nav */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 70px;
      right: 20px;
      background: #fff;
      flex-direction: column;
      width: 200px;
      display: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 20px;
      border-radius: 8px;
      z-index: 1000;
    }

    .nav-links.active {
      display: flex;
    }

    .hamburger {
      display: flex;
    }
  }