 body {

      font-family: 'Open Sans', 'Lato', sans-serif;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', 'Poppins', sans-serif;
    }
/* Card Flip Core */
    .card-wrap {
      perspective: 1500px;
      -webkit-perspective: 1500px;
    }

    .card {
      position: relative;
      transform-style: preserve-3d;
      -webkit-transform-style: preserve-3d;
      transition: transform 1.15s cubic-bezier(.2, .9, .2, 1);
      transform-origin: center center;
      cursor: pointer;
    }

    .card-wrap:hover .card {
      transform: rotateY(180deg) scale(1.05);
    }

    .card-face {
      position: absolute;
      inset: 0;
      display: flex;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      box-sizing: border-box;
      border-radius: 1rem;
    }

    .card-face.front {
      z-index: 2;
    }

    .card-face.back {
      transform: rotateY(180deg);
      z-index: 1;
    }
     .stat-card {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(234, 88, 12, 0.1));
            border: 1px solid rgba(249, 115, 22, 0.2);
        }
          footer {
    margin: 0;
    font-family: 'Inter', sans-serif;
  }

  .footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f97316;
    display: inline-block;
    padding-bottom: 4px;
    line-height: 1.2;
  }

  .footer-links li a {
    color: #d1d5db;
    transition: all 0.3s ease-in-out;
    display: block;
    padding: 2px 0;
  }

  .footer-links li a:hover {
    color: #f97316;
    padding-left: 8px;
    transform: translateX(4px);
  }


  .custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #f97316 #374151;
  }

  .custom-scrollbar::-webkit-scrollbar {
    width: 4px;
  }

  .custom-scrollbar::-webkit-scrollbar-track {
    background: #374151;
    border-radius: 10px;
  }

  .custom-scrollbar::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 10px;
  }

  .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
  }


  @media (max-width: 479px) {
    .footer-heading {
      font-size: 1.125rem;
      margin-bottom: 0.75rem;
    }
    
    .footer-links li a {
      font-size: 0.8rem;
      padding: 1px 0;
    }
    
    .social-icon {
      font-size: 0.875rem;
    }
  }

  @media (max-width: 639px) {
    .container {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }

  @media (min-width: 640px) and (max-width: 767px) {
    .footer-links {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .grid-cols-3 {
      grid-template-columns: repeat(3, 1fr);
    }
  }


  @media (max-width: 768px) {
    .footer-links li a,
    .contact-link,
    .social-icon {
      min-height: 44px;
      display: flex;
      align-items: center;
    }
    
    .social-icon {
      justify-content: center;
      width: 44px;
      height: 44px;
    }
  }


  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .footer-heading {
      border-bottom-width: 1.5px;
    }
  }

 
  @media (prefers-reduced-motion: reduce) {
    .social-icon,
    .contact-link,
    .footer-links li a {
      transition: none;
    }
    
    .social-icon:hover,
    .social-icon:focus {
      transform: none;
    }
  }

  
  @media (prefers-color-scheme: dark) {
    footer {
      background-color: #000;
    }
  }


  @media print {
    footer {
      background-color: white !important;
      color: black !important;
    }
    
    .social-icon,
    .contact-link:hover {
      color: black !important;
    }
  }