.btn-theame-default {
  color: var(--contrast-color);
  background: var(--gradient-primary);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  border: 0px;
  position: relative;
  overflow: hidden;
}

.btn-theame-default::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}

.head-profile {
  width: 35px;
  height: 35px;
  border: 2px solid var(--primary-color);
  padding: 5px;
  border-radius: 100%;
  font-size: 21px;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.respimg {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 100% !important;
}

.head-profile img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

.li-active {
  background: var(--gradient-primary);
  color: #ffffff;
}

.li-active a {
  color: #ffffff;
}

.designed-radio.radio-group {
  display: flex;
  gap: 10px;
}

.designed-radio .radio-tab {
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
  user-select: none;
  /* Disable text selection */
  display: flex;
  flex-direction: column;
}

/* Hide the radio input */
.designed-radio input[type="radio"] {
  display: none;
}

/* Change entire div background when checked */
.designed-radio input[type="radio"]:checked+.radio-tab {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary-color);
}

.select2-container {
  width: 100% !important;
}

/* ===== Select2 Custom Design ===== */

/* Main container - match Bootstrap form-select height */
.select2-container--default .select2-selection--single {
  height: 38px !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 6px !important;
  background-color: #fff !important;
  padding: 4px 12px !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.select2-container--default .select2-selection--single:hover {
  border-color: var(--primary-color) !important;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(13, 115, 119, 0.15) !important;
  outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 28px !important;
  color: #212529 !important;
  padding-left: 0 !important;
  padding-right: 24px !important;
  font-size: 14px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px !important;
  right: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #6c757d !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  margin-right: 24px !important;
  font-size: 16px !important;
  color: #999 !important;
}

/* Multiple select */
.select2-container--default .select2-selection--multiple {
  min-height: 38px !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 6px !important;
  background-color: #fff !important;
  background-image: none !important;
  padding: 3px 8px !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.select2-container--default .select2-selection--multiple:hover {
  border-color: var(--primary-color) !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--multiple {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(13, 115, 119, 0.15) !important;
  outline: none !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 3px 6px 3px 24px !important;
  margin: 3px 4px 3px 0 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  position: relative !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  color: #fff !important;
  padding-left: 0 !important;
  font-size: 13px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff !important;
  background: none !important;
  border: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  font-size: 14px !important;
  font-weight: bold !important;
  padding: 0 4px !important;
  position: absolute !important;
  left: 4px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #f8d7da !important;
  background: none !important;
}

/* Search field inside multiple */
.select2-container--default .select2-search--inline .select2-search__field {
  font-size: 14px !important;
  margin-top: 4px !important;
  height: 26px !important;
}

/* Dropdown */
.select2-dropdown {
  border: 1px solid #dee2e6 !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  margin-top: 2px !important;
  overflow: hidden !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #dee2e6 !important;
  border-radius: 4px !important;
  padding: 6px 10px !important;
  font-size: 14px !important;
  outline: none !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.15rem rgba(13, 115, 119, 0.15) !important;
}

.select2-container--default .select2-results__option {
  padding: 8px 12px !important;
  font-size: 14px !important;
  transition: background-color 0.15s ease;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--gradient-primary) !important;
  color: #fff !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #e9ecef !important;
  color: #212529 !important;
}

/* ===== End Select2 Custom Design ===== */


/* =============================================
   REDESIGNED HEADER — Floating Glass Style
   ============================================= */

/* --- Header Container: Transparent by default --- */
.header.header-redesigned {
  --header-height: 80px;
  background: transparent !important;
  background-color: transparent !important;
  border-bottom: none;
  padding: 0;
  box-shadow: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 997;
}

/* On scroll: solid white */
.scrolled .header.header-redesigned {
  --header-height: 66px;
  background: #fff !important;
  background-color: #fff !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

/* --- Logo --- */
.header.header-redesigned .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  background: none;
  border: none;
  border-radius: 0;
  height: auto;
  padding: 0;
}

.header.header-redesigned .logo img {
  height: 46px;
  width: auto;
  max-height: 46px;
  transition: all 0.4s ease;
  filter: brightness(0) invert(1);
}

.scrolled .header.header-redesigned .logo img {
  height: 38px;
  max-height: 38px;
  filter: none;
}

.header.header-redesigned .logo-tagline {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
  line-height: 1.3;
  max-width: 180px;
  transition: all 0.4s ease;
}

.scrolled .header.header-redesigned .logo-tagline {
  color: var(--primary-color);
}

.header.header-redesigned .logo:hover .logo-tagline {
  opacity: 1;
}

/* --- Desktop Navigation --- */
@media (min-width: 1200px) {
  .header.header-redesigned .navmenu {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    height: auto;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
  }

  .scrolled .header.header-redesigned .navmenu {
    background: none;
    backdrop-filter: none;
    border: none;
  }

  .header.header-redesigned .navmenu:hover {
    border-color: transparent;
    box-shadow: none;
  }

  .scrolled .header.header-redesigned .navmenu:hover {
    border-color: transparent;
    box-shadow: none;
  }

  .header.header-redesigned .navmenu ul {
    gap: 2px;
  }

  .header.header-redesigned .navmenu > ul > li > a {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.25s ease;
    position: relative;
    letter-spacing: 0.2px;
  }

  .scrolled .header.header-redesigned .navmenu > ul > li > a {
    color: #333;
  }

  .header.header-redesigned .navmenu > ul > li > a:hover,
  .header.header-redesigned .navmenu > ul > li.active > a {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }

  .scrolled .header.header-redesigned .navmenu > ul > li > a:hover,
  .scrolled .header.header-redesigned .navmenu > ul > li.active > a {
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.06);
  }

  /* Dropdown styling */
  .header.header-redesigned .navmenu .dropdown ul {
    margin-top: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255,255,255,0.05) inset;
    padding: 8px;
    min-width: 230px;
    animation: headerDropFade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .header.header-redesigned .navmenu .dropdown ul a {
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
  }

  .header.header-redesigned .navmenu .dropdown ul a:hover {
    background: rgba(var(--primary-color-rgb), 0.07);
    color: var(--primary-color);
    transform: translateX(4px);
  }
}

@keyframes headerDropFade {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Right Action Buttons --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 40px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-header-login::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.btn-header-login:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-header-login:hover::before {
  opacity: 1;
}

.btn-header-login i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-header-login:hover i {
  transform: scale(1.1);
}

/* Scrolled state */
.scrolled .btn-header-login {
  color: var(--primary-color);
  background: transparent;
  backdrop-filter: none;
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

.scrolled .btn-header-login:hover {
  color: #fff;
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.3);
}

.btn-get-involved {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 40px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-accent);
  border: none;
  border-radius: 999px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(var(--accent-color-rgb), 0.35);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-get-involved::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 55%);
  border-radius: inherit;
  pointer-events: none;
}

.btn-get-involved::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  pointer-events: none;
}

.btn-get-involved:hover::after {
  width: 300px;
  height: 300px;
}

.btn-get-involved:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(var(--accent-color-rgb), 0.5);
}

.btn-get-involved i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-get-involved:hover i {
  transform: scale(1.2);
}

/* --- Profile Avatar (logged-in) --- */
.header-actions .head-profile {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 0;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scrolled .header-actions .head-profile {
  border-color: rgba(var(--primary-color-rgb), 0.25);
  color: var(--primary-color);
  background: rgba(var(--primary-color-rgb), 0.06);
}

.header-actions .head-profile:hover {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.scrolled .header-actions .head-profile:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

.header-actions .head-profile img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

.header-actions .navmenu.prodrop {
  padding: 0;
  height: auto;
  background: none;
  border: none;
  border-radius: 0;
}

.header-actions .navmenu.prodrop .dropdown-toggle::after {
  content: none;
}

.header-actions .navmenu.prodrop ul.dropdown-menu {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  padding: 8px;
  min-width: 190px;
  animation: headerDropFade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  left: unset;
  right: 0;
}

.header-actions .navmenu.prodrop .dropdown-item {
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all 0.2s ease;
}

.header-actions .navmenu.prodrop .dropdown-item:hover {
  background: rgba(var(--primary-color-rgb), 0.07);
  color: var(--primary-color);
  transform: translateX(4px);
}

/* --- Responsive: Tablet --- */
@media (max-width: 1199px) {
  .header.header-redesigned {
    --header-height: 66px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .header.header-redesigned .logo img {
    height: 38px;
    max-height: 38px;
  }

  .header-actions .login-register-btns {
    display: none;
  }

  .header-actions .btn-get-involved {
    padding: 8px 18px;
    font-size: 13px;
  }

  .header.header-redesigned .navmenu {
    background: none;
    border: none;
    border-radius: 0;
    height: auto;
    padding: 0;
  }

  /* Mobile nav toggle white on transparent header */
  .header.header-redesigned .mobile-nav-toggle {
    color: #fff;
  }

  .scrolled .header.header-redesigned .mobile-nav-toggle {
    color: var(--nav-color);
  }
}

/* --- Responsive: Mobile Small --- */
@media (max-width: 575px) {
  .header.header-redesigned {
    --header-height: 60px;
  }

  .header.header-redesigned .logo img {
    height: 32px;
    max-height: 32px;
  }

  .header-actions .btn-get-involved span {
    display: none;
  }

  .header-actions .btn-get-involved {
    padding: 9px 14px;
    min-width: 0;
  }
}

/* =============================================
   NON-HOME PAGES: Header Always Visible (Solid)
   On pages without .home-page body class,
   force the header to look like its scrolled state.
   ============================================= */
body:not(.home-page) .header.header-redesigned {
  --header-height: 66px;
  background: #fff !important;
  background-color: #fff !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body:not(.home-page) .header.header-redesigned .logo img {
  height: 38px;
  max-height: 38px;
  filter: none;
}

body:not(.home-page) .header.header-redesigned .logo-tagline {
  color: var(--primary-color);
}

@media (min-width: 1200px) {
  body:not(.home-page) .header.header-redesigned .navmenu > ul > li > a {
    color: #333;
  }

  body:not(.home-page) .header.header-redesigned .navmenu > ul > li > a:hover,
  body:not(.home-page) .header.header-redesigned .navmenu > ul > li.active > a {
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.06);
  }
}

body:not(.home-page) .btn-header-login {
  color: var(--primary-color);
  background: transparent;
  backdrop-filter: none;
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

body:not(.home-page) .btn-header-login:hover {
  color: #fff;
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.3);
}

body:not(.home-page) .header-actions .head-profile {
  border-color: rgba(var(--primary-color-rgb), 0.25);
  color: var(--primary-color);
  background: rgba(var(--primary-color-rgb), 0.06);
}

body:not(.home-page) .header-actions .head-profile:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

@media (max-width: 1199px) {
  body:not(.home-page) .header.header-redesigned .mobile-nav-toggle {
    color: var(--nav-color);
  }
}

/* ===== End Redesigned Header ===== */


.slider_title {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 27px;
}

/* navbar design */
@media screen and (min-width: 768px) {
  .home-carsousel-item {
    height: 780px;
  }
}
/* end navbar design */


/* 1) Overlay that covers the whole viewport */
#loaderOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(218, 218, 218, 0.8);
  display: none;
  /* hidden by default */
  align-items: center;
  /* center the spinner */
  justify-content: center;
  z-index: 9999;
  /* on top of everything */
  cursor: default;
  /* override pointer cursor */
}

/* 2) The spinner itself */
.spinner {
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top-color: #0d7377;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* 3) Spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.dt-length .dt-container select.dt-input {
  margin-right: 8px;
}

.dt-length .dt-container label {
  text-transform: capitalize;
}

/* Circle style for side buttons */
.circle-btn {
  background: #f1f1f1;
  color: #333;
}

.circle-btn:hover {
  background: #e4e4e4;
}

.nav-active{
  background: var(--gradient-primary);
  color: #ffffff;
}

@media screen and (max-width: 768px) {

  
  .home-carsousel-item .form-control{
    height: 31px;
    font-size: 13px;
  }

  .home-carsousel-item .slider_title{
    font-size: 23px;
    margin-bottom: 6px;
  }

  .message-btn{
    height: 31px;
  }

  .message-btn button{
      bottom: 94% !important;
      right: -37% !important;
      font-size: 12px;
      padding: 4px;
  }
  
  .header{
    background-color: #ffffff;
  }

  .login-register-btns {
    display: none;
  }

  .p-m-0 {
    padding: 0 !important;
  }

  section{
    padding-top: 25px;
  }

  /* Footer base */
  .mobile-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    border-top: 1px solid #dedede99;
    height: 47px;
  }

  /* Common footer button styles */
  .footer-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
    font-size: 13px;
  }

  /* Home Button Special Styling */
  .home-wrapper {
    position: relative;
    top: -20px;
    /* Lifted */
    background: #ffffff;
    padding: 6px;
    border-radius: 50px 50px 0 0;
    border-top: 1px solid #e8e8e8;
  }

  .home-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
  }

  section {
    padding-bottom: 20px;
  }

  .home-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, #142e68, #63b3ed);
    z-index: -1;
    animation: rotateGradient 5s linear infinite;
    transform-origin: center;
  }

  @keyframes rotateGradient {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  /* Optional: Focus styles */
  .footer-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(100, 100, 255, 0.2);
  }

  /* Dropdown menu position */
  .mobile-footer .dropdown-menu {
    min-width: 10rem;
    transform: translateX(-12%) !important;
    bottom: 47px !important;
    top: auto !important;
    border-radius: 10px;
    animation: dropdownFade 0.3s ease;
  }

  /* Smooth dropdown animation */
  @keyframes dropdownFade {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-dropdown {
    animation: dropdownFade 0.3s ease;
  }


  .scroll-top {
    bottom: 75px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title {
    padding-bottom: 24px;
  }

  .designed-radio .radio-tab {
    padding: 5px 15px;
    font-size: 13px;
  }

  .signup-form .col-md-3,
  .signup-form .col-md-6,
  .signup-form .col-md-12 {
    padding: 0px;
  }

  .slider-section{
    padding-top: 60px;
  }

  .md-t-5{
    margin-top: 5rem;
  }

  .page-title .heading{
    padding: 50px 0px 30px 0px;
    border: unset;
  }

  .page-title nav ol{
    padding: 0px;
    font-size: 13px;
  }

  .specaltxt{
    padding: 4px 8px;
    font-size: 20px;
  }
  
  h4{
    font-size: 18px;
  }

  .about .content .read-more{
      font-size: 13px;
      padding: 7px 12px;
  }
  .about .icon-box h3{
    font-size: 21px;
    margin: 0px;
  }

  .page-title .heading h1{
    font-size: 30px;
  }

  .page-title nav{
    padding: 6px 0px;
  }

  .contact .php-email-form{
    padding: 20px;
  }

 
}

/* ===================================================================
   UGPF UI REDESIGN — Global Utilities & New Section Styles
   =================================================================== */

/* --- Utility: Hover lift cards --- */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* --- Utility: Gradient overlay for images --- */
.gradient-overlay {
  position: relative;
  overflow: hidden;
}
.gradient-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}
.gradient-overlay > * {
  position: relative;
  z-index: 2;
}

/* --- Utility: Section alternate bg --- */
.section-light {
  background-color: var(--light-bg) !important;
}
.section-dark {
  background-color: var(--dark-bg) !important;
  color: #ffffff !important;
}
.section-dark h2, .section-dark h3, .section-dark h4, .section-dark p {
  color: #ffffff;
}

/* --- Accent button --- */
.btn-accent {
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--heading-font);
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
  color: #fff;
}

/* --- Outline button --- */
.btn-outline-light-custom {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--heading-font);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.btn-outline-light-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}
.btn-outline-light-custom:hover {
  background: #ffffff;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  backdrop-filter: none;
}

/* --- Section heading redesign --- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .section-label {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(var(--primary-color-rgb), 0.08);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--heading-font);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}
.section-header p {
  font-size: 17px;
  color: #6c757d;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-dark .section-header .section-label {
  background: rgba(255,255,255,0.15);
  color: var(--accent-color);
}
.section-dark .section-header h2 {
  color: #ffffff;
}
.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* --- Decorative divider --- */
.section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ===== HERO SECTION REDESIGN ===== */
.ugpf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.ugpf-hero .hero-bg-video,
.ugpf-hero .hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ugpf-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.10) 40%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(0, 0, 0, 0.50) 100%
  );
  z-index: 1;
}
.ugpf-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 850px;
}
.ugpf-hero .hero-content .hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.ugpf-hero .hero-content h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.ugpf-hero .hero-content h1 span {
  color: var(--accent-color);
}
.ugpf-hero .hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.ugpf-hero .hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.ugpf-hero .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s infinite;
}
.ugpf-hero .scroll-indicator i {
  color: rgba(255,255,255,0.6);
  font-size: 28px;
}
@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
  .ugpf-hero .hero-content h1 {
    font-size: 32px;
  }
  .ugpf-hero .hero-content p {
    font-size: 16px;
  }
  .ugpf-hero .hero-content .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
}

/* ===== OBJECTIVES SECTION ===== */
.objective-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}
.objective-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.objective-card:hover img {
  transform: scale(1.1);
}
.objective-card .objective-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  transition: background 0.3s ease;
}
.objective-card:hover .objective-overlay {
  background: linear-gradient(to top, rgba(var(--primary-color-rgb),0.9) 0%, rgba(var(--primary-color-rgb),0.4) 60%, rgba(0,0,0,0) 100%);
}
.objective-card .objective-overlay .obj-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.objective-card:hover .objective-overlay .obj-icon {
  transform: scale(1.1);
}
.objective-card .objective-overlay .obj-icon i {
  color: #fff;
  font-size: 22px;
}
.objective-card .objective-overlay h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.objective-card .objective-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  margin: 8px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== IMPACT STATS SECTION ===== */
.impact-stats {
  position: relative;
  padding: 100px 0;
  background: var(--dark-bg);
  background-image: url('../img/sample/impact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.impact-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.impact-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(var(--accent-color-rgb), 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(var(--primary-color-rgb), 0.15) 0%, transparent 60%);
  z-index: 1;
}
.impact-stats > .container {
  position: relative;
  z-index: 2;
}
.impact-stats .stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 30px 20px;
}
.impact-stats .stat-item .stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.impact-stats .stat-item:hover .stat-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}
.impact-stats .stat-item .stat-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}
.impact-stats .stat-item:hover .stat-icon i {
  color: #fff;
}
.impact-stats .stat-item .stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--heading-font);
  line-height: 1;
  margin-bottom: 8px;
}
.impact-stats .stat-item .stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== ABOUT/VISION SECTION REDESIGN ===== */
.about-vision-section {
  position: relative;
  overflow: hidden;
}
.about-vision-section .about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-vision-section .about-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.5s ease;
}
.about-vision-section .about-image-wrapper:hover img {
  transform: scale(1.03);
}
.about-vision-section .about-image-wrapper .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 15px rgba(var(--accent-color-rgb), 0.2);
}
.about-vision-section .about-image-wrapper .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 20px rgba(var(--accent-color-rgb), 0.3);
}
.about-vision-section .about-image-wrapper .play-btn i {
  color: #fff;
  font-size: 24px;
  margin-left: 4px;
}
.about-vision-section .about-image-wrapper .decorative-shape {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--gradient-accent);
  border-radius: 20px;
  z-index: -1;
}

/* ===== SERVICES CARDS REDESIGN ===== */
.service-card-new {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 35px rgba(0,0,0,0.08);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
}
.service-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(var(--primary-color-rgb),0.18);
  border-color: rgba(var(--primary-color-rgb),0.1);
}
.service-card-new .service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-new .service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.service-card-new:hover .service-card-img::after {
  opacity: 1;
}
.service-card-new .service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card-new:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-new .service-card-body {
  padding: 22px 24px 24px;
  position: relative;
}
.service-card-new .service-card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: var(--gradient-primary);
  transition: width 0.4s ease;
}
.service-card-new:hover .service-card-body::before {
  width: 60px;
}
.service-card-new .service-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 8px;
  font-family: var(--heading-font);
  color: var(--secondary-color);
  transition: color 0.3s ease;
}
.service-card-new:hover .service-card-body h3 {
  color: var(--primary-color);
}
.service-card-new .service-card-body h3 a {
  color: inherit;
  transition: color 0.3s ease;
}
.service-card-new .service-card-body h3 a:hover {
  color: var(--primary-color);
}
.service-card-new .service-card-body .service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}
.service-card-new:hover .service-card-body .service-arrow {
  gap: 12px;
  color: var(--accent-color);
}

/* ===== LEADERSHIP TEAM SECTION ===== */
.team-card {
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
}
.team-card .team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid transparent;
  background: var(--gradient-accent);
  padding: 3px;
  transition: all 0.3s ease;
}
.team-card:hover .team-photo {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(var(--accent-color-rgb), 0.3);
}
.team-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}
.team-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--heading-font);
}
.team-card .team-role {
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TESTIMONIALS / VIDEO SECTION ===== */
.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.video-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover img {
  transform: scale(1.05);
}
.video-card .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.video-card:hover .video-play-icon {
  background: var(--accent-color);
}
.video-card .video-play-icon i {
  color: var(--primary-color);
  font-size: 22px;
  margin-left: 3px;
  transition: color 0.3s ease;
}
.video-card:hover .video-play-icon i {
  color: #fff;
}

/* ===== VIDEO FEATURED CARD ===== */
.video-card-featured {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.video-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.video-card-featured img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card-featured:hover img {
  transform: scale(1.03);
}
.video-card-featured .video-play-icon {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.video-card-featured:hover .video-play-icon {
  background: var(--accent-color);
}
.video-card-featured .video-play-icon i {
  color: var(--primary-color);
  font-size: 28px;
  margin-left: 3px;
  transition: color 0.3s ease;
}
.video-card-featured:hover .video-play-icon i {
  color: #fff;
}
.video-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  z-index: 2;
}
.video-card-caption h4,
.video-card-caption h5 {
  color: #fff;
  margin-bottom: 4px;
  font-weight: 600;
}
.video-card-caption h4 { font-size: 18px; }
.video-card-caption h5 { font-size: 14px; }
.video-card-caption p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-bottom: 0;
}
.video-tag {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===== PHOTO GALLERY ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.gallery-filter-btn {
  padding: 8px 22px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--heading-font);
}
.gallery-filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.gallery-filter-btn.active {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  color: #fff;
}
.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}
.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}
.gallery-overlay h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.gallery-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-bottom: 6px;
}
.gallery-tag {
  display: inline-block;
  background: rgba(243,156,18,0.9);
  color: #fff;
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .gallery-card img { height: 200px; }
  .video-card-featured img { min-height: 250px; }
  .gallery-filter-btn { padding: 6px 16px; font-size: 13px; }
}

/* ===== PARTNERS SECTION REDESIGN ===== */
.partners-section-new {
  position: relative;
  padding: 90px 0 80px;
  background: url('../img/sample/partners-bg.jpg') center/cover no-repeat fixed;
  overflow: hidden;
}
.partners-section-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.partners-section-new .section-header h2,
.partners-section-new .section-header p {
  color: #fff;
}
.partners-section-new .section-header p {
  opacity: 0.7;
}
.partners-section-new .section-label {
  background: rgba(var(--accent-color-rgb), 0.15);
  color: var(--accent-color);
}
.partners-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    radial-gradient(circle at 20% 30%, rgba(var(--primary-color-rgb), 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(var(--accent-color-rgb), 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.partners-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.partners-bg-pattern::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

/* Partners Grid */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.partner-card {
  position: relative;
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  border-radius: 16px;
  overflow: hidden;
  animation: partnerFadeIn 0.6s ease both;
}
@keyframes partnerFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.partner-card a {
  display: block;
  text-decoration: none;
  position: relative;
}
.partner-card-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 20px 18px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.partner-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.partner-card:hover .partner-card-inner::before {
  transform: scaleX(1);
}
.partner-card:hover .partner-card-inner {
  background: rgba(255,255,255,0.08);
  border-color: rgba(var(--accent-color-rgb), 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(var(--accent-color-rgb), 0.1);
}

/* Partner Image */
.partner-img-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease;
}
.partner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(1.1);
  transition: all 0.4s ease;
}
.partner-card:hover .partner-img-wrap {
  border-color: rgba(var(--accent-color-rgb), 0.5);
  box-shadow: 0 0 20px rgba(var(--accent-color-rgb), 0.15);
  transform: scale(1.05);
}
.partner-card:hover .partner-img-wrap img {
  filter: grayscale(0%) brightness(1);
}

/* Partner Name */
.partner-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.partner-card:hover .partner-name {
  color: #fff;
}

/* Shine Effect */
.partner-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
  border-radius: 16px;
}
.partner-card:hover .partner-shine {
  left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .partner-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
  .partners-section-new { padding: 60px 0 50px; }
  .partners-grid { gap: 16px; }
  .partner-card-inner { padding: 22px 16px 14px; }
  .partner-img-wrap { width: 72px; height: 72px; }
  .partner-name { font-size: 12px; }
}
@media (max-width: 480px) {
  .partner-card {
    flex: 0 0 100%;
    max-width: 260px;
  }
}

/* ===== REDESIGNED FOOTER ===== */
.footer-redesign {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.8);
  padding-top: 0;
}
.footer-redesign .footer-top-bar {
  background: var(--gradient-accent);
  padding: 20px;
  border-radius: 16px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  text-align: center;
}
.footer-redesign .footer-top-bar h4 {
  color: #fff;
  font-weight: 700;
  margin: 0;
  font-size: 18px;
}
.footer-redesign .footer-top-bar p {
  color: rgba(255,255,255,0.9);
  margin: 5px 0 0;
  font-size: 14px;
}
.footer-redesign .footer-main {
  padding-top: 70px;
  padding-bottom: 40px;
}
.footer-redesign .footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
}
.footer-redesign .footer-brand .social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-redesign .footer-brand .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  font-size: 16px;
}
.footer-redesign .footer-brand .social-links a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(var(--accent-color-rgb), 0.1);
}
.footer-redesign h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.footer-redesign h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}
.footer-redesign .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-redesign .footer-links ul li {
  margin-bottom: 12px;
}
.footer-redesign .footer-links ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-redesign .footer-links ul li a::before {
  content: "›";
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}
.footer-redesign .footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}
.footer-redesign .footer-contact-info p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-redesign .footer-contact-info p i {
  color: var(--accent-color);
  font-size: 16px;
  margin-top: 3px;
}
.footer-redesign .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-redesign .footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin: 0;
}

/* ===== PAGE BANNER REDESIGN ===== */
.page-banner {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #112240 40%, #1a2a4a 100%);
  padding: 140px 0 80px;
  overflow: hidden;
  text-align: center;
}
/* Animated floating orbs */
.page-banner .pb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: pbOrbFloat 8s ease-in-out infinite;
}
.page-banner .pb-orb-1 {
  width: 400px; height: 400px;
  background: rgba(var(--primary-color-rgb), 0.15);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.page-banner .pb-orb-2 {
  width: 300px; height: 300px;
  background: rgba(var(--accent-color-rgb), 0.12);
  bottom: -80px; right: -60px;
  animation-delay: -4s;
}
.page-banner .pb-orb-3 {
  width: 200px; height: 200px;
  background: rgba(var(--primary-color-rgb), 0.08);
  top: 50%; left: 60%;
  animation-delay: -2s;
}
@keyframes pbOrbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
/* Grid pattern */
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}
/* Wave bottom */
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' d='M0,60 C360,100 1080,0 1440,60 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
  z-index: 2;
}
.page-banner .container {
  position: relative;
  z-index: 3;
}
/* Accent line */
.page-banner .pb-line {
  display: inline-block;
  width: 50px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 4px;
  margin-bottom: 20px;
}
.page-banner h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
  font-family: var(--heading-font);
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1.15;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.page-banner .pb-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.page-banner .breadcrumb-nav {
  display: inline-flex;
}
.page-banner .breadcrumb-nav ol {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 10px 24px;
  margin: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}
.page-banner .breadcrumb-nav ol li {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 500;
}
.page-banner .breadcrumb-nav ol li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.page-banner .breadcrumb-nav ol li a:hover {
  color: var(--accent-color);
}
.page-banner .breadcrumb-nav ol li:last-child {
  color: #fff;
  font-weight: 600;
}
.page-banner .breadcrumb-nav ol li + li::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 9px;
  margin-right: 4px;
  color: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .page-banner { padding: 110px 0 60px; }
  .page-banner h1 { font-size: 30px; letter-spacing: -0.5px; }
  .page-banner .pb-subtitle { font-size: 14px; }
  .page-banner .pb-orb-1 { width: 200px; height: 200px; }
  .page-banner .pb-orb-2 { width: 150px; height: 150px; }
  .page-banner .pb-orb-3 { display: none; }
}

/* ===== AUTH PAGES REDESIGN ===== */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
}
.auth-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
}
.auth-card .auth-side-panel {
  background: var(--gradient-primary);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.auth-card .auth-side-panel h3 {
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
}
.auth-card .auth-side-panel p {
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-size: 15px;
}
.auth-card .auth-form-panel {
  padding: 50px 40px;
}
.auth-card .auth-form-panel h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 8px;
}
.auth-card .auth-form-panel p.auth-subtitle {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 30px;
}

/* ===== MODERN FORM INPUTS ===== */
.form-modern .form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fafbfc;
}
.form-modern .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(var(--primary-color-rgb), 0.1);
  background: #ffffff;
}
.form-modern .form-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary-color);
  margin-bottom: 6px;
}
.form-modern .btn-theme {
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

/* ============================================================
   DASHBOARD DESIGN SYSTEM — Sidebar, Cards, Tables, Forms
   ============================================================ */

/* ----- Dashboard Layout ----- */
.dash-layout {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8edf5 50%, #f5f0ff 100%);
  min-height: 100vh;
  padding: 100px 0 60px;
}
.dash-layout .container-fluid {
  max-width: 1400px;
}

/* ----- Sidebar ----- */
.sidebar-modern {
  position: sticky;
  top: 100px;
}
.sidebar-modern .list-group {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.sidebar-modern .list-group-item {
  border: none;
  border-left: 3px solid transparent;
  padding: 14px 20px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  font-size: 14px;
  background: transparent;
  position: relative;
}
.sidebar-modern .list-group-item::after {
  content: '';
  position: absolute;
  inset: 4px 8px 4px auto;
  width: 3px;
  border-radius: 3px;
  background: transparent;
  transition: background 0.3s ease;
}
.sidebar-modern .list-group-item:hover {
  background: rgba(var(--primary-color-rgb), 0.06);
  border-left-color: rgba(var(--primary-color-rgb), 0.4);
  transform: translateX(4px);
}
.sidebar-modern .list-group-item.li-active {
  border-left-color: var(--primary-color);
  background: linear-gradient(90deg, rgba(var(--primary-color-rgb),0.1) 0%, rgba(var(--primary-color-rgb),0.03) 100%);
}
.sidebar-modern .list-group-item.li-active::after {
  background: var(--accent-color);
}
.sidebar-modern .list-group-item a {
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.sidebar-modern .list-group-item a i {
  width: 20px;
  text-align: center;
  font-size: 15px;
  color: #94a3b8;
  transition: color 0.3s ease;
}
.sidebar-modern .list-group-item:hover a i {
  color: var(--primary-color);
}
.sidebar-modern .list-group-item.li-active a {
  color: var(--primary-color);
  font-weight: 600;
}
.sidebar-modern .list-group-item.li-active a i {
  color: var(--primary-color);
}

/* ----- Dashboard Cards ----- */
.dash-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.dash-card:hover {
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}
.dash-card .card-header {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb),0.08) 0%, rgba(var(--accent-color-rgb,59,130,246),0.05) 100%);
  border-bottom: 1px solid rgba(var(--primary-color-rgb),0.1);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dash-card .card-header::before {
  content: '';
  width: 4px;
  height: 24px;
  border-radius: 4px;
  background: var(--gradient-primary, linear-gradient(135deg, var(--primary-color), var(--accent-color)));
  flex-shrink: 0;
}
.dash-card .card-header .card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  font-family: var(--heading-font);
  letter-spacing: -0.3px;
}
.dash-card .card-body {
  padding: 28px;
}

/* ----- Dashboard Tables ----- */
.dash-card .table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-top: 16px;
}
.dash-card .table thead th {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: none;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #64748b;
  white-space: nowrap;
}
.dash-card .table thead th:first-child {
  border-radius: 12px 0 0 12px;
}
.dash-card .table thead th:last-child {
  border-radius: 0 12px 12px 0;
}
.dash-card .table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  color: #475569;
  vertical-align: middle;
}
.dash-card .table tbody tr {
  transition: background 0.2s ease;
}
.dash-card .table tbody tr:hover {
  background: rgba(var(--primary-color-rgb), 0.03);
}
.dash-card .table tbody tr:last-child td {
  border-bottom: none;
}

/* ----- Dashboard Forms ----- */
.dash-card .form-control,
.dash-card .form-select {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 14px;
  color: #334155;
  background: #f8fafc;
  transition: all 0.3s ease;
}
.dash-card .form-control:focus,
.dash-card .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(var(--primary-color-rgb), 0.1);
  background: #fff;
  outline: none;
}
.dash-card label,
.dash-card .form-label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.dash-card .input-group-text {
  border: 2px solid #e2e8f0;
  border-left: none;
  border-radius: 0 12px 12px 0;
  background: #f8fafc;
}
.dash-card .input-group .form-control {
  border-radius: 12px 0 0 12px;
}

/* ----- Dashboard Buttons ----- */
.dash-btn {
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.dash-btn-primary {
  background: var(--gradient-primary, linear-gradient(135deg, var(--primary-color), var(--accent-color)));
  color: #fff;
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}
.dash-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.4);
  color: #fff;
}
.dash-btn-sm {
  padding: 7px 16px;
  font-size: 13px;
  border-radius: 10px;
}
.dash-btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid rgba(var(--primary-color-rgb), 0.3);
}
.dash-btn-outline:hover {
  background: rgba(var(--primary-color-rgb), 0.08);
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.dash-btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 4px 15px rgba(16,185,129,0.3);
}
.dash-btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16,185,129,0.4);
  color: #fff;
}

/* ----- Profile Card ----- */
.dash-profile-hero {
  background: var(--gradient-primary, linear-gradient(135deg, var(--primary-color), var(--accent-color)));
  padding: 40px 30px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dash-profile-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.dash-profile-hero .profile-img-container {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto;
  border: 4px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.dash-profile-hero .profile-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dash-profile-hero .profile-text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50%;
}
.dash-profile-body {
  padding: 30px;
  text-align: center;
  margin-top: -30px;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  border-radius: 20px 20px 0 0;
  margin-left: 20px;
  margin-right: 20px;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.05);
}
.dash-profile-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
  font-family: var(--heading-font);
}
.dash-profile-body .text-muted {
  font-size: 14px;
  color: #64748b !important;
}
.dash-profile-body .location-text {
  font-size: 14px;
  color: #64748b;
  margin-top: 4px;
}
.dash-profile-body .location-text i {
  color: var(--primary-color);
  margin-right: 4px;
}
.dash-profile-details {
  padding: 20px 30px 30px;
}
.dash-profile-details h5 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(var(--primary-color-rgb),0.1);
}
.dash-profile-details p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
}
.dash-profile-details p b {
  color: #334155;
}
.dash-profile-details a {
  color: var(--primary-color);
  word-break: break-all;
}

/* ----- Status Badges ----- */
.dash-badge {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dash-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dash-badge-warning {
  background: #fefce8;
  color: #a16207;
}
.dash-badge-warning::before { background: #f59e0b; }
.dash-badge-info {
  background: #eff6ff;
  color: #1d4ed8;
}
.dash-badge-info::before { background: #3b82f6; }
.dash-badge-success {
  background: #f0fdf4;
  color: #15803d;
}
.dash-badge-success::before { background: #22c55e; }
.dash-badge-danger {
  background: #fef2f2;
  color: #b91c1c;
}
.dash-badge-danger::before { background: #ef4444; }
.dash-badge-dark {
  background: #f1f5f9;
  color: #334155;
}
.dash-badge-dark::before { background: #64748b; }

/* ----- Payment Success Page ----- */
.dash-success-card {
  max-width: 560px;
  margin: 80px auto;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.dash-success-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: dash-pulse 2s infinite;
}
.dash-success-icon i {
  font-size: 36px;
  color: #059669;
}
@keyframes dash-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.3); }
  50% { box-shadow: 0 0 0 15px rgba(16,185,129,0); }
}
.dash-success-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}
.dash-success-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

/* ----- Payment Page ----- */
.dash-payment-card {
  max-width: 700px;
  margin: 0 auto;
}
.dash-payment-card .pack-hero {
  background: var(--gradient-primary, linear-gradient(135deg, var(--primary-color), var(--accent-color)));
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dash-payment-card .pack-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M0 20L20 0h20v20L20 40H0V20z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.dash-payment-card .pack-hero h5 {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.dash-payment-card .pack-hero h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  font-family: var(--heading-font);
}
.dash-payment-card .pack-hero .pack-price {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.dash-payment-card .pack-body {
  padding: 30px;
  text-align: center;
}
.dash-payment-card .pack-feature {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 15px;
}
.dash-payment-card .pack-feature:last-child {
  border-bottom: none;
}

/* ----- Suggestion Section ----- */
.dash-card .suggestion-parent-div {
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.3s ease;
}
.dash-card .suggestion-parent-div:hover {
  border-color: rgba(var(--primary-color-rgb),0.3);
}
.dash-card .contentdata {
  color: #334155;
  font-size: 14px;
  line-height: 1.7;
}
.dash-card .suggestion-parent-div .reply-section {
  background: rgba(var(--primary-color-rgb),0.04);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 8px;
}

/* ----- Empty State ----- */
.dash-empty {
  text-align: center;
  padding: 60px 20px;
}
.dash-empty i {
  font-size: 48px;
  color: #cbd5e1;
  margin-bottom: 16px;
}
.dash-empty p {
  color: #94a3b8;
  font-size: 15px;
}

/* ----- Responsive Dashboard ----- */
@media (max-width: 768px) {
  .dash-layout {
    padding: 15px 0 30px;
  }
  .dash-card .card-body {
    padding: 16px;
  }
  .dash-card .card-header {
    padding: 16px 20px;
  }
  .dash-card .table {
    font-size: 13px;
  }
  .dash-card .table thead th,
  .dash-card .table tbody td {
    padding: 10px 12px;
  }
  .dash-profile-hero {
    padding: 30px 20px 50px;
  }
  .dash-profile-body {
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px 16px;
  }
  .dash-profile-details {
    padding: 16px;
  }
  .dash-success-card {
    margin: 40px 16px;
    padding: 36px 24px;
  }
  .sidebar-modern {
    position: static;
    margin-bottom: 20px;
  }
}

/* ===== REDESIGNED HEADER ===== */
.header-redesigned {
  transition: all 0.4s ease;
}
.header-redesigned .logo img {
  max-height: 45px;
  transition: max-height 0.3s ease;
}
.header-redesigned .logo-tagline {
  font-size: 10px;
  color: rgba(var(--default-color-rgb), 0.6);
  display: block;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.header-redesigned .navmenu a {
  font-weight: 500;
  position: relative;
}
@media (min-width: 1200px) {
  .header-redesigned .navmenu > ul > li > a::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .header-redesigned .navmenu > ul > li:hover > a::after,
  .header-redesigned .navmenu > ul > li.active > a::after {
    transform: scaleX(1);
  }
}
.header-redesigned .login-register-btns a:first-child {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 50px;
  height: 42px;
  padding: 0 24px;
  font-size: 14px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.header-redesigned .login-register-btns a:last-child {
  background: var(--gradient-primary);
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  height: 42px;
  padding: 0 24px;
  font-size: 14px;
  border: 2px solid var(--primary-color);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.header-redesigned .login-register-btns a:first-child:hover {
  background: rgba(var(--primary-color-rgb), 0.05);
}
.header-redesigned .login-register-btns a:last-child:hover {
  background: rgba(var(--primary-color-rgb), 0.85);
}
.header-redesigned .btn-get-involved {
  background: var(--gradient-accent);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-left: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header-redesigned .btn-get-involved:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(var(--accent-color-rgb), 0.4);
  color: #ffffff;
}

/* ===== MOBILE BOTTOM NAV REDESIGN ===== */
@media screen and (max-width: 768px) {
  .mobile-footer-redesign {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.08);
    z-index: 1030;
    border-top: 1px solid rgba(0,0,0,0.05);
    height: 62px;
    padding: 0 10px;
  }
  .mobile-footer-redesign .footer-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 14px;
    background: transparent;
    color: #666;
    position: relative;
  }
  .mobile-footer-redesign .footer-btn.nav-active {
    color: var(--primary-color);
  }
  .mobile-footer-redesign .footer-btn.nav-active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-color);
  }
  .mobile-footer-redesign .home-wrapper {
    position: relative;
    top: -18px;
    background: transparent;
    border: none;
  }
  .mobile-footer-redesign .home-btn {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    color: #ffffff;
    border: 3px solid #fff;
    box-shadow: 0 5px 20px rgba(var(--primary-color-rgb), 0.4);
  }
  .mobile-footer-redesign .home-btn::before {
    display: none;
  }
  .mobile-footer-redesign .home-btn:hover {
    transform: scale(1.05);
  }
}

/* ===== CONTACT FORM REDESIGN ===== */
.contact-redesign {
  padding: 80px 0;
}
.contact-redesign .contact-info-card {
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 40px 30px;
  color: #ffffff;
  height: 100%;
}
.contact-redesign .contact-info-card h3 {
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 25px;
}
.contact-redesign .contact-info-card .info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.contact-redesign .contact-info-card .info-item i {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.contact-redesign .contact-info-card .info-item p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.contact-redesign .contact-info-card .info-item strong {
  color: #ffffff;
  font-size: 15px;
  display: block;
  margin-bottom: 3px;
}

/* ==========================================================================
   UGPF AUTH FORMS — COMPLETE REDESIGN
   Shared by: Login, Register, Forgot Password, Reset Password
   ========================================================================== */

/* ─── Section wrapper with animated gradient ─── */
.ugpf-auth-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f0f2ff 0%, #e8eaf6 30%, #f5f7ff 60%, #edf0ff 100%);
  overflow: hidden;
}

/* ─── Floating particle background ─── */
.auth-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.auth-particles span {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(var(--primary-color-rgb), 0.06);
  border-radius: 50%;
  animation: authParticleFloat 18s infinite;
}
.auth-particles span:nth-child(1)  { left: 5%;  width: 60px; height: 60px; animation-delay: 0s;   animation-duration: 20s; }
.auth-particles span:nth-child(2)  { left: 15%; width: 25px; height: 25px; animation-delay: 2s;   animation-duration: 14s; }
.auth-particles span:nth-child(3)  { left: 30%; width: 15px; height: 15px; animation-delay: 4s;   animation-duration: 22s; }
.auth-particles span:nth-child(4)  { left: 45%; width: 40px; height: 40px; animation-delay: 0s;   animation-duration: 16s; }
.auth-particles span:nth-child(5)  { left: 55%; width: 20px; height: 20px; animation-delay: 3s;   animation-duration: 19s; }
.auth-particles span:nth-child(6)  { left: 65%; width: 50px; height: 50px; animation-delay: 6s;   animation-duration: 24s; }
.auth-particles span:nth-child(7)  { left: 75%; width: 30px; height: 30px; animation-delay: 1s;   animation-duration: 15s; }
.auth-particles span:nth-child(8)  { left: 85%; width: 18px; height: 18px; animation-delay: 5s;   animation-duration: 21s; }
.auth-particles span:nth-child(9)  { left: 10%; width: 35px; height: 35px; animation-delay: 7s;   animation-duration: 17s; }
.auth-particles span:nth-child(10) { left: 90%; width: 45px; height: 45px; animation-delay: 2s;   animation-duration: 23s; }
@keyframes authParticleFloat {
  0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-120vh) rotate(720deg); opacity: 0; }
}

/* ─── Shared card for Login / Register ─── */
.ugpf-auth-card,
.ugpf-register-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(1, 12, 128, 0.08), 0 4px 20px rgba(0,0,0,0.04);
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--primary-color-rgb), 0.06);
}
.ugpf-auth-card { display: flex; }
.ugpf-auth-card .row { width: 100%; }
.ugpf-register-card { display: flex; }

/* ─── Single-page card (forgot / reset) ─── */
.ugpf-auth-card-single {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(1, 12, 128, 0.08), 0 4px 20px rgba(0,0,0,0.04);
  overflow: hidden;
  border: 1px solid rgba(var(--primary-color-rgb), 0.06);
}

/* ─── Left branding panel (login & register) ─── */
.auth-brand-panel,
.register-brand-panel {
  background: var(--gradient-primary);
  padding: 50px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.auth-brand-panel::before,
.register-brand-panel::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -80px;
  right: -80px;
}
.auth-brand-panel::after,
.register-brand-panel::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  bottom: -60px;
  left: -60px;
}
.brand-logo {
  width: 140px;
  filter: brightness(0) invert(1);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.auth-brand-panel h3,
.register-brand-panel h3 {
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.auth-brand-panel p,
.register-brand-panel p {
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.brand-features {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.brand-feature-item {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-feature-item i {
  color: var(--accent-color);
  font-size: 16px;
}

/* ─── Side step indicator (register panel) ─── */
.side-step-indicator {
  margin-top: 35px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.side-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 30px;
}
.side-step::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 28px;
  width: 2px;
  height: calc(100% - 12px);
  background: rgba(255,255,255,0.15);
}
.side-step:last-child::before { display: none; }
.step-dot {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  position: absolute;
  left: 0;
  transition: all 0.4s ease;
}
.side-step.active { color: #ffffff; }
.side-step.active .step-dot {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 12px rgba(243, 156, 18, 0.5);
}
.side-step.completed { color: rgba(255,255,255,0.7); }
.side-step.completed .step-dot {
  background: var(--accent-secondary);
  border-color: var(--accent-secondary);
}

/* ─── Right form body ─── */
.auth-form-body,
.register-form-panel {
  padding: 45px 40px;
}
.form-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(var(--accent-color-rgb), 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.form-icon-circle-lg {
  width: 72px;
  height: 72px;
  font-size: 28px;
  margin-bottom: 25px;
}
.auth-form-body h2,
.register-form-panel .form-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 6px;
}
.auth-form-body .form-subtitle,
.register-form-panel .form-subtitle {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 28px;
}
.auth-link {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.auth-link:hover {
  color: var(--accent-color);
}

/* ─── Enhanced form inputs (override form-modern) ─── */
.ugpf-auth-section .form-modern .form-control,
.ugpf-auth-section .form-modern .form-select {
  border: 2px solid #e9ecef;
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 15px;
  background: #fafbfc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ugpf-auth-section .form-modern .form-control:focus,
.ugpf-auth-section .form-modern .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(var(--primary-color-rgb), 0.08);
  background: #fff;
}
.ugpf-auth-section .form-modern .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
}
.ugpf-auth-section .form-modern .form-label {
  font-weight: 600;
  font-size: 13px;
  color: #495057;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.toggle-pw-btn {
  border-radius: 0 14px 14px 0 !important;
  border: 2px solid #e9ecef !important;
  border-left: 0 !important;
  background: #fafbfc !important;
  cursor: pointer;
}

/* ─── Enhanced btn-accent inside auth ─── */
.ugpf-auth-section .btn-accent {
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.ugpf-auth-section .btn-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ugpf-auth-section .btn-accent:hover::before {
  opacity: 1;
}
.ugpf-auth-section .btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.35);
}

/* ==========================================================================
   MULTI-STEP WIZARD — Register Form
   ========================================================================== */
.ugpf-register-card {
  flex-direction: row;
}
.register-brand-panel {
  width: 320px;
  min-width: 320px;
  max-width: 320px;
}
.register-form-panel {
  flex: 1;
  min-width: 0;
}

/* ─── Wizard steps ─── */
.wizard-step {
  display: none;
  animation: wizardFadeIn 0.4s ease-out;
}
.wizard-step.active {
  display: block;
}
@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Step header */
.step-header {
  margin-bottom: 25px;
}
.step-badge {
  display: inline-block;
  background: rgba(var(--primary-color-rgb), 0.08);
  color: var(--primary-color);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.step-header h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 22px;
  color: var(--secondary-color);
  margin: 0;
}

/* ─── Wizard navigation ─── */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #f0f0f0;
}
.wizard-nav .btn-outline-secondary {
  border-radius: 14px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #dee2e6;
  color: #495057;
  transition: all 0.3s ease;
}
.wizard-nav .btn-outline-secondary:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}
.wizard-nav .btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ─── Role selection cards ─── */
.role-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
}
.role-card {
  background: #fafbfc;
  border: 2px solid #e9ecef;
  border-radius: 18px;
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.role-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.role-card > * { position: relative; z-index: 1; }
.role-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(var(--primary-color-rgb), 0.12);
}
.role-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(var(--primary-color-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
  transition: all 0.35s ease;
}
.role-card h5 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 4px;
  transition: color 0.35s ease;
}
.role-card p {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
  transition: color 0.35s ease;
}

/* Active role card */
input[name="usertype"]:checked + .role-card {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(var(--primary-color-rgb), 0.2);
}
input[name="usertype"]:checked + .role-card::before {
  opacity: 1;
}
input[name="usertype"]:checked + .role-card .role-icon {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}
input[name="usertype"]:checked + .role-card h5 { color: #ffffff; }
input[name="usertype"]:checked + .role-card p  { color: rgba(255,255,255,0.75); }

/* ─── Mobile step progress bar ─── */
.step-progress {
  margin-bottom: 25px;
}
.step-progress-bar {
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}
.step-progress-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-labels {
  display: flex;
  justify-content: space-between;
}
.step-labels span {
  font-size: 11px;
  font-weight: 600;
  color: #adb5bd;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.step-labels span.active { color: var(--primary-color); }
.step-labels span.completed { color: var(--accent-secondary); }

/* ==========================================================================
   RESPONSIVE — Auth forms
   ========================================================================== */
@media (max-width: 991.98px) {
  .ugpf-auth-section {
    padding: 100px 15px 40px;
  }
  .ugpf-register-card {
    flex-direction: column;
  }
  .register-brand-panel {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 30px 25px;
  }
  .auth-form-body,
  .register-form-panel {
    padding: 30px 25px;
  }
  .role-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .role-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 18px 20px;
    gap: 16px;
  }
  .role-icon {
    margin: 0;
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 20px;
  }
  .role-card h5 { font-size: 15px; }
  .role-card p  { font-size: 12px; }
}
@media (max-width: 575.98px) {
  .auth-form-body,
  .register-form-panel {
    padding: 25px 18px;
  }
  .auth-form-body h2,
  .register-form-panel .form-title {
    font-size: 24px;
  }
  .step-header h4 {
    font-size: 18px;
  }
  .wizard-nav {
    gap: 10px;
  }
  .wizard-nav .btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}
}