@charset "UTF-8";

:root {
  --primary-color: #ed3026;
  --primary-2: #2b4ea5;
  --font-color: #4a4a4a;
  --bg-color: #fff;
  --heading-color: #192544;
  --border-radius: 8px;
  --border-radius-full: 30px;
  --border-color-light: #eee;
  --iframe-filter: grayscale(0%);
  --bg-grey: #f4f4f4;
  --bg-light: #fafafb;
  --disable-color: #d8d6d6;
  --box-shadow: 0 1rem 3rem rgb(0 0 0 / 12%);
  --layer: rgb(19 25 23 / 58%);
  --footer-layer: rgb(19 25 23 / 78%);
  --bg-lightgrey: #f8f9fa;
}

* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: "Roboto", sans-serif;
  
}

.noscroll {
  min-height: 100vh;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  margin: 0;
  padding: 0;
  background: var(--bg-color);
  color: var(--font-color);
}

body a,
button,
.btn {
  cursor: pointer !important;
}

body {
  overflow-x: hidden;
}

a {
  color: var(--font-color);
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: var(--primary-color);
  text-decoration: underline;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
}

a,
a:hover,
button,
button:hover {
  text-decoration: none;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
}

.clear {
  clear: both;
}

.img-responsive {
  max-width: 100%;
  display: block;
  width: 100%;
}

.d-grid {
  display: grid;
}

button,
input,
select,
label,
li,
span {
  -webkit-appearance: none;
  outline: none;
}

a,
a:hover,
button,
button:hover {
  text-decoration: none;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
}

iframe {
  border: none;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--heading-color);
}

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 26px;
  color: var(--font-color);
  letter-spacing: 0.2px;
}

li {
  list-style-type: none;
}

.radius-image {
  border-radius: var(--border-radius);
}

.radius-image-full {
  border-radius: var(--border-radius-full);
}

/* container */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    max-width: 850px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1680px) {
  .container {
    max-width: 1400px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
    max-width: 100%;
    padding: 0 10em;
  }

  .container-fluid.header-container,
  .container-fluid.footer-container {
    padding: 0 10em !important;
  }
}

/* button style */
.btn-style {
  padding: 14px 28px;
  font-size: 15px;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  outline: none;
  border: 1px solid #ed3026;
  background: #ed3026;
  transition: all 1.8s ease-in-out;
  text-transform: capitalize;
}

.btn-style i {
  margin-right: 3px;
}

.btn-style:hover {
  color: #ed3026;
  border: 1px solid #ed3026;
  background: transparent;
}

.btn-style-2 {
  padding: 9px 28px;
}

.btn-style-3 {
  border: 1px solid #2b4ea5;
  background: #2b4ea5;
}

.btn-style-3:hover {
  border: 1px solid #2b4ea5;
  background: #fff;
  color: #2b4ea5;
}

/* Movetop */
#movetop {
  position: fixed;
  bottom: 90px;
  right: 15px;
  z-index: 9;
  font-size: 16px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  padding: 0;
}

#movetop:hover {
  opacity: 0.8;
}

/* Header */
.logo {
  width: 200px;
  height: auto;
  margin-top: -2.5em;
  transition: width 0.3s, height 0.3s;
}

.logo-container {
  transition: padding 0.3s;
}

.shrink .logo {
  width: 100px;
  height: auto;
  margin-top: 0;
}

ul.top-header-lists {
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: end;
}

ul.top-header-lists li {
  display: inline-block;
}

ul.top-header-lists li:nth-child(1):hover a {
  border-radius: 30px 0 0 30px;
}

ul.top-header-lists li a {
  color: #353535;
  font-size: 14px;
  line-height: 16px;
  background: transparent;
  border-radius: 30px;
  padding: 5px 12px !important;
  display: inline-block;
}

ul.top-header-lists li a:hover {
  color: #052c5b;
  border-radius: 0px;
}

.customer-number {
  display: flex;
  height: 26px;
  padding: 4px 10px 4px 2px;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  color: #fff;
  border: 1px solid #ddd;
}

.customer-number:hover .call-us {
  background-color: #2b4ea51f;
}

.customer-number:hover .call-us a {
  color: #2d4fa6;
}

.call-us {
  width: 26px;
  height: 26px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #2d4fa6;
  text-decoration: none;
  background-color: #c9c9c959;
  font-size: 11px;
}

.customer-number .cust-num {
  color: #000;
  font-size: 14px;
}

.header_info {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 0px 15px;
  width: 100%;
  border: 1px solid #333;
  max-width: 650px;
}

.search-icon i {
  font-size: 14px;
  color: #000;
  margin-right: 6px;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 12px;
  padding: 6px;
  color: #333;
}

.right-nav1 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 6em;
}

/* Navigation */
header.main-header {
  background: #fff;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: padding 0.3s, background-color 0.3s;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 5%);
}

.navbar-light .navbar-nav .nav-link {
  font-size: 15px;
  color: var(--primary-dark);
  font-weight: bold;
  border-left: 1px solid #eee;
  text-align: center;
  padding: 0 1em;
  color: #4a4a4a;
  font-weight: normal;
}

.navbar-light .navbar-nav li:nth-child(1) a.nav-link.home-active {
  border-left: 0;
  padding-left: 0;
}

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

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

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--primary-color);
  text-decoration: none;
  background-color: transparent;
}

/* Navigation-dropdown */
.main1_inner_drop_nav_info {
  min-width: 673px;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  background-color: var(--primary-color);
}

.dropdown-item {
  color: var(--heading-color);
}

.dropdown-item {
  font-size: 15px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--primary-color);
  text-decoration: none;
  background-color: transparent;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: center;
}

ul.submenu2 {
  display: none;
}

ul.submenu.dropdown-menu li a.dropdown-item {
  position: relative;
}

ul.submenu.dropdown-menu li:hover ul.submenu2 {
  display: block !important;
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 5%);
  width: 226px;
}

ul.submenu.dropdown-menu li:hover ul.submenu2 li a {
  font-size: 15px;
  color: var(--heading-color);
  padding: 6px 0;
  display: inline-block;
}

.submenu.dropdown-menu i.fas {
  font-size: 11px;
}

.submenu.dropdown-menu i.fas.fa-caret-down {
  display: none;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  /* position: absolute; */
  top: 166%;
  margin: 0px;
  border: none;
  border-radius: 0;
  box-shadow: 0px 20px 60px 0px rgb(0 0 0 / 15%);
  border: 1px;
}

/* mega menu */
.megamenu {
  position: static !important;
}

.megamenu .dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  border: none;
  border-radius: 0;
  top: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.megamenu .dropdown-item {
  padding: 5px 0;
  font-size: 15px;
}

.megamenu .dropdown-menu h6 {
  color: #333;
  padding: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.megamenu .dropdown-menu img {
  transition: transform 0.3s ease;
}

.dropdown-toggle::after {
  margin-left: 0em !important;
}

@media only screen and (max-width: 1150px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 0 1em;
  }
}

@media only screen and (max-width: 1045px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 0 0.5em;
  }
}

@media only screen and (max-width: 991px) {
  ul.submenu.dropdown-menu li:hover ul.submenu2 {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    box-shadow: none;
  }

  ul.submenu2 {
    display: none;
    padding-left: 20px;
    /* optional padding for indentation */
  }

  ul.submenu.dropdown-menu li:hover ul.submenu2 {
    display: block !important;
  }

  header.nav-fixed {
    height: auto;
    padding: 14px 0;
  }

  ul.submenu.dropdown-menu li:hover ul.submenu2 {
    display: block !important;
    position: static;
  }

  .navbar-light .navbar-nav .nav-link {
    font-size: 15px;
    color: var(--primary-dark);
    font-weight: bold;
    border-left: none;
    text-align: center;
    padding: 0 1em;
    color: #3d3d3d;
    font-weight: 600;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-menu-2 {
    transform: translateX(0px);
  }

  .navbar-expand-lg .navbar-nav .show > .nav-link,
  .navbar-expand-lg .navbar-nav .active > .nav-link,
  .navbar-expand-lg .navbar-nav .nav-link.show,
  .navbar-expand-lg .navbar-nav .nav-link.active,
  .navbar-expand-lg .navbar-nav .nav-link:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
  }

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

  .navbar-collapse {
    max-height: calc(100vh - 80px);
    overflow-y: scroll;
  }

  .navbar-toggler {
    padding: 0rem !important;
    border: none;
  }

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

  .navbar-collapse {
    float: left;
    text-align: left;
    width: 100%;
    background: var(--bg-color);
    padding: 20px;
    box-shadow: 0 6px 19px rgba(0, 0, 0, 0.05);
    width: 100%;
    margin-left: 1.5em;
  }

  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 4px 0;
  }

  .navbar-nav .dropdown-menu {
    text-align: center;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    display: inline-block;
    text-align: center;
    color: var(--heading-color);
  }

  ul.navbar-nav.text-center {
    max-height: 50vh;
    overflow-y: auto;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    transform: translateX(0px);
    border: 1px solid var(--border-color-light);
    /* max-height: 20vh; */
    overflow-y: auto;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu:before {
    border: 1px solid var(--border-color-light);
    border-right: none;
    border-bottom: none;
  }

  .navbar-toggler-icon {
    background-image: none;
    padding: 0;
    width: 34px;
    height: 34px;
    display: inline-block;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ddd;
    line-height: 34px;
  }

  nav.navbar.navbar-expand-lg {
    position: absolute;
    right: 12px;
    top: 0px;
    width: 100%;
  }

  .navbar-light .navbar-nav .nav-link {
    border-left: none;
  }

  button.navbar-toggler .icon-close {
    display: block;
  }

  button.navbar-toggler .icon-expand {
    display: none;
  }

  button.navbar-toggler.collapsed .icon-close {
    display: none;
  }

  button.navbar-toggler.collapsed .icon-expand {
    display: block;
  }

  .cont-ser-position {
    position: absolute;
    right: 50px;
    top: 18px;
  }

  .submenu.dropdown-menu i.fas.fa-caret-right {
    display: none;
  }

  .submenu.dropdown-menu i.fas.fa-caret-down {
    display: block;
  }

  ul.submenu.dropdown-menu li:hover ul.submenu2 li a {
    font-size: 14px;
    color: #434343;
    padding: 1px 0;
  }

  .navbar-light .navbar-nav .nav-link {
    padding: 0;
  }
}

@media (max-width: 800px) {
  ul.top-header-lists li:nth-child(1),
  ul.top-header-lists li:nth-child(2) {
    display: none;
  }
}
@media (max-width: 690px) {
  .customer-number .cust-num {
    display: none;
  }
  .customer-number {
    padding: 0;
    border: none;
  }
  .call-us {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .navbar .navbar-brand {
    font-size: 32px;
  }

  .cont-ser-position {
    top: 16px;
  }
}

/* Banner */
.banner-main {
  position: relative;
  overflow: hidden;
  min-height: calc(60vh - 80px);
}

.banner-main h3 {
  font-size: 58px;
  line-height: 68px;
  font-weight: 300;
  padding-right: 1em;
  color: #fff;
}

.banner-main h3 span {
  font-weight: 800;
}

.banner-main p {
  color: #eee;
}

.loan-banner-box {
  background: url(../images/final1.png) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  min-height: 60vh;
  justify-content: space-between;
}

.loan-banner-box::before {
  content: "";
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
  background: linear-gradient(to right, #464646b0, transparent);
}

.loan-banner-box2 {
  background: url(../images/final2.png) no-repeat center;
  background-size: cover;
}

.loan-banner-box3 {
  background: url(../images/final3.png) no-repeat center;
  background-size: cover;
}

.loan-banner-box4 {
  background: url(../images/final4.png) no-repeat center;
  background-size: cover;
}

.loan-offer-box {
  background: #004b97;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
  width: 220px;
  border-radius: 0 0 12px 12px;
  position: relative;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-top: 1px solid #fff;
  border: 1px solid #ffffff8f;
  border-top: 1px solid #fff;
}

.loan-offer-box::before {
  content: "";
  position: absolute;
  top: -61px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #004b97;
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}

.carousel-control-prev {
  left: -55px;
}

.carousel-control-next {
  right: -55px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 1.5rem;
}

.loan-offer-box h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 5px;
}

.loan-offer-box h4 span {
  color: #ffeb3b;
}

.loan-offer-box p {
  font-size: 15px;
  margin: 4px 0;
  color: #fff;
}

.loan-offer-box .highlight {
  color: #ffeb3b;
}

.loan-offer-box i {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  color: #004b97;
  line-height: 44px;
  font-size: 25px;
  position: absolute;
  top: -23px;
  left: 41%;
  text-align: center;
}

.check-mark {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 4rem;
  font-weight: 900;
  color: #ed3026;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.loan-content {
  border-radius: 0 1rem 1rem 0;
  background: linear-gradient(90deg, #e6f7f1 0%, #e9f0fa 100%);
}

.loan-content input.form-control {
  width: 100%;
  border: 1px solid var(--border-color-light);
  outline: none;
  margin-bottom: 16px;
  border-radius: var(--border-radius);
  padding: 10px 12px;
  font-size: 15px;
  background: #f7f7f7;
  border-color: #ddd;
}

i.icon-style-1 {
  color: #2b4ea5;
  background: #1f2e581f;
}

i.icon-style-2 {
  color: #ed3026;
  background: #ed30261a;
} 

/* Service Section */
h3.title-style {
  font-size: 42px;
  line-height: 52px;
  font-weight: 600;
  text-transform: capitalize;
}
h3.title-style span {
  font-weight: 200;
  color: #2b4ea5;
}
.title-heading p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
}

.middle-btn {
  text-align: center;
  margin: 3em auto 0;
}

.home-services {
  overflow: clip;
}

.box-wrap {
  padding: 40px 30px;
  border-radius: var(--border-radius-full);
  box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.03);
  background-color: #fff;
  position: relative;
  transition: all 0.5s ease 0s;
  border: 1px solid #ddd;
  height: 100%;
}

.box-wrap:hover {
  box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.1);
}

.box-wrap:hover h4.number {
  opacity: 0.2;
  transition: 0.3s ease-in-out;
}

.box-wrap h4 a {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 8px;
  display: block;
  color: var(--heading-color);
}

.box-wrap h4 a:hover {
  color: var(--primary-color);
}

.box-wrap p {
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
}
a.read {
  font-size: 12px;
  color: var(--heading-color);
  transition: 0.3s ease-in-out;
  font-weight: 400;
  margin-top: 14px;
  display: inline-block;
  text-transform: capitalize;
  border: 1px solid #b7b7b7;
  padding: 8px 20px;
  border-radius: 30px;
}

a.read:hover {
  background: #2f51a7;
  color: #fff;
  border-color: #2f51a7;
}

a.read-2:hover {
  background: #ed3026;
  color: #fff;
  border-color: #ed3026;
}

h4.number {
  position: absolute;
  font-size: 60px;
  line-height: 60px;
  right: 40px;
  top: 30px;
  opacity: 0.07;
  transition: 0.3s ease-in-out;
}

.search-box .icon {
  text-align: center;
  display: block;
  color: #7a7a7a;
}

.icon i {
  font-size: 30px;
  font-size: 28px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
}

.web-servicesblock3 {
  background: #ed302614;
}

@media (max-width: 415px) {
  h4.number {
    font-size: 50px;
  }
}

/* Working Process */
.working-process-1 .working-content {
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.working-process-1 .steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.working-process-1 .step {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  width: 220px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.working-process-1 .step:hover {
  transform: translateY(-10px);
}

.working-process-1 .step img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.working-process-1 .step-number {
  background-color: #ff5b5b;
  color: #fff;
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 50%;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.working-process-1 .step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

/* Calculator Section */
.calculator-main {
  background: #ed30260d;
}
.cal-left-style1 {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 8%);
    padding: 40px;
}
.calculator-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.calculator-left {
  flex: 1;
  min-width: 300px;
}
.credit-img img {
    max-width: 200px;
}
.calculator-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calculator-main .input-group {
  margin-bottom: 25px;
}

.calculator-main .input-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  color: #333;
}

/* Sliders with color fill */
.calculator-main input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(to right, #1e40af 0%, #ddd 0%);
  outline: none;
  -webkit-appearance: none;
  transition: background 0.3s ease;
}

.calculator-main input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1e40af;
  cursor: pointer;
}

.calculator-main .input-value {
  color: #939191;
  margin-top: 14px;
}

.calculator-main .emi-box {
  background: #f8f9ff;
  border-radius: 15px;
  padding: 20px 40px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid #e7e7e7;
}

.calculator-main .emi-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.calculator-main .emi-value {
  font-size: 26px;
  font-weight: 700;
  color: #111;
}

/* --- ROUND PROGRESS GAUGE --- */
.calculator-main .progress-container {
  position: relative;
  width: 160px;
  height: 160px;
}

.calculator-main svg {
  transform: rotate(-90deg);
}

.calculator-main circle {
  fill: none;
  stroke-width: 12;
  stroke-linecap: round;
}

.calculator-main .circle-bg {
  stroke: #eee;
}

.calculator-main .circle-progress {
  stroke: #22c55e;
  transition: stroke-dashoffset 0.5s ease, stroke 0.5s ease;
}

.calculator-main .progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.calculator-main .details {
  text-align: center;
  font-weight: 600;
  color: #333;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .calculator-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Bg Section */
.bg-content {
  background-image: url(../images/bg-banner.jpg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  z-index: 1;
}

.bg-content:before {
  content: "";
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
  background: linear-gradient(
    to right,
    rgb(37 37 37 / 30%) 0%,
    transparent 100%
  );
}

.welcome-left {
  max-width: 500px;
  padding: 40px;
  background: rgb(255 255 255 / 16%);
  border-radius: 4px;
}

h3.title-w3l {
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
}

@media (max-width: 380px) {
  .welcome-left {
    padding: 30px;
  }

  h3.title-w3l {
    font-size: 26px;
    line-height: 36px;
  }
}
/* Arrow between steps */
.steps::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  height: 2px;
  background: #dfdfdf;
  z-index: 0;
  transform: translateY(-50%);
}

.steps .step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -88px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 44px;
  color: #ff5b5b;
  z-index: 2;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
  }

  .steps .step:not(:last-child)::after {
    content: "↓";
    right: 50%;
    top: 100%;
    transform: translateX(50%);
    margin-top: 10px;
  }
}

/* Newsletter */
.newsletter-main {
  background-image: url(../images/map.png);
  background-color: #1d253b;
 background-color: #091a38;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.newsletter-main h3.title-big {
  color: #fff;
}

.newsletter-main p {
  color: #d1d1d1;
  font-size: 13px;
font-weight: 300;
}

.bottom-info {
  max-width: 700px;
  margin: 0 auto;
}

form.subscribe {
  margin-top: 25px;
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  max-width: 550px;
  margin: auto;
}

.subscribe .input-group-text {
  color: #999;
  background-color: rgb(7 21 46 / 55%);
  border-color: rgba(255, 255, 255, 0.15);
  padding: 0 15px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.subscribe input[type="email"] {
  padding: 10px 18px;
    font-size: 14px;
  line-height: 28px;
  border: 1px solid var(--border-color-light);
  outline: none;
  width: 100%;
  background: var(--bg-color);
  border-radius: 0;
  color: #fff;
  background-color: rgb(7 21 46 / 55%);
  border-color: rgba(255, 255, 255, 0.15);
  border-left: none;
}

.subscribe button.btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0 25px;
  font-size: 12px;
}

@media only screen and (max-width: 384px) {
  form.subscribe {
    grid-template-columns: 42px 1fr auto;
  }
  .subscribe button.btn {
    padding: 0 20px;
  }
  .subscribe .input-group-text {
    padding: 0 12px;
    font-size: 15px;
  }
}

/* Footer */
.footer-main {
  background: #1d253b;
  background: #091a38;
  border-top: 1px solid rgba(249, 249, 249, 0.1);
}

.footer-main h6.footer-title-29 {
      font-size: 16px;
    line-height: 26px;
    margin-bottom: 6px;
    font-weight: 600;
    position: relative;
    color: #e5e5e5;
}

a.footer-logo img {
  max-width: 150px;
}

.footer-main .navbar-brand i {
  color: var(--primary-color);
  margin-right: 5px;
  vertical-align: bottom;
}

.footer-main .footer-lists ul li,
.footer-main .midd-footer-29:nth-child(1) .footer-lists ul li:last-child {
  list-style: none;
  margin-bottom: 5px;
}

.footer-main .footer-lists ul li:last-child {
  margin-bottom: 0px;
}

.footer-main p {
  font-size: 15px;
  line-height: 28px;
  color: #b3bac5;
margin-bottom: 2px;
}

.footer-main .footer-lists ul li a,
.footer-main .footer-lists ul li p,
.copyright .footer-lists ul li a,
.footer-main p a {
  font-size: 14px;
  line-height: 24px;
  color: #b3bac5;
  font-weight: normal;
}

.footer-main .footer-lists ul li a:hover,
.copyright .footer-lists ul li a:hover,
.footer-main a:hover {
  color: #fff;
  opacity: 1;
}

.main-social-footer-29 {
  display: flex;
  gap: 8px;
}

.main-social-footer-29 a {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  background: none;
  border-radius: 50%;
  transition: 0.3s;
  background: #ffffff12;
  color: #fff;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: 1px solid #3f4554;
}

.main-social-footer-29 a:hover {
  transition: 0.3s;
  color: #fff;
  background-color: #ed3026;
}

.copyright .copy-footer-29 a {
  color: var(--primary-color);
}

.copyright .copy-footer-29 a:hover {
  color: #fff;
}

.copyright {
    padding: 1em 0;
    border-top: 1px solid rgba(249, 249, 249, 0.1);
    background: #091832;
}

.copyright p.copy-footer-29 {
  align-self: center;
  color: #7f8a94;
  font-size: 14px;
}

.footer-main ul.modeofpayment {
  display: flex;
  column-gap: 6px;
}
li.footer-payment-icons img {
    width: 100%;
}
/* Slider Services */
.grids5-info {
  background-color: #fff;
  padding: 40px 36px;
  box-shadow: 0 20px 30px rgb(240 239 239);
  text-align: center;
  position: relative;
  margin: 10px 0 40px;
  border: 1px solid #dddddd45;
  border-radius: 10px;
}

.grids5-info img {
  width: 80px;
}

.grids5-info h4 {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 23px;
  margin-top: 1em;
}

/* Scrooltop and whatsaap icon */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background-color: var(--primary-color);
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 9999;
  transition: bottom 0.3s ease-out;
  transition: 0.5s all;
}

.whatsapp-icon {
  position: fixed;
  bottom: 82px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  transition: bottom 0.3s ease-out;
  transition: 0.5s all;
  transition: opacity 0.3s ease-in-out;
}

.whatsapp-icon i {
  font-size: 24px;
  padding-top: 8px;
  color: #fff;
}

.scroll-to-top.show {
  display: block;
  /* Show when scrolled down */
}

/* breadcrumbs */
.breadcrumb_section {
  padding: 100px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/inside-banner/about-banner.png");
  z-index: 1;
  position: relative;
  z-index: 0;
}

.breadcrumb_section::before {
  content: "";
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
  background: #0a0a0a6e;
}

ol.breadcrumb.mt-2 {
  margin-bottom: 0;
}

.page_title {
  font-size: 38px;
  color: #fff;
  font-weight: 800;
}

.breadcrumb_section nav ol li.breadcrumb-item,
.breadcrumb_section nav ol li.breadcrumb-item a {
  color: #fff;
}

.breadcrumb_section nav ol li.breadcrumb-item a {
  font-weight: bold;
}

.breadcrumb_section nav ol li.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

/* Details */
.loan-section {
  max-width: 1500px;
  margin: auto;
}
.accordion-sec button.accordion-button.collapsed,
.accordion-button:not(.collapsed) {
  width: 100%;
  background: var(--bg-color);
  color: #000;
  font-size: 16px;
  padding: 0px 15px;
  outline: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  height: 60px;
  line-height: 40px;
  box-shadow: none;
  -webkit-appearance: auto;
}

.accordion-button {
  font-weight: 600;
  color: #333;
  border-radius: 10px !important;
  background-color: #f9f9f9;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  padding: 0;
}
.accordion-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.accordion-body li a {
  padding: 8px 15px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
  display:block;
}

.accordion-body li.active,
.accordion-body li.active:hover {
  background-color: #2b4ea5;
  color: #fff;
}
.accordion-body li.active a {
    color: #fff;
}
.accordion-body li:hover {
  background-color: #e4e6eb;
}
.loan-sidebar {
  position: sticky;
  top: 60px;
  z-index: 9;
  /* max-height: 0px; */
  min-height: max-content;
}
.dec-details1 {
  max-width: 1200px;
  margin: auto;
}
h4.title-sub {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-size: 20px;
}
ul.types-facility li {
  list-style: inside;
  margin-bottom: 6px;
  font-size: 16px;
}
h4.required-documents {
  text-align: center;
  font-weight: 700;
  color: var(--primary-color);
}

.doc-box {
  border: 1px solid #ddd;
  padding: 25px;
  height: 100%;
  padding: 40px 30px;
  border-radius: var(--border-radius-full);
  box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.03);
  background-color: #fff;
  position: relative;
  transition: all 0.5s ease 0s;
}
.doc-title {
  font-weight: 600;
  font-size: 18px;
      text-align: left;
}
.doc-box ul li {
  display: flex;
  align-items: baseline;
  font-size: 15px;
  margin-bottom: 10px;
  text-align: left;
}
.doc-box ul li i {
  margin-right: 6px;
  color: var(--primary-2);
}

.doc-box p {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Application Form */
.home-services,
.calculator-main {
  background: url(../images/layer2.png) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  z-index: 0;
}
.home-services::before,
.calculator-main::before {
  content: "";
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
  background: #ed302614;
}
.form-container,
form.signin-form {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 8%);
  padding: 40px;
  max-width: 1100px;
  margin: auto;
  border: 1px solid #ddd;
}
.form-container input.form-control {
  padding: 10px 12px;
  font-size: 15px;
  background: #f7f7f7;
  border-color: #ddd;
}
.form-container label.form-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

/* contact section */
.contact-block input,
.contact-block textarea {
  width: 100%;
  border: 1px solid var(--border-color-light);
  outline: none;
  margin-bottom: 16px;
  border-radius: var(--border-radius);
  padding: 10px 12px;
  font-size: 15px;
  background: #f7f7f7;
  border-color: #ddd;
}
.cont-left {
  margin-right: 1em;
}
.cont-left i {
  font-size: 18px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  color: #ed3026;
  background: #ed30261a;
}

.contact-block textarea {
  height: 120px;
  margin: 0 0 20px 0;
}

.contact-block input:focus,
.contact-block textarea:focus {
  border: 1px solid var(--primary-color);
}

.cont-details p a:hover {
  color: var(--primary-color);
}

.cont-details h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 8px;
}

.map iframe {
  -webkit-filter: var(--iframe-filter);
  -moz-filter: var(--iframe-filter);
  -ms-filter: var(--iframe-filter);
  -o-filter: var(--iframe-filter);
  filter: var(--iframe-filter);
}

.subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-style: italic;
}

/* Services-about section */
.services-main-about {
  background: url(../images/bg-about.jpg) no-repeat center fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  z-index: 1;
}

.services-main-about::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 38%);
  z-index: -1;
}

.services-main-about .ser-box-wrap {
  margin-top: 5px;
  padding: 40px 30px;
  text-align: center;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
}

.ser-box-wrap .icon i {
  font-size: 28px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
  color: #ed3026;
  background: #ed30261a;
}

.ser-box-wrap .icon.icon-middle i {
  color: #2b4ea5;
  background: #1f2e581f;
}

.services-main-about .ser-box-wrap h4 a {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-top: 25px;
  display: block;
  color: var(--heading-color);
}

.services-main-about .ser-box-wrap:hover h4 a {
  color: var(--primary-2);
}

/* Video Section */
.video-section {
  padding: 60px 0;
  background: #f8f9fa;
}
.video-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
@media (max-width: 576px) {
  video {
    height: 200px;
  }
}

/* Responsive */
@media (max-width: 1706px) {
  .btn-style-2 {
    padding: 7px 18px;
    font-size: 13px;
  }
}
@media (max-width: 1676px) {
  .right-nav1 {
    margin-left: 2em;
  }
}
@media (max-width: 1636px) {
  .right-nav1 a.btn.btn-style {
    padding: 7px 15px;
  }
}
@media (max-width: 1542px) {
  .navbar-light .navbar-nav .nav-link {
    font-size: 14px;
  }
  .customer-number .cust-num,
  ul.top-header-lists li a {
    font-size: 13px;
  }
  .banner-main h3 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 1486px) {
  .search-box input {
    width: 100px;
  }
}
@media (max-width: 1430px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 0 0.7em;
  }
  .search-box {
    padding: 0px 10px;
  }
  .search-icon i {
    font-size: 12px;
    margin-right: 4px;
  }
  .right-nav1 {
    margin-left: 0em;
  }
}
@media (max-width: 1300px) {
  .logo {
    width: 150px;
  }
  .right-nav1 a.btn.btn-style {
    padding: 6px 12px;
    font-size: 12px;
  }
  .right-nav1 {
    gap: 4px;
  }
}
@media (max-width: 1270px) {
  .search-container {
    display: none;
  }
}
@media (max-width: 1199px) {
  a.footer-logo img {
    max-width: 200px;
  }
  .footer-main p {
    line-height: 26px;
  }
  .footer-main .footer-lists ul li a,
  .footer-main .footer-lists ul li p,
  .copyright .footer-lists ul li a,
  .footer-main p a {
    font-size: 14px;
    line-height: 24px;
  }
  .footer-main .footer-lists ul li,
  .footer-main .midd-footer-29:nth-child(1) .footer-lists ul li:last-child {
    margin-bottom: 8px;
  }
  .footer-main h6.footer-title-29 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .banner-main h3 {
    font-size: 42px;
    line-height: 54px;
    padding-right: 0;
  }
  .btn-style {
    padding: 12px 26px;
    font-size: 14px;
  }
}
@media (max-width: 1050px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 0 0.5em;
  }
}
@media (max-width: 991px) {
  .customer-number .customer-number {
    font-size: 12px;
  }
  ul.top-header-lists li a {
    font-size: 12px;
    padding: 5px 6px !important;
  }
  .call-us {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
  .search-container {
    display: block;
  }
  .right-nav1 {
    z-index: 999;
    position: relative;
    margin-right: 3em;
  }
  a.footer-logo img {
    max-width: 150px;
  }
  .banner-main h3 {
    font-size: 38px;
    line-height: 50px;
  }
  h3.title-style {
    font-size: 38px;
    line-height: 48px;
  }
  .title-heading p {
    font-size: 16px;
    line-height: 26px;
  }
  .steps .step:not(:last-child)::after {
    right: -56px;
    top: 51%;
    font-size: 38px;
  }
  .megamenu .dropdown-item {
    text-align: left;
}
.megamenu .dropdown-menu h6 {
    text-align: left;
}
.megamenu .dropdown-menu img {
    display: none;
}
    .navbar-light .navbar-nav .nav-link {
        padding: 0;
    text-transform: uppercase;
    }
    .navbar-expand-lg .navbar-nav .nav-item {
        padding: 4px 0;
    }
 li.nav-item {
        border-bottom: 1px solid #eee;
    }
 li.nav-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
  .steps .step:not(:last-child)::after {
    right: 110px;
    top: 89%;
    font-size: 29px;
  }
  .working-process-1 .step {
    margin-bottom: 3em;
  }
  .steps::before {
    display: none;
  }
     .navbar-expand-lg .navbar-nav .dropdown-menu {
        min-width: auto !important;
    }
}
@media (max-width: 570px) {
  .search-container {
    display: none;
  }
  .footer-main .footer-lists ul li,
  .footer-main .midd-footer-29:nth-child(1) .footer-lists ul li:last-child {
    margin-bottom: 4px;
  }
  .footer-main h6.footer-title-29 {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 8px;
  }
  .banner-main h3 {
    font-size: 35px;
    line-height: 45px;
  }
  h3.title-style {
    font-size: 34px;
    line-height: 44px;
  }
}
@media (max-width: 448px) {
  .logo {
    width: 120px;
  }
  .right-nav1 a.btn.btn-style {
    padding: 4px 12px;
    font-size: 10px;
  }
  .navbar-toggler-icon {
    width: 28px;
    height: 28px;
    line-height: 25px;
  }
  .navbar-toggler-icon i {
    font-size: 15px;
  }
  .shrink .logo {
    width: 80px;
  }
  nav.navbar.navbar-expand-lg {
    top: -2px;
  }
  .right-nav1 {
    margin-right: 2em;
  }
  ul.top-header-lists li a {
    font-size: 11px;
    padding: 3px 4px !important;
  }
  header.main-header,
  .top-header {
    padding-top: 6px !important;
  }
  h3.title-style {
    font-size: 30px;
    line-height: 40px;
  }
  .title-heading p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 400px) {
  .banner-main h3 {
    font-size: 32px;
    line-height: 42px;
  }
}


.right-side-why {
  position: relative;
  z-index: 0;
}
.right-side-why::before {
  content: "";
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
   /* background: #0000009e; */
}
.right-side-why {
    padding: 5em !important;
}
.left-side-why {
  background: #1d253b;
}

.left-side-why p {
  color: #ddd;
}

.card-grid {
    padding: 40px;
    background: #ffffff1c;
}

.card-grid h4 {
    color: #fff;
}

.card-grid p {
    color: #eee;
}

/* === Ecosystem Section === */
.ecosystem-main {
  background: #feefee;
  position: relative;
  overflow: hidden;
}

.ecosystem-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Center Hub */
.eco-hub {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-hub-core {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #f3f6ff 100%);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
}

.eco-hub-core::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(31, 57, 127, 0.08),
    rgba(237, 48, 38, 0.05),
    transparent 100%
  );
  z-index: 0;
}

.eco-hub-core .hub-logo {
  width: 72%;
  z-index: 2;
  height: auto;
  object-fit: contain;
}

/* Connection Items */
.ecosystem-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 65px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.ecosystem-item p {
  margin: 0;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.ecosystem-item p span {
  color: #1f397f;
  font-weight: 700;
}

/* Icons */
.eco-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ed3026 0%, #1f397f 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(31, 57, 127, 0.2);
  font-size: 18px;
  transition: 0.3s;
}

/* Bigger icons on right */
.big-icon .eco-icon {
  width: 58px;
  height: 58px;
  font-size: 22px;
}

/* Hover */
.ecosystem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.ecosystem-item:hover .eco-icon {
  transform: scale(1.08);
}

/* === Symmetrical Desktop Positioning Around Center Hub === */
.ecosystem-main .top-left {
  top: 5%;
  left: 8%;
}

.ecosystem-main .top-right {
  top: 5%;
  right: 0%;
}

.ecosystem-main .middle-left {
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
}

.ecosystem-main .middle-right {
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

.ecosystem-main .bottom-left {
  bottom: 5%;
  left: -3%;
}

.ecosystem-main .bottom-right {
  bottom: 5%;
  right: 0%;
}

/* === Responsive Fixes === */

/* Tablet View (≤1200px) */
@media (max-width: 1300px) {
  .eco-hub {
    width: 300px;
    height: 300px;
  }

  .eco-hub-core {
    width: 240px;
    height: 240px;
  }

  .ecosystem-item {
    font-size: 14px;
    padding: 12px 16px;
  }

  .eco-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  .ecosystem-item {
    position: static;
    position: static;
    margin: 10px auto;
    transform: none !important;
    width: 100%;
}
.eco-hub {
    margin: 0 auto 0px auto;
}
}

/* Mobile View (≤991px) */
@media (max-width: 991px) {
  .eco-hub {
    width: 220px;
    height: 220px;
  }

  .eco-hub-core {
    width: 180px;
    height: 180px;
  }

  .eco-hub-core .hub-logo {
    width: 80%;
  }

  .ecosystem-item p {
    font-size: 14px;
    line-height: 1.4;
    order: 2;
  }

  .eco-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    order: 1;
  }

  .big-icon .eco-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
}

/* Small Mobile (≤575px) */
@media (max-width: 575px) {
  .eco-hub {
    width: 180px;
    height: 180px;
  }

  .eco-hub-core {
    width: 150px;
    height: 150px;
  }

  .ecosystem-item {
    width: 95%;
    padding: 12px 14px;
  }

  .eco-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

 .eco-content {
        grid-template-columns: 1fr;
    }
.ecosystem-item {
        margin: 7px auto;
    }
}


@media (max-width: 768px) {
  .loan-offer-box {
    display: none;
  }
  .loan-banner-box {
    min-height: 50vh;
  }
  .banner-main {
    min-height: calc(50vh - 80px);
  }
  .loan-banner-content {
    margin-top: 1em;
  }
  .carousel-control-prev {
    left: -17px;
  }
  .carousel-control-next {
    right: -17px;
  }
  .check-mark {
    left: 0px;
  }
}

.side-banner{
  background: #fff;
    padding: 10px;
}
.side-banner img {
    width: 100%;
}

/* --- Custom Slide-specific Sticker Enhancements --- */
/* --- Equal Height and Alignment Fix for Stickers --- */
.loan-offer-box {
  min-height: 260px; /* ensures consistent box height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 0 0 12px 12px;
  border: 1px solid #ffffff90;
  width: 240px;
  padding: 25px 20px;
  position: relative;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateX(50px);
}

/* Keep triangle height consistent for all boxes */
.loan-offer-box::before {
  height: 60px;
  top: -60px;
}

/* Responsive tweak for smaller devices */
@media (max-width: 992px) {
  .loan-offer-box {
    min-height: 230px;
  }
}

.loan-offer-box.active {
  opacity: 1;
  transform: translateX(0);
}

.loan-offer-box i {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  line-height: 44px;
  font-size: 22px;
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* --- Slide 1 – Blue Theme (matches primary-2) --- */
.box-blue {
  background: var(--primary-2); /* Deep blue base */
}
.box-blue i {
  color: var(--primary-2);
}
.box-blue h4 span,
.box-blue .highlight {
  color: #ffdf6e; /* soft golden highlight */
}
.box-blue::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--primary-2);
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}

/* --- Slide 2 – Muted Red Theme (matches primary-color) --- */
.box-green {
  background: var(--primary-color); /* primary red */
}
.box-green i {
  color: var(--primary-color);
}
.box-green h4 span,
.box-green .highlight {
  color: #ffd4d4; /* light pink tint for readability */
}
.box-green::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--primary-color);
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}

/* --- Slide 3 – Navy Theme (derived from primary-2 darker) --- */
.box-gold {
  background: #1f397f; /* deeper navy variation of primary-2 */
}
.box-gold i {
  color: #1f397f;
}
.box-gold h4 span,
.box-gold .highlight {
  color: #f3ce6b; /* subtle gold highlight */
}
.box-gold::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #1f397f;
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}

/* --- Slide 4 – Warm Coral Theme (soft variant of primary-color) --- */
.box-pink {
  background: #e34b3d; /* softened coral-red */
}
.box-pink i {
  color: #e34b3d;
}
.box-pink h4 span,
.box-pink .highlight {
  color: #ffe4e1; /* soft blush highlight */
}
.box-pink::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #e34b3d;
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}

/* --- Hover lift effect --- */
.loan-offer-box:hover {
  transform: translateX(0) translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* --- Sticker Entrance Animations --- */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bounceInLeft {
  0% { opacity: 0; transform: translateX(-80px); }
  60% { opacity: 1; transform: translateX(20px); }
  100% { transform: translateX(0); }
}

/* Apply animations on active slide */
.box-blue.active { animation: slideInRight 0.8s ease; }
.box-green.active { animation: fadeUp 0.8s ease; }
.box-gold.active { animation: zoomIn 0.8s ease; }
.box-pink.active { animation: bounceInLeft 0.8s ease; }

/* --- Optional: Icon Pop Animation when appearing --- */
@keyframes popIcon {
  0% { transform: scale(0.8) translateX(-50%); opacity: 0; }
  60% { transform: scale(1.2) translateX(-50%); opacity: 1; }
  100% { transform: scale(1) translateX(-50%); }
}

.loan-offer-box.active i {
  animation: popIcon 0.8s ease;
}

/* --- Consistent Text Color for readability --- */
.loan-offer-box p,
.loan-offer-box h4 {
  color: #fff;
}

/* --- Hide Stickers in Mobile View --- */
@media (max-width: 768px) {
  .loan-offer-box {
    display: none !important;
  }
}

/* ================================
   FIX: Loan Modal Visual & Layout
================================== */

/* Gradient header fix */
.loan-popup .modal-header {
  background: #4b4b4b;
  color: #fff !important;
  border-radius: 16px 16px 0 0;
  padding: 1.3rem 1rem;
  border: none;
  position: relative;
  z-index: 2;
}

/* White background applied only to body */
.loan-popup .modal-content {
  background: #fff;
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Dim background overlay */
.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.85) !important;
  opacity: 1 !important;
}

/* Title wrapping fix */
.loan-cat-title {
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 12px;
  line-height: 1.3;
  word-break: break-word;
  white-space: normal;
  text-align: left;
}

/* Align list items neatly */
.loan-popup ul.list-unstyled {
  padding-left: 0;
  margin-bottom: 0;
}

.loan-popup ul li {
  margin-bottom: 6px;
}

.loan-popup ul li a.loan-link {
  display: inline-block;
  color: var(--heading-color);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 12px;
}

.loan-popup ul li a.loan-link::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-2);
  transition: 0.3s ease;
}

.loan-popup ul li a.loan-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
  padding-left: 15px;
}

/* Modal title center alignment fix */
.loan-popup .modal-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

/* White close button */
.loan-popup .btn-close {
  filter: invert(1);
  opacity: 0.9;
}

/* Responsive */

@media (max-width: 992px) {
  .loan-popup .col-md-4 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .loan-popup .loan-cat-title i {
    display: none;
  }
  .loan-popup .modal-dialog {
    margin: 0.5rem;
  }
}

.services-intro img{
	width:700px;
}
.core-services {
    background: #ed302614;
}
ul.small-icons i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
}
ul.small-icons li {
    display: flex;
    align-items: center;
}

section.business-model ul li i {
    background: linear-gradient(135deg, #ed3026 0%, #1f397f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    margin-right: 10px;
}

.cta-section{
	background-image: url(../images/financial-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}
.cta-section:before {
    content: "";
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
        background:rgb(9 15 32 / 71%);
}
.cta-content {
    max-width: 800px;
    padding: 40px;
    background: rgb(255 255 255 / 16%);
    border-radius: 4px;
    text-align: center;
    margin: auto;
}
.cta-content p {
    color: #e9e8e8;
}

@media (max-width: 1400px) {
	.services-intro img{
    	width:100%;
	}
}
@media (max-width: 991px) {
	.services-intro img{
    	width:100%;
	}
	.services-intro .col-lg-6.text-center {
    	order: 2;
    	margin-top: 1em;
	}
	.services-intro .col-lg-6.ps-lg-5 {
    	order: 1;
	}
}


.home-services2 {
    background-attachment: fixed;
}
.side-banner {
  background: #fff;
  padding: 10px;
}
.side-banner img {
  width: 100%;
}
.dec-details1 {
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 0 1.25rem 0.0625rem #e7e7e7;
  background: #fff;
  border-radius: 30px;
  padding: 2em;
  text-align: justify;
}
.dec-details1.top-content-details p {
    margin-bottom: 16px !important;
}
.dec-details1.top-content-details h5.doc-title {
    margin-bottom: 10px;
}
/* synamic space br */
  .br-gap {
    display: block;
    height: 16px; 
    line-height: 0;
}
.details-img img {
  width: 100%;
  border-radius: 10px;
  height: 400px;
  object-fit: cover;
}
.doc-box-top {
  display: flex;
  align-items: center;
  column-gap: 10px;
  border-bottom: 1px solid #cbcbcb;
  margin-bottom: 1.5em;
  padding-bottom: 1em;
}
.doc-box-top .icon i {
  font-size: 22px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  text-align: center;
}
.side-banner2 {
  background: #fff;
  padding: 10px;
  background: url(../images/side-banner.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  z-index: 0;
  min-height: 300px;
  display: grid;
  align-items: center;
  padding: 2em;
}
.side-banner2::before {
  content: "";
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
  background: #0e0e0ead;
}
.side-banner2 h6 {
  color: #fff;
  font-weight: bold;
}
.side-banner2 p {
  color: #eee;
  font-size: 12px;
}
.side-banner2 ul li {
  font-size: 12px;
  color: #fff;
}
.side-banner2 ul li i {
  margin-right: 10px;
}
.side-banner2 a.read {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.side-banner2 a.read:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 991px) {
  .side-banner2 {
    display: none;
  }

  .loan-section .loan-card .col-lg-3.pe-lg-5 {
    order: 2;
    margin-top: 2em;
  }
}

.career-section {
  background-image: url(../images/layer2.png);
  background-color: #ed302614;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  z-index: 0;
}
.hero-career {
  padding: 4rem;
  background-color: #fff;
  border-radius: 10px;
}
.logo-badge {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-card {
  border: 0;
  border-radius: 0.7rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid #ddd;
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(16, 40, 80, 0.08);
}
.career-dec2 {
    background: #fff;
    padding: 4em 2em;
    border-radius: 10px;
}
.contact-box.sticky-lg-top {
    top: 60px;
}
@media (max-width: 768px) {
  .hero-career {
    padding: 3rem;
	}
}
@media (max-width: 567px) {
  .hero-career {
    padding: 2rem;
	}
}

.financial-section .section-title {
  color: #333;
  font-size: 46px;
  line-height: 56px;
  font-weight: 300;
}
.financial-section .section-title span {
  font-weight: bold;
}
.banner-slide {
  background-size: cover;
  background-position: center;
  padding: 40px;
  border-radius: 18px;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.banner-content-2-sub {
  color: #fff;
  max-width: 300px;
}
.banner-content-2-sub .tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  margin-bottom: 9px;
  display: inline-block;
}
.banner-content-2-sub h3 {
  color: #ffcb4a;
  font-size: 20px;
}
.banner-content-2-sub h2 {
  font-size: 27px;
  font-weight: bold;
  color: #fff;
}
.banner-content-2-sub p {
  color: #fff;
  /* background: #1e1e1e; */
  /* padding: 2px 12px; */
  border-radius: 30px;
  font-size: 12px;
  /* text-align: center; */
  margin-bottom: 2em;
  line-height: 22px;
  margin-top: 5px;
}
.banner-content-2-sub a {
  background: #fff;
  color: #000;
  font-size: 12px;
  border-radius: 30px;
  font-weight: bold;
}
.custom-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  margin: 3px;
}
.icon-box.d-flex.align-items-center img {
  width: 50px;
  margin-right: 10px;
}
.icon-box.d-flex.align-items-center p {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

/* Responsive */
@media (max-width: 768px) {
  .financial-section .section-title {
    font-size: 26px;
  }
  .banner-slide {
    min-height: 240px;
  }
}

.cibil-score-main {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 8%);
  padding: 40px;
}

.cibil-score-main h4 {
  color: #333;
  font-size: 24px;
  font-weight: bold;
}

.cibil-score-main h5 {
  color: #333;
  font-size: 18px;
  font-weight: 300;
}

.loan-box {
  display: block;
  padding: 12px;
  background:#fff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-decoration: none;
  height:100%;
}
.loan-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.loan-text {
  font-size: 15px;
  font-weight: 600;
  color: #1c294e;
  margin-top: 6px;
  line-height: 18px;
}
.icon2 i {
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
}
.modal-dialog.modal-xl.modal-dialog-centered.loans-popup {
  max-width: 1500px !important;
  padding: 1em;
}
/* Make dropdown full width */
.navbar .dropdown.megamenu {
  position: static !important;
}
.navbar .dropdown.megamenu .dropdown-menu {
  width: 100vw !important;
  left: 52% !important;
  transform: translateX(-50%) !important;
  /* top: 100%; */
  background: #efefef;
}
.megamenu .dropdown-menu h6 {
  color: #333;
  padding: 0;
  margin-bottom: 10px;
  font-size: 18px;
}
@media (max-width: 992px) {
  .navbar .dropdown.megamenu .dropdown-menu {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    padding: 15px !important;
  }
}

.columns-main-top {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 15px;
  padding-bottom: 2em;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 1200px) {
  .columns-main-top {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 992px) {
  .columns-main-top {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 768px) {
  .columns-main-top {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 560px) {
  .columns-main-top {
    grid-template-columns: repeat(3, 1fr);
  }
  .icon2 i {
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
}
.loan-text {
    font-size: 12px;
    line-height: 16px;
}
}
@media (max-width: 400px) {
  .columns-main-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1880px) {
  .navbar .dropdown.megamenu .dropdown-menu {
    left: 53% !important;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 1840px) {
  .navbar .dropdown.megamenu .dropdown-menu {
    left: 51% !important;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 1538px) {
  .navbar .dropdown.megamenu .dropdown-menu {
    left: 53% !important;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 1466px) {
  .navbar .dropdown.megamenu .dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 1346px) {
  .navbar .dropdown.megamenu .dropdown-menu {
    left: 54% !important;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 1300px) {
  .navbar .dropdown.megamenu .dropdown-menu {
    left: 60% !important;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 1250px) {
  .navbar .dropdown.megamenu .dropdown-menu {
    left: 37% !important;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 1200px) {
    .navbar .dropdown.megamenu .dropdown-menu {
        left: 41% !important;
        transform: translateX(-50%) !important;
    }
}
@media (max-width: 1085px) {
    .navbar .dropdown.megamenu .dropdown-menu {
        left: 45% !important;
        transform: translateX(-50%) !important;
    }
}
@media (max-width: 1018px) {
    .navbar .dropdown.megamenu .dropdown-menu {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}
@media (max-width: 991px) {
    .navbar .dropdown.megamenu .dropdown-menu {
        left: 0 !important;
        transform: none !important;
    }
}

.icon.icon2 img {
    width: 40px;
    display: block;
    margin: auto;
}
.modal-body{
	background: #efefef;
}

section.services-intro p, .how-it-works p, section.concept-section p, section.what-we-do p, section.main-about p, section.why-section p {
    text-align: justify;
}

.col-grid2 a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.modal-body img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1.5em;
}
.columns-main-top2 p.loan-text {
  margin: 0;
}