/* ============================================================
   GLOBAL BACKGROUND GRADIENT
   ============================================================ */
html, body {
  background: linear-gradient(135deg, #141426, #1219c2);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x:hidden;
}

.fs-7 {
    font-size: 13px !important;
}

input.form-control::placeholder {
    color: #9f9f9f !important;
}

/* ===============================
   Gradient Blue Button (Glow)
   =============================== */
.btn-blue {
  position: relative;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  overflow: visible !important;
  z-index: 1;
  transition: all 0.25s ease;
  border:0px;
}

/* Glowing border */
.btn-blue::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  filter: blur(10px);
  opacity: 0.9;
  z-index: -1;
}


/* Hover */
.btn.btn-blue:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(18, 25, 194, 0.9);
  color: #fff !important;
  border: 1px solid #4047ff !important;
}

/* Focus (Bootstrap friendly) */
.btn-blue:focus {
  box-shadow: 0 0 0 0.25rem rgba(18, 25, 194, 0.35);
}

/* Disabled */
.btn-blue:disabled,
.btn-blue.disabled {
  opacity: 0.6;
  box-shadow: none;
  filter: none;
}


.btn-blue:hover::before {
  animation: glowMove 2s linear infinite;
}

@keyframes glowMove {
  0% { filter: blur(10px); }
  50% { filter: blur(14px); }
  100% { filter: blur(10px); }
}


input,
select,
textarea {
  font-size: 16px !important;
}


@supports (-webkit-touch-callout: none) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}



input:focus {
  transform: scale(1) !important;
}



select option { color: black; }

input[type="date"] {
    color: #fff;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.9;
}


.card-body {
    background: transparent;
    backdrop-filter: blur(10px);

}

form.card.card-body.shadow-sm {
    background: transparent;
}

.text-yellow {
    color: #FED254 !important; /* LinkIt yellow */
}




.password-group .input-group-text {
    cursor: pointer;
    background: #fff;
    border-left: none;
}

.password-group .form-control {
    border-right: none;
}

.password-group .input-group-text i {
    color: #444;
    font-size: 1rem;
}





.hero-image {
    max-width: 80% !important;
}



.plan-card {
    display: flex;
    flex-direction: column;
}

.plan-card .benefits-list {
    flex-grow: 1; /* pushes the button down */
}

.plan-card a.btn {
    margin-top: auto; /* keeps button at bottom */
}



/* =====================================
   HERO GLOBE BACKGROUND
   ===================================== */

.hero-globe-bg {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0; /* VERY IMPORTANT */
}

section {
  position: relative;
  z-index: 2;
}


.hero-globe-bg::before {
  content: "";
  width: 520px;
  height: 520px;
  background: url("/assets/img/world.png") center / contain no-repeat;
  opacity: 30;
  filter: blur(0.5px);
}


.hero-section .container {
  position: relative;
  z-index: 2;
}

.py-5.bg-dark-soft {
  position: relative;
  z-index: 3;
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-globe-bg::before {
  animation: slowRotate 120s linear infinite;
}


.hero-globe-bg::before {
  filter: drop-shadow(0 0 40px rgba(0, 180, 255, 0.35));
}


/* Make placeholders white */
.login-card ::placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
    
}

.login-card input {
    font-size: 16px !important;
}

/* ============================================================
   404
   ============================================================ */

.error-404 h1 {
    font-size: 72px;
    font-weight: 800;
    color: #8852c9; /* your brand purple */
}

.error-404 p {
    font-size: 18px;
    color: #555;
}

.error-404 a.btn-primary {
    border-radius: 10px;
}



/* =====================================
   HOW IT WORKS – Glass Cards
   ===================================== */
.bg-dark-soft .bg-dark {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 11px 31px rgb(0 0 0 / 16%);
}

/* Optional hover refinement */
.bg-dark-soft .bg-dark:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}



/* ============================================================
   FLOATING SUPPORT BUTTON
   ============================================================ */
.support-btn {
  position: fixed;
  bottom: 35px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #FED254;
  color: #000;
  border-radius: 50%;
  border: none;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 9999;
}

.support-popup {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 360px;
  height: 520px;
  background: #0B0D13;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  display: none;
  flex-direction: column;
  z-index: 99999;
}


.popup-header {
  background: #FED254;
  color: #000;
  padding: 10px 15px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-popup {
  cursor: pointer;
  font-size: 22px;
}

.support-iframe {
  width: 100%;
  height: calc(100% - 45px);
  border: none;
}


/* ===============================
   Pricing Toggle Switch
=============================== */
.switch-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}
.switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider-toggle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #999;
  transition: .4s;
  border-radius: 34px;
}
.slider-toggle:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider-toggle {
  background-color: #ffc107;
}
input:checked + .slider-toggle:before {
  transform: translateX(30px);
}
.discount-badge {
  background-color: #ffc107;
  color: #000;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}
.price-text {
  transition: opacity 0.3s ease;
}


/* ============================================================
    LANGUAGE SWITCH BUTTON
   ============================================================ */
.lang-switch {
  background-color: #FED254 !important;  /* LinkIt gold / Infotap accent */
  color: black !important;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.lang-switch:hover {
  background-color: #6f3fb1; /* purple hover tone */
  color: #fff !important;
  text-decoration: none;
}



/* ===============================
   CARD / FORM CONTAINER
   =============================== */
form.card.card-body.shadow-sm.login-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* ============================================================
    SUPPORT PAGE STYLING
   ============================================================ */
.support-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  color: #fff;
  transition: 0.3s ease;
}
.support-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.support-card .form-select option[disabled][selected] {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.support-card .form-control {
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 12px 14px;
  transition: all 0.3s ease;
}
.support-card .form-control:focus {
  border-color: #fed254;
  box-shadow: 0 0 0 3px rgba(254, 210, 84, 0.2);
}
.support-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.support-card .form-label {
  color: rgba(255, 255, 255, 0.7);
}
.support-card .btn-warning {
  background-color: #fed254 !important;
  border: none !important;
  color: #000 !important;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s ease;
}
.support-card .btn-warning:hover {
  background-color: #f4c842 !important;
}
.support-card a:hover {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

/* Department Dropdown (inside support-card) */
.support-card .form-select {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
}
.support-card .form-select:focus {
  border-color: #fed254;
  box-shadow: 0 0 0 3px rgba(254, 210, 84, 0.2);
  outline: none;
}
.support-card .form-select option {
  color: #000;
}
.support-card .form-select:invalid {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   ðŸŸ£ MODERN FLAT FOOTER
   ============================================================ */
main { flex: 1; }

.main-footer {
  margin-top: auto;
  background: linear-gradient(135deg, #141426, #1219c2);
  border-top: 1px solid rgba(228, 230, 235, 0.25);
  color: #fff;
  text-align: center;
  padding: 28px 10px;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
}
.main-footer p { margin: 0; font-weight: 300; }
.main-footer a {
  color: #8852c9;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.25s ease;
}
.main-footer a:hover {
  color: #6e41a6;
  text-decoration: underline;
}

/* ============================================================
   ðŸ’Ž PRICING CARDS â€“ GLASS STYLE
   ============================================================ */
.plan-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: none;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}
.featured-plan {
  border: 1px solid rgba(255, 210, 84, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(254, 210, 84, 0.2);
}
.plan-card h5 { font-size: 1.1rem; }
.plan-card ul {
  margin-top: 20px;
  line-height: 1.7;
}
.plan-card ul li {
  position: relative;
  padding-left: 24px;
}
.plan-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='%2300ff88' d='M9 16.2l-3.5-3.5-1.4 1.4L9 19 20.3 7.7l-1.4-1.4z'/></svg>");
}
.btn-warning {
  background-color: #fed254 !important;
  border: none !important;
  color: #000 !important;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.btn-warning:hover { background-color: #f4c842 !important; }
.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.popular-badge .badge {
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   ðŸ”· SITE HEADER & NAVBAR
   ============================================================ */
.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1020;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 14px 0px;
}
.navbar-brand img {
  height: 30px !important;
  width: auto !important;
  max-height: 60px !important;
  transition: transform 0.3s ease;
  filter: brightness(30) !important;

}
.navbar-brand img:hover { transform: scale(1.05); }
.nav-link {
  display: inline-block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: 0.98rem;
  color: #ffffff !important;
  text-decoration: none;
  background: transparent;
  border: none;
  position: relative;
  transition: all 0.25s ease-in-out;
  letter-spacing: 0.3px;
}
.nav-link:hover,
.nav-link:focus {
  color: #ffd968 !important;
  transform: translateY(-2px);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffd968;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-link:hover::after { width: 50%; }
.navbar {
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.btn:hover {
  color: black !important;
  background-color: #fed254 !important;
  border-color: #ffe18d !important;
}
.btn-outline-light { color: #fff !important; }
.mobile-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1999;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  max-width: 220px;
  height: 100%;
  background: linear-gradient(225deg, #141426, #1219c2);
  backdrop-filter: blur(15px);
  border-right: 1px solid rgba(255,255,255,0.2);
  box-shadow: 2px 0 10px rgba(0,0,0,0.4);
  transition: left 0.4s ease;
  z-index: 2000;
}
.mobile-menu.open { left: 0; }
.menu-content { padding: 60px 25px; }
.menu-content ul li { margin-bottom: 18px; }
.menu-content ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}
.menu-content ul li a:hover,
.menu-content ul li a.active {
  color: #fed254;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}


.main-footer .fi {
  border-radius: 2px;
}

