html {
  scroll-behavior: smooth;
}

  
  
  /* Custom Tailwind Colors (for demonstration, set in tailwind.config.js in a real project) */
        /* Using standard Tailwind classes with equivalent colors for this example */
        .bg-cream-100 { background-color: #f7f3e8; }
        .text-blue-900 { color: #1e3a8a; }
        .bg-blue-900 { background-color: #1e3a8a; }
        .text-amber-600 { color: #d97706; }
        .border-amber-600 { color: #d97706; }
        .border-gray-300 { border-color: #d1d5db; }

        
        /* Custom Hover Effect for Cards */
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }












/* .loader { background: rgba(255, 255, 255, 0.8); display: none; height: 100%; position: fixed; width: 100%; z-index: 9999; }

.loader img { left: 50%; margin-left: -32px; margin-top: -32px; position: absolute; top: 50%; } */

/* images */
/* Position the image container (needed to position the left and right arrows) */
.w3container {
    position: relative;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .w3prev,
  .w3next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .w3next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .w3prev:hover,
  .w3next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  .w3row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .w3column {
    float: left;
    width: 16.66%;
  }
  
  /* Add a transparency effect for thumnbail images */
  .w3demo {
    opacity: 0.6;
  }
  
  .w3active,
  .w3demo:hover {
    opacity: 1;
  }