html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 6px 20px rgba(0,0,0,0.2);
    }

    .card img {
        height: 300px;
        object-fit: cover;
    }

    .card:hover {
        transform: translateY(-8px);
        transition: 0.3s;
        box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
    }

.top-header {
    font-family: "Segoe UI", sans-serif;
}

    .top-header h4,
    .top-header h5,
    .top-header h6 {
        line-height: 1.2;
    }

.navbar-nav .nav-link:hover {
    background-color: #0056b3 !important; /* Darker blue */
    color: #fff !important;
    border-radius: 4px; /* optional smooth corners */
}

/* Dropdown item hover */
.dropdown-menu .dropdown-item:hover {
    background-color: #0d6efd !important; /* Bootstrap primary */
    color: #fff !important;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}