/*

TemplateMo 590 topic listing

https://templatemo.com/tm-590-topic-listing

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #00A1E0;
  --secondary-color: #7C3AED;
  --section-bg-color: #0B1220;
  --custom-btn-bg-color: #00A1E0;
  --custom-btn-bg-hover-color: #0090c8;
  --dark-color: #ffffff;
  --p-color: #B6C2D9;
  --border-color: rgba(255, 255, 255, 0.08);
  --link-hover-color: #33b4e8;

  --body-font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --title-font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --h1-font-size: 58px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --menu-font-size: 14px;
  --btn-font-size: 18px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --main-blue: #71b7e6;
  --main-purple: #9b59b6;
  --main-grey: #ccc;
  --sub-grey: #d9d9d9;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: #050816 !important;
  font-family: var(--body-font-family);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  min-height: 100vh;
  padding-top: 0;
  color: #ffffff !important;
  position: relative;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(9, 30, 66, 0.08);
}

.navbar-brand span {
  color: #ffffff;
  font-weight: 700;
}

.navbar .nav-link {
  color: #2b4a63;
  font-weight: 600;
}

.navbar .nav-link:hover {
  color: #0f6dc2;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/* Full Screen Loader */

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  backdrop-filter: blur(2px);
}

.loader-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.loader {
  width: 55px;
  height: 55px;
  border: 5px solid #e5e5e5;
  border-top: 5px solid #7d2ae8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

.loader-box p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

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

/*FOR AI ENABLED CSS*/
/* 
  these type the CSS variable as color
  unlocking the ability for the browser 
  to animate just that portion
*/
@property --color-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(98 100% 62%);
}

@property --color-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(204 100% 59%);
}

/* keyframes that change the color variable */
@keyframes gradient-change {
  to {
    --color-1: hsl(210 100% 59%);
    --color-2: hsl(310 100% 59%);
  }
}

/* Disabled: global `article` text-clip made all card copy invisible.
   Keep gradient text only on explicit .text-gradient / .dark-pill demos. */
.dark-pill article,
.text-gradient-animated {
  animation: gradient-change 2s linear infinite alternate;
  background: linear-gradient(to right in oklch, var(--color-1), var(--color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@layer demo.support {

  .dark-pill article {
    display: grid;
    gap: 1lh;
    text-align: center;
  }
}

.dark-pill {
  padding: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 4rem;
  background-color: #000f1a;
  font-weight: bold;
  margin-left: 10px;
  margin-right: 10px;
}

.user__details .input__box textarea,
.user__details .input__box input {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
  resize: vertical;
  /* Allows only vertical resizing */
  box-sizing: border-box;
}

.user__details .input__box textarea:focus,
.user__details .input__box input:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}

.course-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: .35s;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  height: 100%;
  position: relative;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .18);
}

.course-image {
  height: 220px;
  width: 100%;
  object-fit: scale-down;
}

.course-content {
  padding: 28px;
}

.course-content h3 {
  font-weight: 700;
  color: #16325c;
  margin-bottom: 12px;
}

.duration {
  display: inline-block;
  background: #eef6ff;
  color: #0176d3;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.course-text {
  color: #555;
  min-height: 70px;
}

.course-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.course-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
}

.course-list li::before {
  content: "✔";
  color: #2ecc71;
  margin-right: 10px;
  font-weight: bold;
}

.price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px 0;
}

.price-box h2 {
  color: #0176d3;
  font-weight: 700;
  margin: 0;
}

.price-box h4 {
  color: #888;
  margin: 0;
}

.enroll-btn {
  width: 100%;
  background: linear-gradient(135deg, #0176d3, #0b5cab);
  color: #fff;
  border-radius: 50px;
  padding: 14px;
  font-weight: 600;
  transition: .3s;
}

.enroll-btn:hover {
  background: #16325c;
  color: #fff;
  transform: scale(1.03);
}

.enroll-btn.enrolled {
  background: #6c757d;
  box-shadow: none;
  transform: none;
}

.enroll-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
}

.course-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #16325c;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
}

.student-card {
  border-top: 6px solid #00A1E0;
}

.career-card {
  border-top: 6px solid #6f42c1;
}

.interview-card {
  border-top: 6px solid #f39c12;
}

.guidelines-container h5 {
  color: var(--primary-color);
}

.guidelines-container {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e2ecf7;
  border-radius: 24px;
  padding: 24px;
  color: #35526f;
  margin-top: 8px;
}

.guidelines-list li {
  margin-bottom: 2px;
  color: #333;
  font-size: 16px;
}

.guidelines-list li b {
  font-weight: bold;
}

.guidelines-list a {
  color: #0d6efd;
  text-decoration: underline;
}

.guidelines-list a:hover {
  text-decoration: underline;
}

.important-note {
  margin-top: 25px;
  padding: 16px;
  background: #fff8e1;
  border-left: 5px solid #ff9800;
  border-radius: 6px;
  color: #444;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay+.container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  padding-top: 180px;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  background-color: var(--secondary-color);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: #071624;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #071624;
  border-bottom: 1px solid rgba(128, 208, 199, 0.35);
  z-index: 999;
}

.navbar-brand,
.navbar-brand:hover {
  font-weight: var(--font-weight-bold);
  display: block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

/* container and form */
.formcontainer {
  max-width: 700px;
  width: 100%;
  background: #fff;
  justify-self: anchor-center;
  border-radius: 5px;
}

.formcontainer .formtitle {
  font-size: 25px;
  font-weight: 500;
  position: relative;
}

.formcontainer .formtitle::before {
  content: "";
  position: absolute;
  height: 3.5px;
  width: 30px;
  background: linear-gradient(135deg, var(--main-blue), var(--main-purple));
  left: 0;
  bottom: 0;
}

.formcontainer form .user__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 12px 0;
}

/* inside the form user details */
form .user__details .input__box {
  width: calc(100% / 2 - 20px);
  margin-bottom: 15px;
}

.user__details .input__box .details {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.user__details .input__box input {
  height: 45px;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 1px solid var(--main-grey);
  padding-left: 15px;
  font-size: 16px;
  border-bottom-width: 2px;
  transition: all 0.3s ease;
}

.user__details .input__box input:focus,
.user__details .input__box input:valid {
  border-color: var(--main-purple);
}

/* inside the form gender details */

form .gender__details .gender__title {
  font-size: 20px;
  font-weight: 500;
}

form .gender__details .category {
  display: flex;
  width: 80%;
  margin: 15px 0;
  justify-content: space-between;
}

.gender__details .category label {
  display: flex;
  align-items: center;
}

.gender__details .category .dot {
  height: 18px;
  width: 18px;
  background: var(--sub-grey);
  border-radius: 50%;
  margin: 10px;
  border: 5px solid transparent;
  transition: all 0.3s ease;
}

#dot-1:checked~.category .one,
#dot-2:checked~.category .two,
#dot-3:checked~.category .three {
  border-color: var(--sub-grey);
  background: var(--main-purple);
}

form input[type="radio"] {
  display: none;
}

/* submit button */
form .button {
  height: 45px;
  margin: 45px 0;
}

form .button input {
  height: 100%;
  width: 100%;
  outline: none;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--main-blue), var(--main-purple));
  transition: all 0.3s ease;
}

form .button input:hover {
  background: linear-gradient(-135deg, var(--main-blue), var(--main-purple));
}

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: linear-gradient(135deg, #0f2b4a 0%, #1d6db4 45%, #64c7ca 100%);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-content {
  padding: 28px 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-section h1 {
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 680px;
  font-size: 3.4rem;
}

.hero-section h1 .text-gradient {
  background: linear-gradient(90deg, #67e0ff 0%, #b2a7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-primary,
.hero-secondary {
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  min-width: 0;
  text-align: center;
}

.hero-primary {
  background: #2555d4;
  color: #ffffff;
}

.hero-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 18px 16px;
  color: #ffffff;
}

.metric-card strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  padding: 24px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}

.hero-panel-status {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.hero-panel-count {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 700;
}

.hero-panel-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 22px;
  margin-bottom: 20px;
}

.hero-panel-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hero-panel-card-header span:first-child {
  color: #ffffff;
  font-weight: 700;
}

.panel-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: #ffffff;
  font-size: 0.82rem;
}

.hero-panel-card-content p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}

.hero-panel-grid {
  display: grid;
  gap: 12px;
}

.hero-panel-grid div {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 14px;
}

.hero-dashboard-preview {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 24px;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.dashboard-chart {
  height: 180px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  margin-bottom: 18px;
}

.preview-footer {
  display: flex;
  gap: 16px;
}

.preview-footer div {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.preview-footer small {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.preview-footer strong {
  font-size: 1.3rem;
}

.hero-feature-row {
  margin-top: 32px;
}

.feature-chip {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 16px;
  border: 1px solid rgba(37, 85, 212, 0.12);
  min-height: 120px;
}

.feature-chip strong {
  display: block;
  color: #0f3f7e;
  margin-bottom: 8px;
}

.feature-chip span {
  color: #5b6f8c;
}

.steps-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.step-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(14, 42, 69, 0.08);
  padding: 28px;
  min-height: 240px;
}

.step-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2555d4;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-card h5 {
  margin-bottom: 12px;
}

.step-card p {
  color: #5b6f8c;
}

.registration-panel {
  background: #ffffff;
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(10, 31, 56, 0.08);
  border: 1px solid #e9f2fb;
}

.registration-copy {
  padding-right: 10px;
}

.registration-copy h2 {
  color: #0e2a45;
  margin-bottom: 14px;
}

.registration-copy p {
  font-size: 1rem;
  color: #557186;
  margin-bottom: 18px;
}

.mini-card {
  background: linear-gradient(135deg, #f3f9ff, #e8f5ff);
  border: 1px solid #d8ebff;
  border-radius: 18px;
  padding: 16px;
  margin-top: 20px;
}

.mini-label {
  font-size: 0.8rem;
  color: #5680a6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.mini-value {
  font-weight: 700;
  color: #0e2a45;
}

.form-shell {
  background: linear-gradient(180deg, #ffffff, #f9fcff);
  border: 1px solid #e5f0f7;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 14px 38px rgba(13, 34, 51, 0.08);
}

.form-shell-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.form-shell-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0e2a45;
}

.form-shell-subtitle {
  font-size: 0.95rem;
  color: #5f7285;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: #ecf7ff;
  color: #0f6dc2;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-pill.soft {
  background: #f5f8fb;
  color: #546a7a;
}

.status-pill.green {
  background: #e8f9ee;
  color: #15804b;
}

.message-banner {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 600;
}

.message-banner.success {
  display: block;
  background: #eafbf1;
  color: #157a45;
  border: 1px solid #bde8c7;
}

.message-banner.error {
  display: block;
  background: #fff2f2;
  color: #b42318;
  border: 1px solid #f3c4c4;
}

.formcontainer {
  max-width: 100%;
  width: 100%;
  background: transparent;
  padding: 0;
}

.formcontainer .formtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0e2a45;
  margin-bottom: 8px;
}

.formcontainer .formtitle::before {
  display: none;
}

.formcontainer form .user__details {
  margin: 18px 0 0;
  gap: 14px;
}

form .user__details .input__box {
  width: calc(50% - 8px);
  margin-bottom: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid #e6eff6;
}

.user__details .input__box .details {
  color: #43607d;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.user__details .input__box input,
.user__details .input__box textarea,
.user__details .input__box select {
  border: 1px solid #dfe8f0;
  border-radius: 12px;
  background: #fbfdff;
  box-shadow: none;
}

.user__details .input__box input:focus,
.user__details .input__box textarea:focus,
.user__details .input__box select:focus {
  border-color: #3e90d7;
  box-shadow: 0 0 0 3px rgba(62, 144, 215, 0.16);
}

form .button {
  height: auto;
  margin: 20px 0 0;
}

form .button input {
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #0f6dc2, #17a8a8);
  box-shadow: 0 12px 24px rgba(15, 109, 194, 0.2);
}

form .button input:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 109, 194, 0.28);
}

form .button input:disabled {
  opacity: 0.8;
  cursor: progress;
}

.guidelines-list li {
  margin-bottom: 10px;
}

.important-note {
  border-left: 4px solid #2d8fda;
  padding-left: 14px;
  margin-top: 18px;
}

.dashboard-shell {
  background: linear-gradient(135deg, #ffffff, #f5faff);
  border: 1px solid #e4f0f8;
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 20px 48px rgba(12, 35, 60, 0.08);
}

.dashboard-shell h2 {
  color: #0e2a45;
  margin-bottom: 14px;
}

.dashboard-shell p {
  color: #587188;
}

.stat-card {
  background: linear-gradient(145deg, #ffffff, #f2f8ff);
  border: 1px solid #dfeefc;
  border-radius: 18px;
  padding: 18px;
}

.stat-label {
  color: #5f7384;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-value {
  color: #0e2a45;
  font-size: 1.85rem;
  font-weight: 700;
  margin-top: 6px;
}

.table-card {
  background: #ffffff;
  border: 1px solid #e6eff6;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 14px 38px rgba(13, 34, 51, 0.06);
}

.table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.modern-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.modern-table th,
.modern-table td {
  padding: 12px 10px;
  text-align: left;
  font-size: 0.95rem;
}

.modern-table thead th {
  color: #6b7f91;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  border-bottom: 1px solid #eef4fa;
}

.modern-table tbody td {
  background: #f8fbff;
  border-top: 1px solid #eef4fa;
  border-bottom: 1px solid #eef4fa;
}

.modern-table tbody tr td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.modern-table tbody tr td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px dashed #d8e8f5;
  border-radius: 18px;
  background: #fafcff;
  margin-top: 16px;
  text-align: center;
}

.empty-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.site-footer {
  background: #071524;
  color: #dfeffd;
}

.site-footer-title {
  color: #9edcfb;
}

.site-footer-link {
  color: #9edcfb;
}

.site-footer-link:hover {
  color: #ffffff;
}

.footer-card {
  background: linear-gradient(135deg, #123c5d, #0f6dc2);
  color: #ffffff;
  border-radius: 24px;
  padding: 20px;
}

.footer-card-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-copy {
  color: #dfeffd;
  margin-top: 12px;
  line-height: 1.7;
}

.footer-btn {
  background: #ffffff;
  color: #0f6dc2;
  border-radius: 999px;
  font-weight: 700;
}

.footer-btn:hover {
  color: #0f6dc2;
  transform: translateY(-2px);
}

.hero-section .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.hero-section .input-group-text {
  background-color: transparent;
  border: 0;
}

.hero-section input[type="search"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.hero-section button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}

.select-box {
  position: relative;
}

.select-box select {
  width: 100%;
  height: 52px;
  padding: 0 45px 0 15px;
  font-size: 16px;
  border: 2px solid #dcdcdc;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  outline: none;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  transition: .3s;
}

.select-box select:hover {
  border-color: #7d2ae8;
}

.select-box select:focus {
  border-color: #7d2ae8;
  box-shadow: 0 0 0 3px rgba(125, 42, 232, .15);
}

.select-box::after {
  content: "▼";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
  font-size: 12px;
}


/*---------------------------------------
  TOPICS              
-----------------------------------------*/
.featured-section {
  background-color: var(--secondary-color);
  border-radius: 0 0 100px 100px;
  padding: 60px 0 100px;
  position: relative;
  overflow: visible;
}

.featured-section .row {
  position: static;
  bottom: 0;
  margin-bottom: 0;
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  justify-self: center;
  width: fit-content;
  padding: 30px;
  transition: all 0.3s ease;
}

.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block>a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}

.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
}

.custom-block-overlay {
  height: auto;
  min-height: 350px;
  padding: 0;
}

.custom-block-overlay>a {
  height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-overlay-text {
  position: relative;
  z-index: 2;
  top: auto;
  right: auto;
  left: auto;
  padding: 30px;
}

.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white-color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary-color);
}

.bg-design {
  background-color: #00B0FF;
}

.bg-graphic {
  background-color: #00BFA6;
}

.bg-advertising {
  background-color: #F50057;
}

.bg-finance {
  background-color: #536DFE;
}

.bg-music {
  background-color: #F9A826;
}

.bg-education {
  background-color: #00BFA6;
}


/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.topics-listing-page .site-header {
  padding-bottom: 65px;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
}


/*---------------------------------------
  PAGINATION              
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active>.page-link,
.page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/colleagues-working-cozy-office-medium-shot.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--primary-color);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--primary-color);
}


/*---------------------------------------
  FAQs              
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 40px;
}

/*---------------------------------------
  NEWSLETTER               
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 15px 45px rgba(19, 84, 122, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.contact-card h3 {
  color: var(--primary-color);
}

.embed-frame {
  background-color: var(--white-color);
  border: 0;
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
  height: min(80vh, 860px);
  min-height: 520px;
  max-height: 920px;
}

.embed-map {
  min-height: 320px;
}


.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.compact-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-radius: 50px;
  background-color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  font-family: system-ui, -apple-system, Roboto, sans-serif;
  transition: transform 0.3s;
}

.compact-widget:hover {
  transform: translateY(-4px);
}

.compact-widget .tracker-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.compact-widget .tracker-icon:hover {
  transform: scale(1.1);
}

.compact-widget .widget-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.compact-widget .widget-count {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
}

.compact-widget .widget-label {
  font-size: 0.75rem;
  color: #64748b;
}

.compact-widget .widget-divider {
  width: 1px;
  height: 28px;
  background-color: #e2e8f0;
}

.compact-widget .widget-action-btn {
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  background-color: #f1f5f9;
  color: #3b82f6;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.compact-widget .widget-action-btn:hover {
  background-color: #e0e7ff;
}

@keyframes floatUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.floating-widget{

    position:fixed;
    right:20px;
    bottom:20px;
    z-index:99999;

}

.floating-btn{

    width:65px;
    height:65px;

    border:none;
    border-radius:50%;

    background:#0176d3;
    color:white;

    font-size:30px;
    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

}

.floating-btn:hover{

    transform:scale(1.08);

}

.widget-card{

    position:absolute;
    bottom:80px;
    right:0;

    width:280px;

    background:white;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.2);

    display:none;

}

.widget-card.active{

    display:block;

    animation:popup .3s ease;

}

.widget-header{

    background:#0176d3;

    color:white;

    padding:15px;

    font-weight:bold;

}

.widget-body{

    padding:15px;

}

.widget-row{

    display:flex;

    justify-content:space-between;

    margin:12px 0;

}

@keyframes popup{

    from{

        opacity:0;
        transform:translateY(20px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-bottom: 10px solid var(--secondary-color);
  position: relative;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
}

.site-footer-title {
  color: var(--primary-color);
}

.site-footer .dropdown-menu {
  padding: 0;
}

.site-footer .dropdown-item {
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding: 4px 18px;
}

.site-footer .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.site-footer .dropdown-menu li:first-child .dropdown-item {
  padding-top: 10px;
}

.site-footer .dropdown-menu li:last-child .dropdown-item {
  padding-bottom: 12px;
}

.site-footer .dropdown-toggle {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.site-footer .dropdown-toggle:hover {
  background-color: var(--primary-color);
  border-color: transparent;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  color: var(--secondary-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .site-header {
    padding-top: 245px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: #071624;
  }

  .sticky-wrapper,
  .sticky-wrapper.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }

  .custom-block-topics-listing>.d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .contact-card {
    padding: 20px;
  }

  .embed-frame {
    height: min(72vh, 780px);
    min-height: 520px;
  }

  .embed-map {
    min-height: 280px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .contact-card {
    padding: 18px;
  }

  .embed-frame {
    min-height: 360px;
  }

  .embed-map {
    min-height: 240px;
  }

  /* Mobile scrolling */
  @media (max-width: 1200px) {

    .custom-block-overlay-text {
      height: 100%;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      padding: 0px;
    }

    .guidelines-container {
      width: 100%;
      padding: 10px;
      max-height: 400px;
      overflow-y: scroll;
    }

    .mini-value {
      font-size: 14px;
    }
  }

  @media(max-width:768px) {

    .course-content {
      padding: 20px;
    }

    .course-image {
      height: 180px;
    }

  }

  @media only screen and (max-width: 584px) {
    .formcontainer {
      max-width: 100%;
    }

    form .user__details .input__box {
      margin-bottom: 15px;
      width: 100%;
    }

    form .gender__details .category {
      width: 100%;
    }

    .formcontainer form .user__details {
      overflow-y: scroll;
    }

    .user__details::-webkit-scrollbar {
      width: 0;
    }

    .hero-shell,
    .registration-panel,
    .dashboard-shell {
      padding: 20px;
    }
  }

  @media screen and (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
      opacity: 1;
      margin-top: 0;
      pointer-events: auto;
    }
  }

  @media screen and (max-width: 991px) {
    .hero-section h1 {
      font-size: 2.8rem;
    }

    .hero-metrics-row {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-panel {
      min-height: auto;
    }
  }

  @media screen and (max-width: 767px) {
    .hero-section {
      padding-top: 80px;
      padding-bottom: 60px;
    }

    .hero-actions {
      flex-direction: column;
    }

    .hero-metrics-row {
      grid-template-columns: 1fr;
    }

    .feature-chip {
      min-height: auto;
    }

    .step-card {
      min-height: auto;
    }
  }

  /* Mobile */

  @media(max-width:768px) {
    .compact-widget {
      gap: 12px;
      padding: 6px 12px;
    }
  }
}

/*---------------------------------------
  REGISTRATION WIZARD + MOBILE APP UI
-----------------------------------------*/
.registration-wizard-section {
  background: #f5f8fc;
  padding-top: 40px;
  padding-bottom: 120px;
}

.mobile-app-shell {
  max-width: 720px;
}

.wizard-intro {
  margin-bottom: 20px;
}

.wizard-intro h2 {
  color: #0b2a4a;
  font-size: clamp(1.45rem, 4vw, 2rem);
  margin-bottom: 0;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.wizard-progress-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111827;
  border-radius: 14px;
  padding: 12px;
  color: #B6C2D9;
  transition: border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.wizard-progress-item strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 1px;
  color: #ffffff;
}

.wizard-progress-item small {
  display: block;
  color: #7B879E;
  font-size: 0.72rem;
  line-height: 1.3;
}

.wizard-progress-number {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(0, 161, 224, 0.15);
  color: #7dd3f0;
}

.wizard-progress-item.is-active {
  border-color: rgba(0, 161, 224, 0.55);
  background: rgba(0, 161, 224, 0.14);
}

.wizard-progress-item.is-active .wizard-progress-number,
.wizard-progress-item.is-complete .wizard-progress-number {
  background: #00A1E0;
  color: #ffffff;
}

.wizard-progress-item.is-complete {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.1);
}

.wizard-progress-item.is-locked {
  opacity: 0.55;
  cursor: not-allowed;
  background: #0B1220;
}

.wizard-progress-item:not(.is-locked):not(:disabled) {
  cursor: pointer;
}

.wizard-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.wizard-panel[hidden] {
  display: none !important;
}

.wizard-panel-header {
  margin-bottom: 18px;
}

.wizard-panel-header h3 {
  margin-bottom: 6px;
  color: #0b2a4a;
  font-size: 1.25rem;
}

.wizard-panel-header p {
  margin: 0;
  color: #6b7f97;
  font-size: 0.95rem;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 16px;
}

.wizard-hint {
  margin: 14px 0 0;
  color: #6b7f97;
  font-size: 0.9rem;
}

.wizard-hint.is-ready {
  color: #0b2a4a;
  font-weight: 600;
}

.app-primary-btn,
.btn.app-primary-btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  min-height: 48px;
  background: #1f5eff;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.app-primary-btn:hover,
.btn.app-primary-btn:hover {
  background: #174ad1;
  color: #ffffff;
}

.app-primary-btn:disabled,
.btn.app-primary-btn:disabled {
  background: #9bb6f5;
  color: #ffffff;
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.app-primary-btn.is-submitting,
.btn.app-primary-btn.is-submitting {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-primary-btn.enrolled,
.btn.app-primary-btn.enrolled {
  background: #0b2a4a;
}

.app-secondary-btn,
.btn.app-secondary-btn {
  width: 100%;
  border: 1.5px solid #c9d7e8;
  border-radius: 14px;
  padding: 12px 16px;
  min-height: 48px;
  background: #ffffff;
  color: #0b2a4a;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.app-secondary-btn:hover,
.btn.app-secondary-btn:hover {
  background: #f3f7ff;
  border-color: #1f5eff;
  color: #0b2a4a;
}

/* Program catalog (mockup) */
.program-catalog-hero {
  margin-bottom: 18px;
}

.program-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eaf1ff;
  color: #1f5eff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.program-catalog-hero h3 {
  color: #0b2a4a;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.program-catalog-hero p {
  color: #6b7f97;
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
}

.program-list {
  display: grid;
  gap: 12px;
}

.program-list-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  border: 1px solid #e3ebf5;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 16px;
  color: #0b2a4a;
  box-shadow: none;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.program-list-card:hover,
.program-list-card:focus-visible {
  border-color: #1f5eff;
  outline: none;
}

.program-list-card.is-selected {
  border-color: rgba(0, 161, 224, 0.65);
  background: rgba(0, 161, 224, 0.12);
}

.program-list-card.is-selected .program-selected-mark {
  display: inline-flex;
}

.program-list-card.is-selected .program-chevron {
  display: none;
}

.program-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
}

.program-icon-student {
  background: #1f5eff;
}

.program-icon-career {
  background: #6b4eff;
}

.program-icon-interview {
  background: #ff7a3d;
}

.program-list-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.program-list-copy strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.program-duration {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eaf1ff;
  color: #1f5eff;
  font-size: 0.75rem;
  font-weight: 700;
}

.program-price {
  color: #6b7f97;
  font-size: 0.85rem;
  font-weight: 600;
}

.program-chevron {
  color: #9aadc4;
  font-size: 1.1rem;
}

.program-selected-mark {
  display: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #1f5eff;
  color: #ffffff;
  font-size: 0.95rem;
}

.mobile-sticky-actions {
  position: sticky;
  bottom: 16px;
  margin-top: 22px;
  z-index: 20;
}

/* Course detail sheet */
.course-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 42, 74, 0.45);
  z-index: 1040;
}

.course-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  max-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  transform: translateY(110%);
  transition: transform 0.28s ease;
}

.course-sheet.is-open {
  transform: translateY(0);
}

.course-sheet[hidden],
.course-sheet-overlay[hidden] {
  display: none !important;
}

.course-sheet-handle {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: #d7e0ea;
  margin: 10px auto 0;
}

.course-sheet-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px 0;
}

.course-sheet-nav-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #0b2a4a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.course-sheet-body {
  padding: 8px 24px 16px;
  overflow: auto;
  text-align: center;
}

.course-sheet-icon {
  width: 72px;
  height: 72px;
  margin: 4px auto 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  background: #1f5eff;
}

.course-sheet-icon.tone-career {
  background: #6b4eff;
}

.course-sheet-icon.tone-interview {
  background: #ff7a3d;
}

.course-sheet-body h3 {
  color: #0b2a4a;
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.course-sheet-desc {
  margin: 14px 0 18px;
  color: #6b7f97;
  font-size: 0.95rem;
  line-height: 1.55;
}

.course-sheet-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.course-sheet-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed #d9e4f0;
  color: #0b2a4a;
  font-weight: 600;
  font-size: 0.95rem;
}

.course-sheet-features li:last-child {
  border-bottom: 0;
}

.course-sheet-features li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #1f5eff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.5 11.2 3.3 8l1-1 2.2 2.2L11.7 4l1 1z'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.course-sheet-pricing {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 8px;
}

.course-sheet-pricing small {
  display: block;
  color: #6b7f97;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.course-sheet-pricing strong {
  color: #1f5eff;
  font-size: 1.7rem;
  line-height: 1;
}

.course-sheet-pricing span {
  color: #8a9bb0;
  font-size: 1.05rem;
  font-weight: 600;
}

.course-sheet-footer {
  padding: 12px 20px calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid #eef3f8;
  background: #ffffff;
}

.guidelines-accept-box {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f3f7ff;
  border: 1px solid #d7e6f5;
}

.guidelines-accept-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  cursor: pointer;
  color: #0b2a4a;
  font-weight: 500;
}

.guidelines-accept-label input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.registration-panel,
.form-shell {
  border-radius: 20px;
}

body.course-sheet-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .wizard-progress-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 10px 8px;
  }

  .wizard-progress-copy small {
    display: none;
  }

  .compact-widget {
    display: inline-flex !important;
    left: 12px;
    right: auto;
    bottom: 92px;
    gap: 10px;
    padding: 6px 10px;
    max-width: calc(100vw - 24px);
    box-shadow: 0 8px 24px rgba(15, 42, 74, 0.14);
  }

  .compact-widget .tracker-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .compact-widget .widget-count {
    font-size: 1rem;
  }

  .compact-widget .widget-label {
    font-size: 0.68rem;
  }

  .compact-widget .widget-action-btn {
    padding: 5px 10px;
    font-size: 0.78rem;
  }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 36px;
  }

  .hero-section h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .registration-wizard-section {
    padding-top: 24px;
    padding-bottom: 140px;
  }

  .navbar-brand span {
    font-size: 0.85rem;
  }

  .wizard-actions:not(.step2-actions):not(.step3-actions) {
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-sticky-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    margin-top: 0;
    z-index: 30;
  }

  #wizard-step-1 {
    padding-bottom: 96px;
  }
}

@media (min-width: 992px) {
  .course-sheet {
    top: 50%;
    bottom: auto;
    border-radius: 24px;
    transform: translateY(20px) scale(0.98);
    opacity: 0;
    max-height: 85vh;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .course-sheet.is-open {
    transform: translateY(-50%);
    opacity: 1;
  }

  .course-sheet-handle {
    display: none;
  }
}

/*---------------------------------------
  APP REGISTRATION FORM (STEP 2)
-----------------------------------------*/
.app-form-card {
  background: #ffffff;
  border: 1px solid #e4edf7;
  border-radius: 22px;
  padding: 20px 18px 8px;
}

.app-form-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef3f8;
}

.app-form-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b2a4a;
  line-height: 1.3;
}

.app-form-card-subtitle {
  margin-top: 4px;
  font-size: 0.82rem;
  color: #6b7f97;
}

.app-form {
  display: block;
}

.app-form-section {
  padding: 18px 0 8px;
  border: 0;
  margin: 0;
}

.app-form-section + .app-form-section {
  border-top: 1px solid #eef3f8;
  margin-top: 6px;
}

.app-form-section-title {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f5eff;
}

.app-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.app-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  width: 100%;
  cursor: text;
}

.app-field-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0b2a4a;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
}

.app-field-label em {
  color: #1f5eff;
  font-style: normal;
  font-weight: 700;
}

.app-field-hint {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #6b7f97;
}

.app-field input:not(.time-slot-pill-input),
.app-field textarea,
.app-select select {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 14px 16px;
  border: 1.5px solid #d5e1ef;
  border-radius: 14px;
  background: #ffffff;
  color: #0b2a4a;
  font-size: 1rem;
  line-height: 1.4;
  outline: none;
  box-shadow: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.app-field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.app-field input::placeholder,
.app-field textarea::placeholder {
  color: #9aadc4;
  opacity: 1;
}

.app-field input:hover,
.app-field textarea:hover,
.app-select select:hover {
  border-color: #b7c9de;
}

.app-field input:focus,
.app-field textarea:focus,
.app-select select:focus {
  border-color: #1f5eff;
  background: #f8faff;
  box-shadow: 0 0 0 4px rgba(31, 94, 255, 0.12);
}

.app-select {
  position: relative;
}

.app-select select {
  padding-right: 44px;
  cursor: pointer;
}

.app-select::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #6b7f97;
  border-bottom: 2px solid #6b7f97;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.step2-actions,
.step3-actions {
  margin-top: 18px;
  padding-top: 0;
  border-top: 0;
  display: grid;
  grid-template-columns: minmax(88px, 0.7fr) minmax(0, 1.3fr);
  gap: 10px;
  align-items: center;
  overflow: hidden;
}

.step2-actions .app-primary-btn,
.step2-actions .app-secondary-btn,
.step3-actions .app-primary-btn,
.step3-actions .app-secondary-btn,
.step2-actions .btn.app-primary-btn,
.step2-actions .btn.app-secondary-btn,
.step3-actions .btn.app-primary-btn,
.step3-actions .btn.app-secondary-btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  height: 48px;
  padding: 0 14px;
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

#wizard-step-2 .wizard-panel-header {
  margin-bottom: 14px;
}

#wizard-step-2 .wizard-panel-header h3 {
  font-size: 1.2rem;
}

#wizard-step-2 .wizard-panel-header p {
  font-size: 0.92rem;
  max-width: 36ch;
}

@media (min-width: 720px) {
  .app-form-card {
    padding: 24px 24px 12px;
  }

  .app-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
  }

  .app-field-full {
    grid-column: 1 / -1;
  }

  .mobile-app-shell {
    max-width: 920px;
  }

  .step2-actions,
  .step3-actions {
    grid-template-columns: 160px 1fr;
    max-width: 420px;
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  .registration-wizard-section {
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .wizard-progress {
    gap: 14px;
    margin-bottom: 28px;
  }

  .wizard-progress-item {
    padding: 16px 18px;
  }

  .program-list {
    gap: 14px;
  }

  .program-list-card {
    padding: 18px 20px;
  }

  .program-catalog-hero h3 {
    font-size: 2.2rem;
  }

  .app-form-card {
    padding: 28px 28px 16px;
    border-radius: 24px;
  }

  .compact-widget {
    right: 24px;
    bottom: 24px;
  }
}

@media (max-width: 767px) {
  .app-form-card {
    border-radius: 18px;
    padding: 16px 14px 6px;
  }

  .app-form-grid {
    gap: 18px;
  }

  .app-field input:not(.time-slot-pill-input),
  .app-field textarea,
  .app-select select {
    min-height: 54px;
    font-size: 16px; /* prevents iOS zoom */
  }

  .step2-actions,
  .step3-actions {
    position: sticky;
    bottom: 12px;
    z-index: 30;
    padding: 8px;
    background: rgba(17, 24, 39, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    grid-template-columns: 88px 1fr;
    gap: 8px;
  }

  .step2-actions .app-primary-btn,
  .step2-actions .app-secondary-btn,
  .step3-actions .app-primary-btn,
  .step3-actions .app-secondary-btn,
  .step2-actions .btn.app-primary-btn,
  .step2-actions .btn.app-secondary-btn,
  .step3-actions .btn.app-primary-btn,
  .step3-actions .btn.app-secondary-btn {
    height: 44px;
    min-height: 44px;
    font-size: 0.88rem;
  }

  #wizard-step-2,
  #wizard-step-3 {
    padding-bottom: 20px;
  }

  /* Kill old nested-box form styles inside the wizard */
  #wizard-step-2 .formcontainer form .user__details,
  #wizard-step-2 form .user__details .input__box {
    overflow: visible;
    width: 100%;
  }
}