 .brand-red {
      color: #DC2626;
    }

    .brand-blue {
      color: #1E40AF;
    }

    .bg-brand-red {
      background-color: #DC2626;
    }

    .bg-brand-blue {
      background-color: #1E40AF;
    }

    .border-brand-red {
      border-color: #DC2626;
    }

    .border-brand-blue {
      border-color: #1E40AF;
    }

    .hero-gradient {
      background: linear-gradient(135deg, #1E40AF 0%, #DC2626 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-gradient::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: moveBackground 20s linear infinite;
    }

    @keyframes moveBackground {
      0% {
        transform: translate(0, 0);
      }

      100% {
        transform: translate(50px, 50px);
      }
    }

    .car-card {
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .car-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .feature-card {
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .step-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: bold;
      color: white;
      margin: 0 auto;
      transition: all 0.3s ease;
    }

    .step-wrapper:hover .step-circle {
      transform: scale(1.1);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fade-in {
      animation: fadeIn 0.6s ease-out;
    }

    .price-card {
      transition: all 0.3s ease;
    }

    .price-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

    .floating-btn {
      animation: float 3s ease-in-out infinite;
      transition: all 0.3s ease;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .floating-btn:hover {
      animation: none;
      transform: scale(1.1);
    }

    .contact-popup {
      position: fixed;
      bottom: 110px;
      right: 24px;
      background: white;
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      padding: 20px;
      width: 320px;
      max-width: calc(100vw - 48px);
      transform: translateY(20px);
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
    }

    @media (max-width: 640px) {
      .contact-popup {
        right: 12px;
        bottom: 100px;
        padding: 16px;
      }
    }

    .contact-popup.show {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .btn-hover-effect {
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .btn-hover-effect:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-link {
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #DC2626;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* Additional custom styles can be added below */
     /* Animation keyframes */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Animation classes with delays */
    .animate-item {
      opacity: 0;
      animation-fill-mode: forwards;
    }

    .animate-card {
      animation: scaleIn 0.8s ease-out forwards;
    }

    .animate-heading {
      animation: fadeInUp 0.8s ease-out 0.2s forwards;
    }

    .animate-subheading {
      animation: fadeInUp 0.8s ease-out 0.4s forwards;
    }

    .animate-description {
      animation: fadeInUp 0.8s ease-out 0.6s forwards;
    }

    .animate-buttons {
      animation: fadeInUp 0.8s ease-out 0.8s forwards;
    }

    .animate-benefits {
      animation: fadeInUp 0.8s ease-out 1s forwards;
    }

    .animate-visual {
      animation: fadeInRight 1s ease-out 0.4s forwards;
    }

    /* Blob animation */
    @keyframes blob {
      0%, 100% {
        transform: translate(0, 0) scale(1);
      }
      25% {
        transform: translate(20px, -20px) scale(1.1);
      }
      50% {
        transform: translate(-20px, 20px) scale(0.9);
      }
      75% {
        transform: translate(20px, 20px) scale(1.05);
      }
    }

    .animate-blob {
      animation: blob 7s infinite;
    }

    .animation-delay-2000 {
      animation-delay: 2s;
    }

    .animation-delay-4000 {
      animation-delay: 4s;
    }

    /* Typewriter effect */
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    .typewriter-cursor {
      display: inline-block;
      width: 3px;
      height: 1em;
      background-color: currentColor;
      margin-left: 4px;
      animation: blink 1s infinite;
    }
    /*Nvabar active link*/

    /* Logo animation on load */
    @keyframes logoSlideIn {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .logo-container {
      animation: logoSlideIn 0.6s ease-out;
    }

    /* Navigation items fade in */
    @keyframes navFadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .nav-item {
      animation: navFadeIn 0.5s ease-out backwards;
    }

    .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .nav-item:nth-child(5) { animation-delay: 0.5s; }

    /* Mobile menu slide animation */
    @keyframes slideDown {
      from {
        opacity: 0;
        max-height: 0;
      }
      to {
        opacity: 1;
        max-height: 500px;
      }
    }

    @keyframes slideUp {
      from {
        opacity: 1;
        max-height: 500px;
      }
      to {
        opacity: 0;
        max-height: 0;
      }
    }

    .mobile-menu-enter {
      animation: slideDown 0.3s ease-out forwards;
    }

    .mobile-menu-exit {
      animation: slideUp 0.3s ease-out forwards;
    }

    /* Hamburger menu animation */
    .hamburger-line {
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .menu-open .hamburger-line:nth-child(1) {
      transform: rotate(45deg) translateY(8px);
    }

    .menu-open .hamburger-line:nth-child(2) {
      opacity: 0;
    }

    .menu-open .hamburger-line:nth-child(3) {
      transform: rotate(-45deg) translateY(-8px);
    }

    /* Header shrink on scroll */
    .header-scrolled {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .header-scrolled .logo-container {
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }

    /* Active link indicator */
    .nav-link.active {
      color: #e09635 !important;
    }

    .nav-link.active::after {
      width: 100%;
    }

    /* Language dropdown enhancement */
    .language-switch {
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .language-switch:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Mobile menu item animation */
    .mobile-menu-item {
      opacity: 0;
      transform: translateX(-20px);
      animation: slideInLeft 0.3s ease-out forwards;
    }

    @keyframes slideInLeft {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .mobile-menu-item:nth-child(1) { animation-delay: 0.05s; }
    .mobile-menu-item:nth-child(2) { animation-delay: 0.1s; }
    .mobile-menu-item:nth-child(3) { animation-delay: 0.15s; }
    .mobile-menu-item:nth-child(4) { animation-delay: 0.2s; }
    .mobile-menu-item:nth-child(5) { animation-delay: 0.25s; }

    /* Mobile responsiveness for floating button */
    @media (max-width: 640px) {
      .floating-btn {
        width: 64px;
        height: 64px;
        bottom: 20px;
        right: 20px;
      }
    }
