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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.liquid-gradient {
    background: linear-gradient(135deg, #003974 0%, #00509d 100%);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient( circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.3), rgba(255,255,255,0.05) );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.6), 0 0 30px rgba(255,255,255,0.2);
    mix-blend-mode: screen;
    animation: bubbleAnim 1.2s ease-out forwards;
}
/* Bootstrap margin kalıntısını temizle */
body {
    margin-bottom: 0;
}

/* Bubble animasyonu (tanımlı değildi) */
@keyframes bubbleAnim {
    0% {
        opacity: 0.8;
        transform: scale(0.3) translateY(0);
    }

    60% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        transform: scale(1.2) translateY(-60px);
    }
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* Contact form honeypot */
.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}