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: 0px;
}
.card-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .card-hover:hover {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
    }

.img-zoom {
    transition: transform 0.3s ease;
}

    .img-zoom:hover {
        transform: scale(1.05);
    }

.modal-img-zoom {
    transition: transform 0.3s ease;
    display: inline-block;
}

    .modal-img-zoom:hover {
        transform: scale(1.05);
    }

.position-absolute h2,
.position-absolute p {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.slogan-text {
    color: #ff5722; /* vibrant orange */
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    display: none;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: opacity 0.3s ease;
}
@media (max-width: 767.98px) {
    .header-offset {
        margin-top: 90px !important; /* Adjust as needed */
    }
}