* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

body {
  background: #fff;
  color: #222;
  padding-top: 64px;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url("../images/home/pos-agent.webp") top/cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.container {
  position: relative;
}

.hero-content {
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.pos_nd_left {
  /*    flex:1;*/
  color: #fff;
}

.pos_nd_left h1 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 600;
}

.pos_nd_left p {
  font-size: 18px;
  margin-bottom: 30px !important;
  color: #fff;
}

.pos_login_badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  white-space: normal;
  font-weight: normal;
}

.pos_login_badge span {
  font-size: 14px;
}

.pos_login_badge img {
  width: 40px;
  border-radius: 50%;
}

.right {
  width: 380px;
}

.login-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  color: #fff;
}

.login-card h2 {
  text-align: left;
  margin-bottom: 25px;
  font-size: 18px !important;
}

.login-card input {
  width: 100%;
  padding: 15px;
  border: none;
  outline: none;
  border-radius: 8px;
  margin-bottom: 6px;
  height: 54px !important;
}

.login-card button {
  width: 100%;
  padding: 15px;
  background: #0f2bc2;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 17px;
}

.download {
  justify-content: space-between;
  align-items: center;
}

.account {
  font-size: 15px;
  text-align: center;
  color: #fff;
}

.sign__up {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
}

.condition {
  font-size: 12px;
  text-align: center;
  padding-top: 6px;
  padding-bottom: 6px;
  color: #fff;
}

.condition a {
  color: #fff;
  text-decoration: underline !important;
}

.features {
  max-width: 1200px;
  width: 92%;
  margin: -90px auto 60px;
  background: #fff;
  border-radius: 25px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}

.tag {
  display: inline-block;
  background: #eef5ff;
  color: #4972ff;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 14px;
}

.heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
}

.heading h2 {
  font-size: 32px;
  font-weight: 500;
}

.heading p {
  max-width: 600px;
  color: #666;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.card {
  text-align: left;
  border: 0;
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eef5ff;
  font-size: 24px;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.card p {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}

/* Tablet */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
  }
  .pos_nd_left h1 {
    font-size: 30px;
  }
  .pos_nd_left p {
    font-size: 18px;
  }
  .right {
    width: 100%;
    max-width: 508px;
  }
  .heading {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .features {
    margin-top: -40px;
  }
}
/* Mobile */
@media (max-width: 600px) {
  .hero-content {
    padding: 30px 0;
    gap: 28px;
  }
  .pos_nd_left p {
    line-height: 24px;
    margin-bottom: 22px !important;
  }
  .login-card h2 {
    margin-bottom: 6px;
  }
  .features {
    margin-top: 50px !important;
  }
  .feature {
    margin: -90px auto 0;
  }
  .pd-80 {
    padding-top: 0;
  }
  .pos_nd_left h1 {
    font-size: 26px;
  }
  .pos_nd_left p {
    font-size: 14px;
  }
  .login-card {
    padding: 12px;
  }
  .login-card h2 {
    font-size: 17px;
    text-align: center;
  }
  .features {
    padding: 30px 20px;
  }
  .heading h2 {
    font-size: 26px;
  }
  .heading p {
    font-size: 14px;
  }
  .heading {
    gap: 18px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .pos_login_badge {
    font-size: 13px;
  }
  .pos_login_badge span {
    font-size: 12px;
  }
}
/*  header css-------------------  */
.pp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 0 0;
  transition: all 0.3s ease;
}

.pp-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pp-logo {
  display: inline-flex;
  align-items: center;
}

.pp-logo img {
  max-width: 100%;
  height: 52px;
  display: block;
}

/* Right Buttons */
.pp-header-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pp-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  min-height: 28px;
  background: #f4f6fa;
  border: 1px solid #e7ebf2;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.pp-support-btn i:first-child {
  font-size: 17px;
}

.pp-support-btn i:last-child {
  font-size: 13px;
}

.pp-support-btn:hover {
  background: #eef2f7;
  color: #111;
}

.pp-register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 8px 22px;
  background: #2f5df5;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.pp-register-btn:hover {
  background: #1f4de3;
  color: #fff;
}

/* Large Desktop */
@media (min-width: 1400px) {
  .pp-logo img {
    height: 58px;
  }
}
/* Laptop */
@media (max-width: 1199px) {
  .pp-logo img {
    height: 48px;
  }
  .pp-support-btn,
  .pp-register-btn {
    min-height: 44px;
    padding: 9px 18px;
    font-size: 15px;
  }
}
/* Tablet */
@media (max-width: 991px) {
  .pp-header {
    padding: 6px 0;
  }
  .pp-logo img {
    height: 44px;
  }
  .pp-header-btns {
    gap: 10px;
  }
  .pp-support-btn,
  .pp-register-btn {
    min-height: 42px;
    padding: 8px 16px;
    font-size: 15px;
  }
}
/* Mobile */
@media (max-width: 767px) {
  .pp-header-wrap {
    flex-direction: row;
    gap: 14px;
  }
  .pp-logo {
    width: 100%;
    justify-content: start;
  }
  .pp-logo img {
    height: 42px;
  }
  .pp-header-btns {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: end;
  }
  .pp-support-btn,
  .pp-register-btn {
    flex: 1;
    min-height: 42px;
    padding: 8px 12px;
    font-size: 15px;
  }
}
/* Small Mobile */
@media (max-width: 480px) {
  .pp-header {
    padding: 10px 0;
  }
  .pp-logo img {
    height: 38px;
  }
  .pp-header-btns {
    flex-direction: row;
  }
  .pp-support-btn,
  .pp-register-btn {
    width: 100%;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 10px;
  }
  .pp-support-btn i:first-child {
    font-size: 16px;
  }
}
/* 2nd section----------------   */
.ff-payout-container {
  max-width: 1250px;
  margin: auto;
}

.payout_wrap:nth-child(1) {
  z-index: 1;
}

.payout_wrap:nth-child(2) {
  z-index: 2;
}

.payout_wrap:nth-child(3) {
  z-index: 3;
}

.payout_wrap:nth-child(4) {
  z-index: 4;
}

.payout_wrap:nth-child(5) {
  z-index: 5;
}

.ff-payout-section {
  position: relative;
  padding: 0 15px;
}

.payout_wrap {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  background: #fff;
}

.ff-payout-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: #eef5ff;
  color: #4972ff;
  border-radius: 50px;
  margin-bottom: 28px;
  font-size: 15px;
}

.ff-payout-title {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 14px;
  max-width: 650px;
}

.ff-payout-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px !important;
  max-width: 720px;
}

.ff-payout-list {
  display: flex;
  flex-direction: column;
}

.ff-payout-item {
  display: flex;
  gap: 16px;
}

.ff-payout-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #3d4b61;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.ff-payout-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
}

.ff-payout-item p {
  font-size: 14px !important;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem !important;
}

.ff-phone {
  width: 360px;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  border: 3px solid #2d73ff;
}

.ff-phone-header {
  padding: 22px;
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 22px;
  border-bottom: 1px solid #eee;
}

.ff-phone-banner {
  padding: 16px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  background: #fff;
}

.ff-phone-banner a {
  color: #0a73ff;
  font-weight: 700;
  text-decoration: none;
}

.ff-phone-image img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

.ff-balance-card {
  margin: 20px;
  background: linear-gradient(135deg, #0b6cff, #003fc5);
  border-radius: 22px;
  padding: 35px;
  text-align: center;
  color: #fff;
}

.ff-balance-card h3 {
  font-size: 32px;
  margin-bottom: 18px;
}

.ff-price {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 25px;
}

.ff-btn {
  display: block;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  color: #0054d7;
}

.ff-floating {
  position: absolute;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  animation: float 3s ease-in-out infinite;
}

.ff-gift {
  top: -5px;
  right: -35px;
}

.ff-bag {
  left: -35px;
  bottom: 80px;
}

.ff-trophy {
  bottom: -35px;
  left: 40px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 1200px) {
  .payout_wrap {
    display: block;
    padding: 0 40px;
  }
  .ff-payout-container {
    gap: 40px;
  }
  .ff-payout-title {
    font-size: 28px;
  }
  .ff-payout-desc {
    font-size: 18px;
  }
  .ff-payout-item h4 {
    font-size: 22px;
  }
  .ff-payout-item p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .pd-80 {
    padding-top: 0 !important;
  }
  .payout_wrap {
    position: inherit;
  }
  .payout_wrap {
    display: block;
    padding: 0 0;
  }
  .ff-payout-container {
    flex-direction: column;
    text-align: center;
  }
  .ff-payout-list {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .payout_wrap {
    position: inherit;
  }
  .ff-payout-section {
    padding: 10px 15px;
  }
  .ff-payout-title {
    font-size: 26px;
  }
  .ff-payout-desc {
    font-size: 14px;
  }
  .ff-phone {
    width: 100%;
    max-width: 300px;
    margin: auto;
    display: block !important;
  }
  .ff-phone-image img {
    height: auto;
  }
  .ff-balance-card h3 {
    font-size: 24px;
  }
  .ff-price {
    font-size: 40px;
  }
  .ff-btn {
    font-size: 18px;
  }
  .ff-floating {
    display: none;
  }
  .ff-payout-item h4 {
    font-size: 18px;
  }
  .ff-payout-item p {
    font-size: 14px;
  }
}
.pd-80 {
  padding-top: 50px !important;
}

/* product categories section--------------   */
.ikh-section {
  position: relative;
  background: #164cad;
  padding: 40px 0;
}

.ikh-heading {
  text-align: center;
  margin-bottom: 55px;
}

.ikh-heading h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.ikh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}

.ikh-card a {
  text-decoration: none;
  display: block;
}

.ikh-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
}

.ikh-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: 0.35s;
}

.ikh-card:hover img {
  transform: scale(1.05);
}

.ikh-content h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}

.ikh-content p {
  font-size: 14px;
  line-height: 1.75;
  color: #d5dbea;
  margin: 0;
}

.ikh-dots {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.12;
  background-image: radial-gradient(#fff 2px, transparent 2px);
  background-size: 20px 20px;
}

.ikh-dots-top {
  top: 18px;
  right: 18px;
}

.ikh-dots-bottom {
  left: 18px;
  bottom: 18px;
}

@media (max-width: 1199px) {
  .ikh-heading h2 {
    font-size: 30px;
  }
  .ikh-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .ikh-section {
    padding: 40px 0;
  }
  .ikh-heading {
    margin-bottom: 40px;
  }
  .ikh-heading h2 {
    font-size: 26px;
  }
  .ikh-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ikh-image img {
    height: 230px;
  }
  .ikh-content h3 {
    font-size: 20px;
  }
  .ikh-content p {
    font-size: 15px;
    line-height: 1.7;
  }
  .ikh-dots {
    display: none;
  }
}
/*  slider-----------  */
.ikhSwiper {
  padding-bottom: 55px;
}

.ikhSwiper .swiper-slide {
  height: auto;
}

.ikh-card {
  height: 100%;
}

.ikh-card a {
  display: block;
  text-decoration: none;
}

.ikh-image {
  overflow: hidden;
  border-radius: 18px;
}

.ikh-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.ikh-card:hover img {
  transform: scale(1.06);
}

.ikh-content {
  padding-top: 18px;
}

.ikhSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 0.4;
  background: #fff;
}

.ikhSwiper .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 20px;
  opacity: 1;
  background: #4f8cff;
}

/* FOOTEER----------------------   */
.footer-area .footer-copyright {
  background: #163fad !important;
}

.okb-footer {
  background: #2563eb;
  padding: 18px 0;
}

.okb-footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.okb-footer-copy {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.okb-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.okb-footer-links li {
  margin: 0;
}

.okb-footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.okb-footer-links a:hover {
  color: #0d2d67;
}

@media (max-width: 991px) {
  .okb-footer {
    padding: 22px 0;
  }
  .okb-footer-wrap {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .okb-footer-copy {
    white-space: normal;
  }
  .okb-footer-links {
    justify-content: center;
    gap: 12px 22px;
  }
}
@media (max-width: 575px) {
  .okb-footer-copy {
    font-size: 15px;
  }
  .okb-footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  .okb-footer-links a {
    display: block;
    font-size: 14px;
  }
}
/* map section------------------------   */
.okb-posp-growth-section {
  background: linear-gradient(135deg, #082b69, #164cad);
  padding: 50px 0;
}

.okb-posp-growth-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.okb-posp-growth-left {
  width: 48%;
}

.okb-growth-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #72a2f3;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 22px;
}

.okb-posp-growth-left h2 {
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 20px;
}

.okb-posp-growth-left h2 span {
  color: #6ea8ff;
}

.okb-growth-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 40px !important;
}

.okb-growth-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.okb-growth-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 15px 25px;
  backdrop-filter: blur(12px);
  transition: 0.35s;
}

.okb-growth-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}

.okb-large {
  grid-column: span 1;
}

.okb-full {
  grid-column: 1/-1;
}

.okb-growth-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.okb-growth-card p {
  color: #d8e6ff;
  font-size: 14px;
  margin: 0;
}

.okb-growth-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 40px;
}

.okb-growth-note i {
  color: #47d16c;
  font-size: 26px;
  margin-top: 3px;
}

.okb-growth-note p {
  color: #dfe8ff;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.okb-posp-growth-right {
  width: 52%;
  text-align: center;
}

.okb-posp-growth-right img {
  width: 62%;
  max-width: 700px;
}

/* Large */
@media (max-width: 1200px) {
  .okb-posp-growth-left h2 {
    font-size: 30px;
  }
}
/* Tablet */
@media (max-width: 992px) {
  .okb-posp-growth-wrapper {
    flex-direction: column;
  }
  .okb-posp-growth-right img {
    width: 50%;
    max-width: 700px;
  }
  .ff-phone {
    width: auto;
    display: none;
  }
  .okb-posp-growth-wrapper {
    gap: 0px;
  }
  .okb-posp-growth-left,
  .okb-posp-growth-right {
    width: 100%;
  }
  .okb-posp-growth-right {
    margin-top: 40px;
  }
}
/* Mobile */
@media (max-width: 767px) {
  .okb-posp-growth-section {
    padding: 70px 0;
  }
  .okb-posp-growth-section {
    padding: 30px 15px;
  }
  .okb-posp-growth-left h2 {
    font-size: 26px;
  }
  .okb-growth-desc {
    font-size: 14px;
  }
  .okb-growth-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .okb-large,
  .okb-full {
    grid-column: auto;
  }
  .okb-growth-card {
    padding: 8px 10px;
  }
  .okb-growth-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .okb-growth-card p {
    font-size: 14px;
    line-height: 24px;
  }
  .okb-growth-note {
    flex-direction: row;
    gap: 12px;
  }
}
/*   reliable section------------------- */
.okb-feature-section {
  padding: 90px 0;
}

.okb-feature-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.okb-feature-content {
  width: 55%;
}

.okb-feature-image {
  width: 45%;
  text-align: center;
}

.okb-feature-image img {
  max-width: 100%;
  width: 500px;
}

.okb-feature-tag {
  display: inline-block;
  background: #eef5ff;
  color: #0b4db8;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}

.okb-feature-title {
  font-size: 44px;
  line-height: 1.25;
  font-weight: 700;
  color: #0b2b55;
  margin-bottom: 18px;
}

.okb-feature-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

.okb-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.okb-feature-item {
  display: flex;
  gap: 18px;
}

.okb-check {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #0b65d8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.okb-feature-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0b2b55;
  margin-bottom: 6px;
}

.okb-feature-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

@media (max-width: 991px) {
  .okb-feature-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .okb-feature-content,
  .okb-feature-image {
    width: 100%;
  }
  .okb-feature-title {
    font-size: 34px;
  }
  .okb-feature-image img {
    width: 350px;
  }
}
@media (max-width: 576px) {
  .okb-feature-section {
    padding: 70px 0;
  }
  .okb-feature-title {
    font-size: 28px;
  }
  .okb-feature-item {
    gap: 15px;
  }
  .okb-check {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 14px;
  }
  .okb-feature-item h4 {
    font-size: 18px;
  }
  .okb-feature-item p {
    font-size: 15px;
  }
  .okb-feature-image img {
    width: 280px;
  }
}
/*branding partner section---------------------------*/
/* =========================
   SECTION
========================= */
.branding_partner {
  padding: 40px 10%;
  text-align: center;
  position: relative;
}

.branding_partner h2 {
  font-size: 32px;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 15px !important;
}

.branding_partner p {
  margin: 0 auto 50px !important;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   DESKTOP GRID
========================= */
.branding_partner .partner-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 25px;
}

.branding_partner .partner-slide {
  display: contents;
}

/* =========================
   CARD
========================= */
.branding_partner .partner-card {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef1f6;
  transition: 0.3s;
}

.branding_partner .partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.branding_partner .partner-card img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

/* =========================
   RESPONSIVE DESKTOP
========================= */
@media (max-width: 1200px) {
  .branding_partner .partner-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 992px) {
  .branding_partner .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .branding_partner .partner-card {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .branding_partner .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*  sell policies----------------------  */
.okb-insurer-section {
  padding: 80px 20px;
  background: #f7faff;
}

.okb-insurer-container {
  max-width: 1280px;
  margin: auto;
}

.okb-insurer-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.okb-insurer-tag {
  display: inline-block;
  background: #e9f2ff;
  color: #2563eb;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.okb-insurer-heading h2 {
  font-size: 32px;
  font-weight: 500;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.3;
}

.okb-insurer-heading p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.okb-insurer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 60px 0;
}

.okb-insurer-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.okb-insurer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.okb-insurer-card img {
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
}

.okb-insurer-footer {
  text-align: center;
}

.okb-footer-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  max-width: 900px;
  margin: 0 auto 40px;
}

.okb-register-box {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  padding: 45px;
  border-radius: 24px;
  color: #fff;
  margin-top: 40px;
}

.okb-register-box h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 25px;
}

.okb-register-btn {
  display: inline-block;
  background: #fff;
  color: #2563eb;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.okb-register-btn:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
  .okb-insurer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .okb-insurer-heading h2 {
    font-size: 32px;
  }
  .okb-register-box h3 {
    font-size: 26px;
  }
  .okb-footer-text {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .okb-insurer-section {
    padding: 60px 15px;
  }
  .okb-insurer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .okb-insurer-heading h2 {
    font-size: 26px;
  }
  .okb-insurer-heading p {
    font-size: 16px;
  }
  .okb-register-box {
    padding: 30px 20px;
  }
  .okb-register-box h3 {
    font-size: 22px;
  }
  .okb-register-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }
  .okb-footer-text {
    font-size: 16px;
  }
}
/*dropdown header css*/
.pp-support-btn.dropdown-toggle::after {
  display: none;
}

.pp-support-dropdown {
  min-width: 200px;
  border: 0;
  border-radius: 0 0 12px 12px;
  padding: 8px 0;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  top: 5px !important;
}

.pp-support-dropdown .dropdown-item {
  padding: 10px 18px;
  font-size: 14px;
  transition: 0.3s;
  color: #0d6efd;
  font-weight: 500;
}

.pp-support-dropdown .dropdown-item i {
  width: 12px;
  color: #0d6efd;
}

.pp-support-dropdown .dropdown-item:hover {
  background: #0a58c9;
  color: #0d6efd;
}

.pp-support-dropdown .dropdown-item:hover i {
  color: #fff;
}

.need_help {
  border-bottom: 1px solid #ccc;
  margin: auto;
  width: 79%;
  margin-bottom: 10px;
  padding-bottom: 8px;
}

@media (max-width: 576px) {
  .pp-support-dropdown {
    min-width: 166px;
  }
  .pp-support-dropdown .dropdown-item {
    font-size: 12px;
  }
}
.otp_timer button {
  width: auto !important;
  padding: 4px 10px !important;
  float: right;
  height: auto !important;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 12px !important;
}

.edit__btn {
  top: 67% !important;
}

.form-control.ipt_hgt {
  height: 54px !important;
}

label#phone-error.error {
  font-size: 13px !important;
}

.edit__btn:hover {
  background-color: #21ae4f;
}

.allow_perms {
  width: auto !important;
  font-size: 12px !important;
  padding: 4px 10px !important;
}

.share__icon .dropdown-menu {
  left: 0 !important;
}

.ic__wraper {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ins__catg .btn-quote {
  border-radius: 8px !important;
  margin-top: 18px;
}

.cat__insur h2 {
  text-align: left !important;
}

.ins__catg .quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.ins__catg .quote-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #e2e8f0;
}

.ins__catg .desc {
  color: #64748b !important;
}

.muted_txt {
  color: #64748b;
  font-size: 14px;
}

.catg_wrap_box {
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05) !important;
  border: 1px solid #e2e8f0;
  max-width: 1000px;
  margin: 33px auto;
  padding: 30px;
  border-radius: 26px;
  background: #fff;
}

p.paragraph-health-plans {
  color: #000000;
  font-weight: 600;
  font-size: 28px;
}

.navbar-btn .btn.dropdown-toggle img {
  width: 24px;
  height: 24px;
}

/*scss new code 2augst------------------------------------------------------*/
.health-app-wrapper {
  background: radial-gradient(circle at top, #eef2ff 0%, #f8fafc 50%);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}
.health-app-wrapper .max-w-1150 {
  max-width: 1150px;
}

.icon-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.icon-avatar.bg-indigo-soft {
  background-color: #e0e7ff;
}
.icon-avatar.text-indigo {
  color: #4f46e5;
}
.icon-avatar.bg-emerald-soft {
  background-color: #d1fae5;
}
.icon-avatar.text-emerald {
  color: #10b981;
}
.icon-avatar.bg-purple-soft {
  background-color: #ede9fe;
}
.icon-avatar.text-purple {
  color: #8b5cf6;
}

.form-hero-banner .hero-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.form-hero-banner .hero-main-title {
  color: #0f172a;
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.025em;
}
.form-hero-banner .hero-sub-title {
  color: #64748b;
  font-size: 1.05rem;
}

.master-form-card {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.06), 0 10px 20px -5px rgba(15, 23, 42, 0.04);
}

.section-heading {
  color: #0f172a;
  font-weight: 600;
  font-size: 1.15rem;
}

.custom-floating-field {
  position: relative;
}
.custom-floating-field .form-control,
.custom-floating-field .form-select {
  height: 54px;
  padding: 1.35rem 0.9rem 0.35rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e293b;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  background-color: #ffffff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}
.custom-floating-field .form-control:focus,
.custom-floating-field .form-select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
  outline: none;
}
.custom-floating-field .form-control:focus ~ label, .custom-floating-field .form-control:not(:placeholder-shown) ~ label, .custom-floating-field .form-control:-webkit-autofill ~ label,
.custom-floating-field .form-select:focus ~ label,
.custom-floating-field .form-select:not(:placeholder-shown) ~ label,
.custom-floating-field .form-select:-webkit-autofill ~ label {
  transform: translateY(-0.8rem) scale(0.78);
  color: #4f46e5;
  font-weight: 700;
}
.custom-floating-field .form-control[readonly],
.custom-floating-field .form-select[readonly] {
  background-color: #f1f5f9;
  color: #64748b;
  border-color: #e2e8f0;
}
.custom-floating-field label {
  position: absolute;
  top: 0.95rem;
  left: 0.9rem;
  color: #64748b;
  font-size: 0.9rem;
  pointer-events: none;
  transform-origin: left top;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}
.custom-floating-field .autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0 0 12px 12px;
  z-index: 999;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.illness-card-toggle {
  background-color: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.illness-card-toggle:hover {
  border-color: #4f46e5;
  background-color: #ffffff;
}
.illness-card-toggle .custom-illness-switch .form-check-input {
  width: 2.75em;
  height: 1.4em;
  background-color: #cbd5e1;
  border-color: transparent;
}
.illness-card-toggle .custom-illness-switch .form-check-input:checked {
  background-color: #10b981;
  border-color: #10b981;
}

.members-section .member-header-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
}
.members-section .custom-add-btn {
  border: 1.5px dashed #4f46e5 !important;
  background-color: #ffffff;
  color: #4f46e5;
  font-weight: 600;
  border-radius: 12px;
  height: 44px;
  font-size: 0.9rem;
  padding-left: 1rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.members-section .custom-add-btn:hover {
  background-color: #e0e7ff;
}
.members-section .member-card-wrapper {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #8b5cf6;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.members-section .member-card-wrapper:hover {
  border-color: #8b5cf6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.1);
}
.members-section .member-card-wrapper .btn-delete-member {
  height: 54px;
  width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  background-color: #fef2f2;
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.members-section .member-card-wrapper .btn-delete-member:hover {
  background-color: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.btn-action-gradient {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: #ffffff;
  border: none;
  padding: 1.05rem 3.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-action-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.45);
  color: #ffffff;
}
.btn-action-gradient:disabled {
  opacity: 0.65;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

.invalid-feedback {
  font-size: 0.78rem;
  color: #ef4444;
  font-weight: 600;
  margin-top: 0.3rem;
}

/*# sourceMappingURL=home-page.css.map */
