/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rajdhani:wght@300;400;500;600;700&display=swap");
/* Local Font */
/* @font-face {
  	font-family: "Font Name";
  	src: url("../fonts/fontpath.ttf");
    } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #ff0010;
  --secondary: #0097d4;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Inter", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  display: inline-block;
  width: fit-content;
  background-color: var(--primary);
  font-size: 1rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  padding: 0.625rem;
  line-height: normal;
  border-radius: 5px;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 1.125rem 0;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 224px;
}

.navbar-nav {
  align-items: center;
  gap: 2.1875rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: #555c63;
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  position: relative;
  transition: 0.5s ease;
}

/* !NAV HEADER CSS */

/* Main Banner Css Start */

.mainbanner {
  background: url(../images/mainBnnr.webp) center/cover no-repeat;
  padding: 9rem 0 0;
}

.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 0;
  background-color: var(--primary);
  bottom: -2px;
  transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}

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

.nav-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-flex a i {
  color: #555c63;
  height: 3.125rem;
  width: 3.125rem;
  display: grid;
  place-items: center;
  border-right: 1px solid #e6eaef;
  padding-right: 1rem;
}

.headphone-imag {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 1rem;
}

.headphone-imag h5 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #555c63;
  font-family: "Inter";
}

.headphone-imag span {
  font-weight: bold;
  font-size: 1.25rem;
  display: block;
  color: #0c2139;
  margin-top: 0.25rem;
}

.main-content h1 {
  font-size: 3.75rem;
  font-weight: bold;
  color: var(--white);
  line-height: 1.1;
}

.main-content p {
  color: var(--white);
  font-size: 0.9375rem;
  margin: .5rem 0 1rem;
}

.main-content .themeBtn {
  text-transform: none;
}

.mainbanner .row+.row {
  padding: 190px 0 0 0;
}

.main-box {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding: 1.875rem 1.875rem 1.875rem 2.5rem;
  background-color: var(--white);
  width: 331px;
  border-radius: 4px 4px 0 0;
}

.main-box h4 {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #1e1e1e;
  font-family: "Inter";
  line-height: 1.6;
}

figure.main-icon {
  flex-shrink: 0;
}

.main-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-flex .main-box:last-child {
  background-color: var(--primary);
}

.main-flex .main-box:last-child h4 {
  color: var(--white);
}

/* Main Banner Css End  */

/* About Sec Css Start */
.loan-box {
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 0 10px 60px 0 rgb(0 0 0 / 10%);
}

.about-sec {
  padding: 6rem 0 0;
}

.loan-header {
  background: var(--secondary);
  position: relative;
  padding: 2.5rem;
  border-radius: 4px 4px 0 0;
}

.loan-header::after {
  content: "";
  position: absolute;
  bottom: -1.025rem;
  left: 0;
  transform: translateX(-50%);
  width: 3.75rem;
  height: 1.25rem;
  background: #0093d0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  right: -4rem;
  margin: auto;
}

.loan-section {
  padding: 2.5rem 3.125rem 3.75rem 3.125rem;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin: 0.625rem 0 0;
}

.range {
  width: 100%;
  -webkit-appearance: none;
  height: 7px;
  border-radius: 10px;
  background: var(--primary);
  outline: none;
  transition: background 0.3s ease;
  margin-bottom: 0.75rem;
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: red;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.info-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e6eaef;
  padding: 1.125rem 0 1rem;
}

.loan-btn {
  background: #c00;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  margin-top: 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.loan-btn:hover {
  background: #a00;
}

.loan-header h4 {
  font-size: 1.875rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
  text-align: center;
}

.range-labels span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #555c63;
}

.info-row span {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #555c63;
  font-family: "Inter";
}

.loan-section .info-row:nth-child(4) {
  border-bottom: unset;
}

.loan-section .themeBtn {
  width: 100%;
  text-align: center;
  padding: 1.25rem;
  color: var(--white);
  margin-top: 1.25rem;
}

.loan-header .info-row:last-child {
  border: unset;
}

.subHead {
  font-size: 0.9375rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #555c63;
  width: fit-content;
  font-family: "Inter";
  position: relative;
  line-height: 1;
}

.subHead::before {
  position: absolute;
  content: "";
  width: 2.75rem;
  height: 2px;
  background-color: var(--primary);
  right: -3.75rem;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50px;
}

.mainHead {
  font-size: 2.8125rem;
  font-weight: bold;
  color: #0c2139;
  line-height: 1.2;
  text-transform: none;
}

.about-content p {
  color: #555c63;
  line-height: 1.5;
  width: 90%;
}

.about-content p+p {
  margin: 1rem 0 1.75rem;
}

.about-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-wrapp h3 {
  font-size: 1.375rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #0c2139;
  line-height: 1.2;
}

.about-wrapp p {
  color: #555c63;
  line-height: 1.5;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-imag {
  flex-shrink: 0;
  height: 4.25rem;
  width: 4.25rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: #eff2f6;
}

.about-content .mainHead {
  margin: 0.625rem 0 0.5rem;
}

.about-loan {
  margin: -212px -30px 0 0;
}

span#totalPay {
  color: #0c2139;
}

/* About Sec Css End  */

/* Services Sec Css Start */

.services-img img {
  width: 100%;
}

.serivices-top {
  text-align: center;
  margin-bottom: 2rem;
}

.serivices-top .subHead {
  margin: 0 auto 0.625rem;
}

.services-content h2 {
  font-size: 1.75rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #0c2139;
  line-height: 1.2;
}

.services-content p {
  color: #555c63;
  line-height: 1.5;
  margin: 0.75rem 0 1.75rem;
}

.services-images {
  position: relative;
}

.services-sub {
  height: 4.375rem;
  width: 4.375rem;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background-color: var(--primary);
  position: absolute;
  right: 1.5rem;
  bottom: -2.1875rem;
}

.services-content {
  padding: 1.875rem 3.75rem 1.5rem 1.875rem;
  border-radius: 0 0 4px 4px;
}

.services-content .themeBtn {
  padding: 0.75rem 2.5rem;
}

.serivices-wrapp {
  height: 100%;
  background-color: var(--white);
  box-shadow: 0 10px 60px 0 rgb(0 0 0 / 10%);
}

.services-sec {
  padding: 6rem 0 0;
  z-index: 11;
}

.servicessub {
  position: absolute;
  left: 15%;
  bottom: 0;
  z-index: -1;
}

/* Services Sec Css End  */

/* Business Sec Css Start */

.business-sec::before {
  position: absolute;
  content: "";
  height: 840px;
  width: 100%;
  background-color: #eff2f6;
  top: -15rem;
  z-index: -1;
}

.business-sec {
  z-index: 1;
  padding: 6rem 0 8rem;
}

.businessub2 {
  position: absolute;
  left: 13.125rem;
  bottom: 11rem;
}

.businessub3 {
  position: absolute;
  right: 14.0625rem;
  top: 5.3125rem;
}

.business-sec .mainHead {
  margin-top: 0.625rem;
}

.business-sec p {
  color: #555c63;
  line-height: 1.5;
}

.business-wrapp {
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 3.125rem 3.25rem 3.125rem 3.875rem;
  border-radius: 4px;
}

.business-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #0c2139;
  font-family: "Inter";
}

.business-imag {
  flex-shrink: 0;
  height: 3.9375rem;
  width: 3.9375rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: #eff2f6;
}

.business-sec .row+.row {
  padding: 3.125rem 0 0 0;
}

/* Business Sec Css End  */

/* Play Sec Css Start */

.play-sec {
  background: url(../images/playbg.webp) center/cover fixed;
  height: 535px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.play-wrapp a i {
  background-color: #0297da;
  height: 7.1875rem;
  width: 7.1875rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.75rem;
  margin: auto;
}

.play-wrapp {
  text-align: center;
}

.play-wrapp a {
  font-size: 1.375rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
  display: block;
}

.play-wrapp a+a {
  margin: 0.625rem;
}

.play-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(2 2 238 / 50%);
  z-index: -1;
}

/* Play Sec Css End */

/* Company Sec Css Start */

.company-sec {
  background: url(../images/companybg.webp) center/cover fixed;
  margin-top: 2rem;
  background-color: #1e1e1e;
  z-index: 1;
}

.company-content .subHead {
  color: #b0c2d7;
}

.company-content .mainHead {
  color: var(--white);
  margin: 0.625rem 0;
}

.company-flex {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  margin: 1rem 0 2rem;
}

.company-img {
  flex-shrink: 0;
}

.company-flex p {
  color: #b0c2d7;
  line-height: 1.5;
  width: 59%;
}

.company-list li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #b0c2d7;
}

.company-list {
  display: flex;
  flex-flow: column wrap;
  max-height: 148px;
  gap: 0.625rem 0;
}

.company-counter {
  background-color: var(--white);
  padding: 1.5625rem 1.5625rem 1.5625rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  border-radius: 4px;
}

.company-main .company-counter+.company-counter {
  margin: 1rem 0;
}

.company-counter h5 {
  height: 3.75rem;
  width: 3.75rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Inter";
  flex-shrink: 0;
}

.company-counter p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0c2139;
  line-height: 1.3;
}

.company-sec::before {
  position: absolute;
  content: "";
  height: 700px;
  width: 980px;
  background-color: var(--secondary);
  right: 0;
  top: -4.25rem;
  z-index: -1;
  border-radius: 4px 0 0 4px;
}

.company-content {
  margin-left: -2rem;
}

/* Company Sec Css End  */

/* Testimonails Sec Css Start */

.testimonials-sec {
  background: url(../images/testimonbg.webp) center/cover fixed;
  background-color: #eff2f6;
  padding: 6rem 0 5rem;
}

.testimonials-top .mainHead {
  margin-top: 0.625rem;
}

.testimonials-top {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-wrapp {
  background-color: var(--white);
  border-left: 3px solid var(--secondary);
  padding: 2.3125em;
  position: relative;
  z-index: 1;
  height: 100%;
}

.testimonials-wrapp p {
  font-style: italic;
  color: #555c63;
  line-height: 1.5;
}

.testimonials-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
}

.testimonials-bottom h5 {
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #008fd5;
}

.testimonials-bottom h5 span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #0c2139;
  margin-top: 0.625rem;
  font-family: "Inter";
}

.testimonials-img {
  position: absolute;
  bottom: -2rem;
  left: 2.5rem;
  z-index: -1;
}

.testimonslider {
  padding-bottom: 8rem;
}

.testimonslider .swiper-pagination {
  width: fit-content;
  margin-left: auto;
  left: unset;
  right: 0;
}

.testimonslider .swiper-pagination-bullet {
  height: 0.875rem;
  width: 0.875rem;
  background-color: #0c2139;
}

.testimonslider .swiper-pagination-bullet-active {
  background: #ca1509;
}

/* Testimonails Sec Css End  */

/* Choose Sec Css Start */

.progress-section {
  margin-top: 3rem;
}

.progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.625rem;
  flex-direction: row;
  background: transparent;
}

.progress-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #0c2139;
  text-transform: capitalize;
  font-family: "Rajdhani";
}

.progress-percent {
  font-size: 14px;
  color: #333;
}

.bar-container {
  height: 5px;
  background-color: #eee;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 8px;
}

.bar-fill {
  height: 5px;
  width: 0%;
  background-color: var(--primary);
  border-radius: 5px;
  box-shadow: 0 0 8px var(--primary);
}

.choose-main p {
  color: #555c63;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.choose-main .mainHead {
  margin: 0.25rem 0;
}

.choose-wrapp a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #0c2139;
}

.choose-wrapp a i {
  font-size: 0.625rem;
  color: #0098da;
}

.choose-flex {
  display: flex;
  align-items: center;
}

.choose-flex p {
  margin: 0.25rem 0 0 0;
}

/* Choose Sec Css End  */

/* Counter Sec Css Start */

.chooseimg2 {
  position: absolute;
  right: 6.25rem;
  left: unset;
  z-index: -1;
  bottom: 0;
}

.chooseimg3 {
  right: 300px;
  position: absolute;
  top: 3.75rem;
  z-index: -1;
}

section.choose-sec {}

.choose-main {
  padding-left: 2rem;
}

.counter-wrapp h5 {
  font-size: 3.375rem;
  font-weight: bold;
  color: var(--white);
}

.counter-wrapp p {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  line-height: 1.3;
}

.counter-wrapp {
  text-align: center;
  position: relative;
}

.counter-wrapp::before {
  position: absolute;
  content: "";
  height: 42px;
  width: 2px;
  background-color: #ffffff;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50px;
}

.counter-sec {
  background: url(../images/counterbg.webp) center/cover fixed;
  background-color: #ca1509;
  padding: 5rem 0;
}

.counter-sec .row .col-md-3:last-child .counter-wrapp::before {
  background: unset;
}

/* Counter Sec Css End  */

/* Loan Sec Css Start */

.loan-content .mainHead {
  font-size: 2.75rem;
  color: var(--white);
}

.loan-sec .themeBtn {
  display: block;
  width: fit-content;
  margin-left: auto;
  padding: 1.125rem 1.875rem;
}

.loan-sec {
  background: url(../images/loanbg.webp) center/cover fixed;
  z-index: 1;
}

.loan-content h3 {
  font-family: "Inter";
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
}

.loan-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 152 218 / 63%);
  z-index: -1;
}

/* Loan Sec Css End  */

/* Blog Sec Css Start */

.blog-top {
  text-align: center;
  margin-bottom: 2.5rem;
}

.blog-top .mainHead {
  margin-top: 0.625rem;
}

.blog-img {
  position: relative;
}

.blog-img span {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: capitalize;
  background-color: var(--secondary);
  padding: 0.59rem 1.5rem;
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  border-radius: 4px;
}

.blog-list {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.blog-list li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #555c63;
}

.blog-list li a i {
  color: var(--primary);
  font-weight: bold;
}

.blog-content h4 {
  font-size: 1.75rem;
  color: #0c2139;
  font-weight: bold;
  margin: 0.75rem 0;
}

.blog-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-bottom a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #555c63;
}

.blog-bottom a i {
  color: var(--primary);
}

.blog-bottom {
  border-top: 1px solid #eeeeee;
  padding-top: 0.625rem;
}

.blog-content {
  background-color: var(--white);
  padding: 1.875rem;
  box-shadow: 0 10px 60px 0 rgb(0 0 0 / 10%);
  border-radius: 4px;
}

/* Blog Sec Css End  */

/* Footer Sec Css Start */

footer {
  position: relative;
  background-color: #1e1e1e;
  z-index: 1;
  padding: 6rem 0 0;
}

footer p {
  color: #b0c2d7;
  line-height: 1.5;
  margin: 1rem 0 1.5rem;
}

.footer-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
  padding-top: 1.5rem;
}

.footer-icon h5 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #b0c2d7;
  font-family: "Inter";
  letter-spacing: 1.2px;
}

.footer-icon h5 span {
  display: block;
  font-size: 1.375rem;
  font-weight: 600;
  font-family: "Rajdhani";
  margin-top: 0.5rem;
  color: var(--white);
  letter-spacing: 0;
}

footer h2 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-list li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #b0c2d7;
  transition: 0.6s ease;
}

.footer-list li+li {
  margin: 0.625rem 0;
}

.footer-wrapp {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-flex h4 {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #ca1509;
  font-family: "Inter";
}

.footer-flex h5 {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #b0c2d7;
  margin-top: 0.625rem;
}

.footer-wrapp+.footer-wrapp {
  border-top: 1px solid rgb(255 255 255 / 10%);
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
}

.footer-box {
  background-color: var(--white);
  padding: 2.25rem 1.875rem 1.875rem 1.875rem;
}

.footer-box h2 {
  color: #1e1e1e;
}

.footer-info li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
}

.footer-info li a i {
  color: var(--primary);
}

.footer-info li+li {
  margin: 1rem 0;
}

.footer-bottom p {
  margin: 0;
  color: var(--white);
}

.footer-social li a i {
  background-color: rgb(255 255 255 / 17%);
  height: 2.5rem;
  width: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  color: var(--white);
  transition: 0.6s ease;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  justify-content: end;
}

.footer-bottom {
  margin-top: 8.58rem;
  padding: 1rem 0;
}

footer::before {
  position: absolute;
  content: "";
  height: 6rem;
  width: 100%;
  background-color: var(--secondary);
  bottom: 0;
  z-index: -1;
}

/* Footer Sec Css End  */

/* Hover Effect Css Start */

.footer-social li a i:hover {
  background-color: var(--white);
  color: var(--black);
}

.footer-list li a:hover {
  transform: translate(10px);
}

.themeBtn:hover {
  background-color: var(--secondary);
  color: var(--white);
}

/* Hover Effect Css End  */

/* Inner Pages Css Start */
.inner-banner {
  position: relative;
}

section.play-sec.services-play {
  margin: 6.25rem 0;
}

section.services-sec.servicespage-sec .row+.row {
  padding: 1.875rem 0 0;
}

.inner-banner .overlay {
  position: absolute;
  display: flex;
  align-items: center;
  inset: 0;
}

.inner-banner .overlay h2 {
  font-size: 6.25rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
}

section.about-sec.aboutpage-sec .about-loan {
  margin: 0;
}

section.about-sec.aboutpage-sec {
  padding: 6rem 0;
}

section.choose-sec.about-choose {
  padding: 6rem 0 8rem;
}

.blog-sec.blogpage .row+.row {
  padding: 3.125rem 0 0 0;
}

section.company-sec.resource-company::before {
  height: 650px;
  top: 0;
  bottom: 0;
  margin: auto;
}

section.company-sec.resource-company {
  margin: 0;
  padding: 11rem 0;
}

section.testimonials-sec.resource-testimonials {
  padding: 7rem 0 8rem;
}

.contact-top p {
  text-transform: capitalize;
  color: #555c63;
  line-height: 2.1;
}

ul.contact-list li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3.125rem;
  z-index: 1;
}

ul.contact-list li a::before {
  position: absolute;
  content: "";
  height: 66px;
  border: 2px solid #0297da;
  width: 66px;
  transform: rotate(45deg);
  left: -24px;
  right: 0;
  bottom: 0;
  z-index: -1;
  top: -7px;
  border-radius: 10px;
}

ul.contact-list li+li {
  margin: 5rem 0;
}

ul.contact-list {
  margin-top: 5rem;
}

ul.contact-list li a i {
  font-size: 1.25rem;
  color: #000;
  font-weight: bolder;
}

ul.contact-list li a h5 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #555c63;
  font-family: "Inter";
  white-space: nowrap;
}

ul.contact-list li a h5 span {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: #0c2139;
  text-transform: none;
}

.contact-overlay {
  background-color: #0c9bdb;
  border: 1px solid #e6e6e6;
  padding: 30px 42px 34px 42px;
  border-radius: 7px;
}

.contact-overlay label {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
  font-family: "Inter";
}

form.contact-form .form-control {
  height: 65px;
  border-radius: 5px;
  background: #fff;
  outline: unset;
  box-shadow: unset;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
  font-family: "Inter";
}

form.contact-form textarea.form-control {
  height: 193px;
}

form.contact-form button {
  width: 143px;
  height: 54px;
  border: unset;
  margin-top: 1rem;
}

.contact-top {
  margin-bottom: 3rem;
}

/* Inner Pages Css End  */

.footerLogo figure {
  width: 244px;
}

/* Resources Page styling */
.dark-section {
  min-height: 500px;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  background-size: 400% 400%;
  animation: darkGradientShift 15s ease infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 40px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle background glow effect */
.dark-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100, 65, 165, 0.3), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Animated Dark Gradient */
@keyframes darkGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Heading */
h1 {
  font-size: 3.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #d0b3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1.5px;
  z-index: 1;
  position: relative;
}

/* Button Container */
.button-container {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}

/* Dark Glassmorphic Buttons */
.button {
  padding: 16px 40px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #e0d4ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(180, 140, 255, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(180, 140, 255, 0.4),
      transparent);
  transition: 0.7s;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  transform: translateY(-5px);
  background: rgba(180, 140, 255, 0.15);
  border-color: rgba(200, 160, 255, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(180, 140, 255, 0.3);
  color: #ffffff;
}

.button:active {
  transform: translateY(-2px);
}




/* CREDIT SECTION  */

.credit_check .credit_text {
  border: 1px solid #C5C5C5;
  border-radius: 5px;
  padding: 46px 38px 60px 40px;
  height: 100%;
}

.credit_check .credit_text .themeBtn {
  padding: 20px 38px;
  font-size: 1rem;
}

.credit_check h3 {
  font-size: 2.1875rem;
  font-weight: bold;
  padding-bottom: 30px;
  text-align: center;
}

.credit_check p {
  font-size: 18px;
  color: #54565C;
  padding-top: 50px;
  padding-bottom: 40px;
}

.credit_check figure img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  transition: 0.3s ease-in-out;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.blog-detail {
  background: #f9fbfd;
}

.blog-meta p {
  font-size: 0.875rem;
  color: #999;
}

.blog-content h3 {
  font-size: 1.5rem;
  color: var(--black);
  font-weight: 600;
}

.blog-detail .blog-list {
  padding-left: 1.2rem;
  display: block;
}

.blog-detail .blog-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 10px;
  color: #555;
}

.blog-detail .blog-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.privacy-policy {
  background: #f9fbfd;
}

.privacy-policy h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
}

.main-box .main-icon img {
  width: 60px;
  aspect-ratio: 1;
  filter: brightness(0) invert(1);
}

.inner-banner .main-bottom {
  position: absolute;
  bottom: 0;
}

.char {
  display: inline !important;
}

.blog-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.about-imag img,
.business-imag img {
  width: 40px;
  aspect-ratio: 1;
  object-fit: cover;
}

.inner-banner {
  height: 580px;
}

.inner-banner>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-sec .row>[class*="col-"],
.blog-sec.blogpage .row>[class*="col-"]{
  margin-bottom: 2.5rem;
}