:root {
  --navy: #0a1f5c;
  --navy-dark: #081548;
  --green: #3aaa35;
  --green-dark: #2d8f29;
  --green-light: #4cc247;
  --light-bg: #f0f7f0;
  --gray-text: #6b7280;
  --white: #ffffff;
  --card-border: #e8f0e8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: #1a1a2e;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  padding: 8px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  height: 105px;
}

.navbar-nav .nav-link {
  color: #111111 !important;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 6px 20px !important;
  position: relative;
  transition: color 0.2s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--green) !important;
}

.navbar-nav .nav-link.active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  margin-top: 2px;
}

.btn-get-started {
  background: var(--navy);
  color: #fff !important;
  border-radius: 30px;
  padding: 10px 26px !important;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.25s, transform 0.2s;
}

.btn-get-started:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* ── HERO ── */
.hero {
  background:url('../img/home_banner.png');	
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;	
  padding: 115px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}

.hero h1 span {
  color: var(--green);
}

.hero-sub {
  color: rgba(255, 255, 255);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 365px;
  margin: 18px 0 32px;
}

.btn-hero-primary {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 13px 28px;
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  text-decoration: unset;
}

.btn-hero-primary:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(58, 170, 53, 0.35);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  padding: 11px 28px;
  font-weight: 500;
  font-size:0.875rem;
  transition: all 0.25s;
  text-decoration: unset;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* Hero logo illustration */
.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-shield-bg {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 320px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.hero-logo-img {
  width: 180px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.hero-brand-name {
  color: #fff;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-top: 14px;
  text-align: center;
}

.hero-brand-name span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-tagline span {
  font-weight: 500;
}
.hero-tagline .sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ── Apply Form ── */
.apply-form {
  padding: 70px 0 0;
}

.apply-form .card {
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(10, 40, 100, 0.13);
  display: flex;
  position: relative;
  overflow: visible;
}

.apply-form .side-tab {
  position: absolute;
  left: -38px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 9px;
  border-radius: 8px 0 0 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg) translateY(50%);
  cursor: pointer;
  user-select: none;
  box-shadow: -3px 0 12px rgb(58,170,53,0.3);
  transition: background 0.2s;
  z-index: 10;
}

.apply-form .side-tab:hover {
  background: #c82a4e;
}

.apply-form .main {
  flex: 1;
}

.apply-form .user-toggle {
  display: flex;
  gap: 28px;
  margin-bottom: 13px;
  padding: 16px 28px 16px 28px;
  border-bottom: 1.5px solid var(--light-bg);
  background: var(--light-bg);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.apply-form .radio-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  user-select: none;
}

.apply-form .radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.apply-form .radio-circle.active {
  border-color: var(--green);
}

.apply-form .radio-circle.active::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  display: block;
}

/* ── FORM ROWS ── */
.apply-form .form-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 12px;
}

.apply-form .form-row:last-of-type {
  border-bottom: none;
}

.apply-form .row-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  min-width: 155px;
  flex-shrink: 0;
}

/* ── CHIPS ── */
.apply-form .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.apply-form .chip {
  position: relative;
  padding: 7px 20px;
  border-radius: 999px;
  border: 1.5px solid #a1e99e;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  outline: none;
}

.apply-form .chip:hover {
  border-color: #1a6fca;
  color: #1a6fca;
  box-shadow: 0 0 0 3px rgba(26, 111, 202, 0.08);
}

/* Selected state */
.apply-form .chip.selected {
  border-color: var(--green);
  color: var(--green);
  font-weight: 600;
  background: #fff;
}

/* Red checkmark badge on selected chip */
.apply-form .chip.selected::after {
  content: '✓';
  position: absolute;
  top: -8px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
  text-align: center;
  border: 1.5px solid #eaf4fb;
}

/* ── FOOTER ── */
.apply-form .card-footer {
  background: var(--light-bg);
  border-top: 2px solid var(--light-bg);
  border-radius: 0 0 18px 18px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.apply-form .charges {
  font-size: 0.875rem;
  color: #332;
  text-align: right;
  line-height: 1.9;
  display: flex;
  flex-direction: column;
  border-right: 1px dotted;
  padding-right: 30px;
}

.apply-form .charges .tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid #888;
  color: #888;
  font-size: 9px;
  cursor: help;
  margin-left: 3px;
  font-style: normal;
  vertical-align: middle;
  transition: border-color 0.2s, color 0.2s;
}

.apply-form .charges .tooltip-icon:hover {
  border-color: #1a6fca;
  color: #1a6fca;
}

.apply-form .price-display {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
}

.apply-form .buy-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.apply-form .buy-btn:hover {
  background: #0f266d;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26, 58, 143, 0.35);
}

.apply-form .buy-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.apply-form .hidden {
  display: none !important;
}

.apply-form .form-row.hidden {
  display: none !important;
}

.apply-form .form-inner{
  padding: 0px 28px 0 28px;
}

#indian-form,
#foreign-form {
  transition: opacity 0.2s ease;
}

/* ── about ── */
.info-box{
   padding-left: 50px;
}

.info-box .section-label {
   text-align: start;
}

.info-box .section-title{
	text-align: start;
}

.info-box .section-divider{
	margin:0 0 48px !important;
}


/* ── dsc banner ── */
.dsc-banner {
  background: linear-gradient(155deg, #4ccf47 0%, #3aaa35 50%, #2e8f2a 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 0 100px;
  text-align: center;
}

/* background decorative circles */
.dsc-banner::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -160px; left: -100px;
  pointer-events: none;
}
.dsc-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  bottom: -180px; right: -80px;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: 40%; right: 8%;
  pointer-events: none;
}

/* ── PILL NAV ── */
.dsc-banner .pill-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.97);
  border-radius: 60px;
  padding: 8px 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.1);
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: fadeDown .6s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeDown {
  from { opacity:0; transform: translateY(-18px); }
  to   { opacity:1; transform: translateY(0); }
}

.dsc-banner .pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: none;
  border-radius: 50px;
  font-size:0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 16px;
  transition: transform .18s, box-shadow .18s, filter .18s;
  text-decoration: none;
  white-space: nowrap;
}
.dsc-banner .pill-btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.dsc-banner .pill-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.dsc-banner .pill-teal   { background: #00c9a7; color: #fff; }
.dsc-banner .pill-red    { background: #e53935; color: #fff; }
.dsc-banner .pill-green  { background: #1b8e4e; color: #fff; }
.dsc-banner .pill-yellow { background: #f5a623; color: #fff; }
.dsc-banner .pill-indigo { background: #4355f9; color: #fff; }

.dsc-banner-content {
  margin-top: 52px;
  position: relative;
  z-index: 2;
  animation: fadeUp .7s .25s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

.dsc-banner-title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -1px;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}

.dsc-banner-sub {
  margin-top: 22px;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}



/* ── SERVICES ── */
.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}

.section-title span {
  color: var(--green);
}

.section-divider {
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 0 auto 48px;
}

.services {
  padding: 60px 0;
  background: #fff;
}

.service-card {
  background: #fff;
  border: 1.5px solid var(--card-border);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 36px 28px 30px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 16px 40px rgba(10, 31, 92, 0.1);
  transform: translateY(-6px);
  border-color: var(--green);
}

.service-icon-wrap {
  width: 100px;
  height: 100px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
}

.service-card:hover .service-icon-wrap {
  background: #d4edda;
}

.service-icon-wrap i {
  font-size: 2.5rem;
  color: var(--navy);
}

.service-card h5 {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 18px;
}

.services .row {
  align-items: stretch;
}
.services .col-lg-3 {
  display: flex;
}
.services .col-lg-3 .service-card {
  flex: 1;
  position:relative;
}

.services .col-lg-3 .service-card:after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translate(-50%, -50%);
  background: var(--green);
  height: 5px;
  width: 50%;
}

.learn-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.learn-more:hover {
  gap: 10px;
  color: var(--green-dark);
}

/* ── WHY CHOOSE US ── */
.why-us {
  background: var(--light-bg);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.why-us .section-title {
  text-align: left;
}
.why-us .section-label {
  text-align: left;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.why-card{
  position:relative;
}

.bd-right::after{
  content: "";
  position: absolute;
  right: 30px;
  top: 0px;
  background: #0a1f5c17;
  width: 1px;
  height: 190px;
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon i {
  color: var(--navy);
  font-size: 1.625rem;
}

.why-card h6 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-card p {
  font-size: 0.875rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.why-us .why-img img{
  max-width:100%;	
}

.why-us .why-content{
  padding-left:50px;	
}

.why-txt{
  width: 220px;
}

.shield-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-svg-wrap {
  position: relative;
  width: 280px;
}

.shield-bg-circle {
  width: 280px;
  height: 280px;
  background: rgba(58, 170, 53, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.shield-main {
  font-size: 8rem;
  color: var(--green);
  position: relative;
}

.shield-check {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(58, 170, 53, 0.4);
}

.shield-check i {
  color: #fff;
  font-size: 1.8rem;
}

/* ── STATS BANNER ── */
.stats-banner {
  background: linear-gradient(90deg, #0b3c75 0%, #13577f 70%, #2f8f6b 80%, #3aa655 100%);
  padding: 36px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.bod-right{
  border-right: 1px solid rgba(255,255,255,.8) !important;
  margin-right: 25px;
}

.stat-icon-wrap {
  width: 65px;
  height: 65px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-wrap i {
  color: #fff;
  font-size: 1.875rem;
}

.stat-number {
  font-size:1.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.7;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
}

.footer-logo {
  height: 60px;
  margin-bottom: 16px;
}

.footer-logo img{ 
  width: 240px;
  max-width: 100%;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-right: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.f-pd{
   padding-left: 45px;
}

.footer-widget{
   position:relative;	
}

.f-bd:after{
	content:"";
	position:absolute;
	left:200px;
	top:0px;
	background:rgba(255,255,255,.1);
	width:1px;
	height:240px;
}

.footer-social a:hover {
  background: var(--green);
  color: #fff;
}

.footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-links a::before {
  content: "›";
  font-size: 1.3125rem;
  color: rgba(255, 255, 255, .8);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-contact-list li i {
  color: rgba(255, 255, 255, .8);
  margin-top: 2px;
  font-size: 0.9375rem;
  width: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 18px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.875rem;
}

.footer-bottom a:hover {
  color: var(--green);
}

/* register form css */
.register-wrapper{
   max-width: 1250px;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
  .register-header {
    background: #0a1f5c;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .register-header h1 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .register-header .close-btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
  }
  .register-body {
    padding: 20px 24px 28px;
    background: #f4f6fa;
  }

  /* Card */
  .register-body .card {
    background: #fff;
    border-radius: 8px;
    padding: 20px 20px 24px;
    margin-bottom: 18px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .register-body .card-title {
    display: inline-block;
    background: #0a1f5c;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 18px;
    border-radius: 5px;
    margin-bottom: 18px;
  }

  /* Grid rows */

  .register-body .field { display: flex; flex-direction: column; flex: 1; min-width: 130px; }
  .register-body .field label {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
  }
  .register-body .field input, .register-body .field select {
    border: 1px solid #d0d4dc;
    border-radius: 5px;
    padding: 9px 12px;
    font-size: 13.5px;
    color: #333;
    background: #fff;
    outline: none;
    transition: border 0.2s;
    width: 100%;
  }
  .register-body .field input:focus, .register-body .field select:focus { border-color: #F47B20; }
  .register-body .field input::placeholder { color: #aaa; }
  .register-body select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; }

  /* OTP fields */
  .register-body .otp-wrapper { position: relative; }
  .register-body .otp-wrapper input { padding-right: 72px; }
  .register-body .otp-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #F47B20;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    letter-spacing: 0.3px;
  }

  /* Password toggle */
  .register-body .pwd-wrapper { position: relative; }
  .register-body .pwd-wrapper input { padding-right: 36px; }
  .register-body .pwd-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #F47B20;
    font-size: 16px;
    line-height: 1;
  }

  /* File upload */
  .register-body .file-field {
    border: 1px solid #d0d4dc;
    border-radius: 5px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
  }
  .register-body .file-field label-top { font-size: 11px; color: #888; display: block; margin-bottom: 4px; }
  .register-body .file-label {
    font-size: 11.5px;
    color: #888;
    flex: 1;
  }
  .register-body .choose-btn {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    color: #333;
    white-space: nowrap;
  }
  .register-body .choose-btn:hover { background: #e4e4e4; }
  .register-body .file-wrap { flex: 1; }
  .register-body .file-wrap .file-top { font-size: 11px; color: #888; margin-bottom: 5px; }

  /* Checkbox agreement */
  .register-body .agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0 20px;
    font-size: 12.5px;
    color: #444;
    line-height: 1.6;
  }
  .register-body .agreement input[type="checkbox"] {
    margin-top: 3px;
    width: 14px;
    height: 14px;
    accent-color: #0a1f5c;
    flex-shrink: 0;
  }

  /* Submit */
  .register-body .submit-row { text-align: center; }
  .register-body .submit-btn {
    background: linear-gradient(90deg, #0a1f5c 0%, #344b8f 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 13px 56px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 3px 12px rgba(244,123,32,0.3);
  }
  .register-body .submit-btn:hover { opacity: 0.92; transform: translateY(-1px); }
  .register-body .submit-btn:active { transform: translateY(0); }

  .register-body .dob-wrapper { position: relative; }
  .register-body .dob-wrapper input { padding-right: 36px; }
  .register-body .dob-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
  }

  .otp-modal {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
        }

        .otp-modal.d-none {
            display: none !important;
        }

        .otp-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 99998;
        }

        .otp-modal-dialog {
            position: relative;
            width: min(100%, 440px);
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
            overflow: hidden;
            z-index: 99999;
        }

        .otp-modal-header,
        .otp-modal-footer {
            padding: 18px 22px;
        }

        .otp-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #ececec;
        }

        .otp-modal-body {
            padding: 20px 22px 24px;
        }

        .otp-modal-close,
        .otp-modal-secondary {
            border: none;
            background: transparent;
            cursor: pointer;
        }

        .otp-modal-secondary {
            color: #333;
            padding: 10px 18px;
            border-radius: 8px;
            background: #f2f2f2;
        }

        .otp-modal-body label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .otp-modal-body input {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 16px;
        }

        .otp-modal-status {
            min-height: 22px;
            margin-top: 12px;
        }

        /* INPUT + BUTTON GROUP */

.verify-group{
    display:flex;
    align-items:center;
    width:100%;
    border:1px solid #dcdfe6;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
    height:40px;
}

.verify-group input{
    flex:1;
    border:none !important;
    outline:none;
    padding:0 18px;
    height:100%;
    font-size:16px;
    background:#fff;
}

.verify-group input:disabled{
    background:#f8f9fb;
    color:#222;
    cursor:not-allowed;
}

.verify-btn{
    min-width:120px;
    height:100%;
    border:none;
    border-left:1px solid #dcdfe6;
    background:#fff;
    color:#2962ff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.2s;
}

.verify-btn:hover{
    background:#f5f8ff;
}

/* EDIT BUTTON */

.verify-btn.edit-mode{
    color:#ff6b00;
    background:#fff7f0;
}

/* VERIFIED STATUS */

.verify-status{
    margin-top:10px;
    font-size:15px;
    color:#16a34a;
    display:flex;
    align-items:center;
    gap:8px;
}

.verify-status.success::before{
    content:'✔';
    width:18px;
    height:18px;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
}
/* required star styling */
        .field label .required-star {
            color: #e03a3a;
            font-size: 1rem;
            margin-left: 3px;
            font-weight: 700;
        }
        /* special for agreement label - star inline */
        .agreement label .required-star {
            color: #e03a3a;
            font-size: 1rem;
            margin-left: 2px;
        }
       