/* ============================
   Navbar Login / Sign Up button (shown to guests only)
   ============================ */
.navbar-login-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border: none;
  border-radius: 999px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.navbar-login-btn:hover {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.45);
  color: #fff !important;
}

.navbar-login-btn:active {
  transform: scale(0.97);
}

/* ============================
   Fixed Language Toggle FAB
   Bottom-left, visible on every page
   ============================ */
#lang-toggle-fab {
  position: fixed;
  bottom: 20px;
  left: 16px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: box-shadow .18s ease, transform .18s ease;
  user-select: none;
}

#lang-toggle-fab:hover {
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.18);
  transform: translateY(-2px);
}

.lang-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  transition: color .18s ease;
  min-width: 18px;
  text-align: center;
}

/* Highlight active label */
#lang-toggle-fab.lang-hi #lang-label-hi,
#lang-toggle-fab:not(.lang-hi) #lang-label-en {
  color: #6366f1;
}

/* Custom toggle switch */
.lang-switch-wrap {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  cursor: pointer;
  margin: 0;
}

.lang-switch-wrap input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.lang-slider {
  position: absolute;
  inset: 0;
  background: #e2e8f0;
  border-radius: 999px;
  transition: background .18s ease;
}

.lang-slider::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform .18s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.lang-switch-wrap input:checked~.lang-slider {
  background: #6366f1;
}

.lang-switch-wrap input:checked~.lang-slider::before {
  transform: translateX(16px);
}


.navbar-login-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border: none;
  border-radius: 999px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.navbar-login-btn:hover {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.45);
  color: #fff !important;
}

.navbar-login-btn:active {
  transform: scale(0.97);
}

/* home page */
.card {
  padding: 0px !important;
  border: rgb(56, 55, 55) 2px solid !important;
  border-radius: 20px;
  margin: 30px;
  background-color: none !important;
}

.contain {
  display: flex;
  flex-wrap: wrap;
}

.card-img-top {
  border-radius: 1rem;
  width: 100%;
  object-fit: cover !important;

}

/* navbar */
.navbar {
  border-bottom: 1px solid var(--border) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar .container-fluid {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 14px;
  padding-right: 14px;
}

.navbar .navbar-toggler {
  border: 1px solid rgba(15, 23, 42, 0.14) !important;
  border-radius: 12px;
  padding: 8px 10px;
}

.navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25) !important;
}

.navbar .navbar-nav {
  gap: 6px;
  align-items: center;
}

.navbar .nav-link {
  color: var(--text) !important;
  font-weight: 650;
  font-size: 14px;
  padding: 10px 12px !important;
  border-radius: 12px;
  transition: background .18s ease, transform .18s ease, color .18s ease;
}

.navbar .nav-link:hover {
  background: rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.navbar .nav-link.drop {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  padding: 0 !important;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.8);
}

.navbar .nav-link.drop i {
  font-size: 20px;
}

.navbar .dropdown-menu {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: var(--shadow);
  padding: 8px;
  margin-top: 10px !important;
}

.navbar .dropdown-item {
  border-radius: 12px;
  padding: 10px 10px;
  font-weight: 600;
  color: var(--text);
}

.navbar .dropdown-item:hover {
  background: rgba(15, 23, 42, 0.06);
}

.navbar .dropdown-divider {
  margin: 8px 0;
}

/* Search bar right side */
.navbar form.inline {
  gap: 8px;
  align-items: center;
  margin-right: 10px;
}

.navbar .form-control {
  border-radius: 14px !important;
  border: 1px solid rgba(15, 23, 42, 0.14) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  padding: 10px 12px;
  min-width: 220px;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.navbar .form-control:focus {
  border-color: rgba(59, 130, 246, 0.35) !important;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18) !important;
}

.navbar .btn.btn-outline-success {
  border-radius: 14px !important;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.14) !important;
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.navbar .btn.btn-outline-success:hover {
  background: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

/* Signup button contains <a class="dropdown-item">. Make it look like a button */
.navbar>.btn.btn-outline-success a.dropdown-item {
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: inherit !important;
  font-weight: 750;
}

/* Mobile navbar collapse styling */
@media (max-width: 576px) {
  .navbar .container-fluid {
    gap: 8px;
  }

  .navbar form.inline {
    width: 100%;
    padding: 10px 14px 12px;
    margin: 0;
  }

  .navbar .form-control {
    min-width: 0;
    width: 100%;
  }

  .navbar .navbar-collapse {
    padding: 10px 8px 6px;
    margin-top: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .navbar .navbar-nav {
    align-items: stretch;
  }

  .navbar .nav-link {
    width: 100%;
  }
}

/* icons in home page */
.icons-wrap {
  display: none;
}

.icons {
  width: min(1100px, calc(100% - 28px));
  margin: 14px auto 16px;
  height: auto;
  display: flex;
  align-items: stretch;
  gap: 12px;

  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 8px 14px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  backdrop-filter: blur(8px);
}

.icons::-webkit-scrollbar {
  height: 0;
}

.icons {
  scrollbar-width: none;
}

.icon-element {
  flex: 0 0 auto;
  width: 112px;

  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;

  padding: 12px 10px;
  text-align: center;

  scroll-snap-align: start;

  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.icon-element:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.10);
}

.icon-element a {
  width: 58px;
  height: 58px;
  margin: 0 auto;

  display: grid;
  place-items: center;

  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);

  text-decoration: none;
}

.icon-element i {
  font-size: 26px;
  color: var(--text);
  line-height: 1;
}

.icon-element svg {
  width: 28px;
  height: 28px;
  color: var(--text);
  display: block;
}

.icon-element p {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  word-break: break-word;
}

/* Mobile tweaks for icons */
@media (max-width: 480px) {

  .icons {
    width: 100%;
    height: auto;
    gap: 10px;
    padding: 10px 8px 12px;
  }

  .icon-element {
    width: 98px;
    padding: 10px 8px;
    border-radius: 16px;
  }

  .icon-element a {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .icon-element p {
    font-size: 12px;
  }
}


/* footer of the all pages */
/* =========================
   PREMIUM FOOTER (CSS ONLY)
   For your exact HTML structure
   ========================= */

/* nicer divider */
hr {
  border: 0;
  height: 1px;
  width: min(1100px, calc(100% - 28px));
  margin: 34px auto 0;
  background: linear-gradient(to right, transparent, rgba(15, 23, 42, 0.18), transparent);
}

.footer {
  width: 100%;
  padding: 0;
  background: #374151;
  /* deep navy */
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  overflow: hidden;
}

/* soft glowing shapes */
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
}

.footer::before {
  top: -260px;
  left: -200px;
  background: #2dd4bf;
  /* teal glow */
}

.footer::after {
  bottom: -300px;
  right: -220px;
  background: #60a5fa;
  /* blue glow */
}

/* main grid container */
.f-info {
  width: min(1100px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 0 22px;

  display: grid;
  gap: 16px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

/* Company name */
.f-info>div:nth-child(2) {
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: 15px;
  color: #ffffff;
}

/* Socials */
.f-info-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.f-info-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);

  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.f-info-socials a i {
  font-size: 18px;
  color: #ffffff;
  opacity: .9;
}

.f-info-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* City section */
.city {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.city .bold {
  margin: 0;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.2px;
  font-size: 14px;
  flex-basis: 100%;
}

/* your spans: class="City name" => select .City.name */
.city .City.name {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);

  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;

  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

/* small dot before city name */
.city .City.name::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.18);
}

.city .City.name:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Links */
.f-info-link {
  display: flex;
  gap: 12px;
  align-items: center;
}

.f-info-link a {
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);

  padding: 10px 12px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);

  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.f-info-link a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* Desktop layout: 3 columns looks premium */
@media (min-width: 900px) {
  .f-info {
    grid-template-columns: 1fr 1.4fr 1fr;
    align-items: start;
    padding: 30px 0 26px;
  }

  .f-info-socials {
    justify-content: flex-start;
  }

  .city {
    justify-content: center;
  }

  .f-info-link {
    justify-content: flex-end;
  }
}

/* Mobile layout: centered, tighter */
@media (max-width: 899px) {
  .f-info {
    text-align: center;
  }

  .f-info-socials,
  .f-info-link {
    justify-content: center;
  }

  .city {
    justify-content: center;
  }

  .city .bold {
    text-align: center;
  }
}

/* Focus ring (accessibility) */
.footer a:focus-visible {
  outline: 3px solid rgba(96, 165, 250, 0.5);
  outline-offset: 3px;
  border-radius: 14px;
}

/* cards in home page */
/* =========================
   BEAUTIFUL CARDTD GRID (CSS ONLY)
   For your classes: .contain .cardtd .cardtd-img-top .cardtd-body .cardtd-title .cardtd-text
   ========================= */

:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;

  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
  --shadow2: 0 18px 55px rgba(15, 23, 42, 0.14);

  --radius: 22px;
}

/* Grid container */
.contain {
  width: min(1100px, calc(100% - 28px));
  margin: 16px auto 44px;

  display: grid;
  gap: 16px;

  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.contain form {
  margin: 0;
}

.contain a.btn {
  padding: 0 !important;
  border: 0 !important;
  display: block;
  text-decoration: none !important;
}

/* Card */
.cardtd {
  position: relative;
  height: auto;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;

  box-shadow: var(--shadow);
  transform: translateZ(0);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.cardtd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
  border-color: rgba(15, 23, 42, 0.14);
}

/* Image */
.cardtd-img-top {
  width: 100%;
  height: 230px !important;
  /* overrides your inline height for better responsiveness */
  object-fit: cover;
  display: block;

  filter: saturate(1.07) contrast(1.03);
  transform: scale(1.001);
  transition: transform .35s ease;
}

.cardtd:hover .cardtd-img-top {
  transform: scale(1.04);
}

/* Gradient overlay for premium look */
.cardtd::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(2, 6, 23, 0.00) 35%, rgba(2, 6, 23, 0.16) 100%);
  opacity: .8;
}

/* Body */
.cardtd-body {
  position: relative;
  z-index: 1;

  padding: 14px 14px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);

  /* separates text area nicely from image */
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

/* Title */
.cardtd-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: var(--text);
}

/* Description (clamped for clean UI) */
.cardtd-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================
   Global Notification System
   ============================ */

.notification-nav-item {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.2s ease;
  padding: 0 !important;
  color: var(--text) !important;
  cursor: pointer;
}

.notification-nav-item:hover {
  background: rgba(15, 23, 42, 0.06) !important;
  transform: translateY(-1px);
}

.notification-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  background: #ef4444;
  border: 2px solid #fff;
  border-radius: 50%;
  display: none;
  /* Hidden by default, shown via JS */
}

.notification-dropdown {
  width: 320px !important;
  max-height: 480px;
  overflow-y: auto;
  padding: 0;
  border-radius: 18px;
  box-shadow: var(--shadow2);
  border: 1px solid var(--border);
  margin-top: 12px !important;
}

.notification-header {
  padding: 14px 16px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.notification-header h6 {
  margin: 0;
  font-weight: 800;
  font-size: 15px;
}

.mark-all-read-btn {
  font-size: 11px;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mark-all-read-btn:hover {
  background: #6366f1;
  color: #fff;
}

.notification-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notification-item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border2);
  transition: background 0.2s;
  text-decoration: none !important;
  color: var(--text) !important;
  display: flex !important;
  flex-direction: column;
  gap: 4px;
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-item:hover {
  background: #f1f5f9;
  text-decoration: none !important;
  color: var(--text) !important;
}

.notification-item.unread {
  background: #eff6ff;
  border-left: 3px solid #6366f1;
}

.notification-title {
  font-weight: 700;
  font-size: 14px;
  color: #1e293b !important;
}

.notification-msg {
  font-size: 13px;
  color: #475569 !important;
  line-height: 1.4;
}

.notification-time {
  font-size: 11px;
  color: #94a3b8 !important;
  margin-top: 2px;
}

.no-notifications {
  padding: 30px 20px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 576px) {
  .notification-dropdown {
    width: calc(100vw - 32px) !important;
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    top: 60px !important;
    margin: 0 !important;
    max-height: 70vh;
  }
}

/* Click/tap feedback */
.contain a.btn:active .cardtd {
  transform: scale(0.99);
}

/* Make it look good on small mobile */
@media (max-width: 480px) {
  .contain {
    gap: 14px;
    margin-top: 12px;
  }

  .cardtd-img-top {
    height: 210px !important;
  }

  .cardtd-title {
    font-size: 17px;
  }

  .cardtd-text {
    font-size: 13px;
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }
}

/* Tablet */
@media (min-width: 640px) {
  .contain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .cardtd-img-top {
    height: 240px !important;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .contain {
    width: 1000px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .cardtd-img-top {
    height: 250px !important;
  }
}

/* Accessibility focus ring */
.contain a.btn:focus-visible {
  outline: 3px solid rgba(96, 165, 250, 0.45);
  outline-offset: 6px;
  border-radius: var(--radius);
}

/* =========================
   GLOBAL INPUT STYLING
   Beautiful, responsive inputs for all pages
   ========================= */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="date"],
textarea,
select {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  /* Prevents iOS zoom */
  font-family: inherit;
  color: var(--text);

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;

  outline: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);

  appearance: none;
  /* Removes default OS styling */
  -webkit-appearance: none;
}

/* Hover State */
input:hover,
textarea:hover,
select:hover {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Focus State - Glow effect */
input:focus,
textarea:focus,
select:focus {
  background: #ffffff;
  border-color: #6366f1;
  /* Primary Indigo */
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
  /* Soft ring */
  transform: translateY(-1px);
}

/* Placeholder Styling */
::placeholder {
  color: #94a3b8;
  /* Slate 400 */
  opacity: 1;
}

/* Select specific tweaks */
select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* Valid/Invalid validation states (optional but nice) */
input:not(:placeholder-shown):valid {
  border-color: rgba(34, 197, 94, 0.3);
  /* Soft Green */
}

input:not(:placeholder-shown):invalid {
  border-color: rgba(239, 68, 68, 0.3);
  /* Soft Red */
}

/* Textarea specific */
textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

/* Disabled state */
input:disabled,
textarea:disabled,
select:disabled {
  background: #f1f5f9;
  cursor: not-allowed;
  opacity: 0.7;
}

/* File Input Sytling */
input[type="file"] {
  padding: 10px;
  background: white;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  margin-right: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background: #eff6ff;
  color: #4f46e5;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

input[type="file"]::file-selector-button:hover {
  background: #e0e7ff;
}

/* Label styling for context */
label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.95rem;
  margin-left: 4px;
  /* Align with input curve */
}

/* Mobile Adjustments */
@media (max-width: 640px) {

  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  textarea,
  select {
    padding: 14px 16px;
    /* Larger touch target */
    font-size: 16px;
  }
}

/* Desktop Enhancements for Premium Feel */
@media (min-width: 992px) {

  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="search"],
  input[type="tel"],
  input[type="url"],
  input[type="date"],
  textarea,
  select {
    padding: 16px 20px;
    /* Thicker/taller inputs */
    font-size: 16px;
    border-width: 1px;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    /* Subtle depth */
    box-shadow:
      0 2px 4px rgba(0, 0, 0, 0.02),
      /* Drop shadow */
      inset 0 1px 2px rgba(255, 255, 255, 0.8);
    /* Inner highlight */
  }

  /* Stronger Focus State on Desktop */
  input:focus,
  textarea:focus,
  select:focus {
    transform: translateY(-2px);
    /* Lift effect */
    background: #ffffff;
    border-color: #6366f1;
    box-shadow:
      0 10px 25px -5px rgba(99, 102, 241, 0.15),
      /* Large glow */
      0 0 0 4px rgba(99, 102, 241, 0.1);
    /* Ring */
  }

  /* Hover effect */
  input:hover,
  textarea:hover,
  select:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  }
}

/* footer of the all pages */
/* =========================
   PREMIUM FOOTER (CSS ONLY)
   For your exact HTML structure
   ========================= */

/* nicer divider */
hr {
  border: 0;
  height: 1px;
  width: min(1100px, calc(100% - 28px));
  margin: 34px auto 0;
  background: linear-gradient(to right, transparent, rgba(15, 23, 42, 0.18), transparent);
}

.footer {
  width: 100%;
  padding: 0;
  background: #0b1220;
  /* deep navy */
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  overflow: hidden;
}

/* soft glowing shapes */
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
}

.footer::before {
  top: -260px;
  left: -200px;
  background: #2dd4bf;
  /* teal glow */
}

.footer::after {
  bottom: -300px;
  right: -220px;
  background: #60a5fa;
  /* blue glow */
}

/* main grid container */
.f-info {
  width: min(1100px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 0 22px;

  display: grid;
  gap: 16px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

/* Company name */
.f-info>div:nth-child(2) {
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: 15px;
  color: #ffffff;
}

/* Socials */
.f-info-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.f-info-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);

  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.f-info-socials a i {
  font-size: 18px;
  color: #ffffff;
  opacity: .9;
}

.f-info-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* City section */
.city {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.city .bold {
  margin: 0;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.2px;
  font-size: 14px;
  flex-basis: 100%;
}

/* your spans: class="City name" => select .City.name */
.city .City.name {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);

  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;

  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

/* small dot before city name */
.city .City.name::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.18);
}

.city .City.name:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Links */
.f-info-link {
  display: flex;
  gap: 12px;
  align-items: center;
}

.f-info-link a {
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);

  padding: 10px 12px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);

  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.f-info-link a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* Desktop layout: 3 columns looks premium */
@media (min-width: 900px) {
  .f-info {
    grid-template-columns: 1fr 1.4fr 1fr;
    align-items: start;
    padding: 30px 0 26px;
  }

  .f-info-socials {
    justify-content: flex-start;
  }

  .city {
    justify-content: center;
  }

  .f-info-link {
    justify-content: flex-end;
  }
}

/* Mobile layout: centered, tighter */
@media (max-width: 899px) {
  .f-info {
    text-align: center;
  }

  .f-info-socials,
  .f-info-link {
    justify-content: center;
  }

  .city {
    justify-content: center;
  }

  .city .bold {
    text-align: center;
  }
}

/* Focus ring (accessibility) */
.footer a:focus-visible {
  outline: 3px solid rgba(96, 165, 250, 0.5);
  outline-offset: 3px;
  border-radius: 14px;
}