/* https://html.themewant.com/invena/service.html
https://preview.themeforest.net/item/finazze-business-and-finance-symfony-template/full_screen_preview/59131331 */
/* auxilo.com/education-loan */
/* https://www.loansjagat.com/education-loans */

p {
  font-size: 18px !important;
}

ul li {
  line-height: 25px !important;
  margin-top: 16px !important;
}


.process-section {
  margin: 0;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

/* Dashed line (LEFT) */
.step-number::before {
  content: "";
  position: absolute;
  width: 120px;
  border-top: 1px dashed #474E52;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -2;
  animation: lineFade 1s ease forwards;
}

/* Dot / Icon (RIGHT) */


/* Hide line for first step */
.process-step:first-child::before {
  display: none;
}

.icon-box {
  width: 80px;
  height: 80px;
  background: #F3F9F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 6px;
}

.step-number {
  margin: 0 20px;
  background: #1f2a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
}

.content-box {
  background: #F3F9F5 !important;
  padding: 20px 25px;
  border-radius: 6px;
  flex: 1;
}

.content-box h4 {
  margin: 0 0 8px;
  color: #000;
  /* font-size: 18px; */
}

.content-box p {
  margin: 0;
  /* font-size: 14px; */
  color: #000;
  font-weight: 400;
}

/* Animations */
@keyframes lineFade {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 150px;
    opacity: 1;
  }
}

@keyframes dotPop {
  0% {
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }

  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .process-section {
    padding-left: 0;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .process-step::before,
  .process-step::after {
    display: none;
  }

  .step-number {
    margin: 15px 0;
  }
}




.feature-box {
  text-align: center;
  gap: 15px;
}

.feature-box .icons {
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 70px;
  border-radius: 4px;
  transition: all 0.4s;
  background: var(--ztc-bg-bg-6);
  display: inline-block;
}

.feature-box .icons img {
  transition: all 0.4s;
}

.feature-box:hover .icons {
  background: var(--ztc-bg-bg-7);
  transition: all 0.4s;
  transform: rotateY(-180deg);
}

.feature-box h3 {
  margin: 0;
  font-weight: 600;
}

.feature-box p {
  margin-top: 6px;
  color: #555;
  line-height: 1.5;
}




.documents-box {
  position: relative;
  border: 4px solid #6e9419;
  border-radius: 25px;
  padding: 50px 30px 30px;
  width: 100%;
  box-sizing: border-box;
}

.documents-title {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 3px solid #6e9419;
  border-radius: 30px;
  padding: 8px 20px;
  display: flex;
  font-size: 30px;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
}

.documents-title i {
  color: #f5b400;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.doc-column h4 {
  margin-bottom: 12px;
  font-weight: 600;
}

.doc-column ul {
  padding-left: 18px;
  margin: 0;
}

.doc-column ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
}

/* ===== Mobile Responsive ===== */
@media screen and (max-width: 900px) {
  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media screen and (max-width: 600px) {
  .documents-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .documents-box {
    padding: 60px 20px 20px;
  }

  .documents-title {
    font-size: 14px;
    padding: 6px 15px;
  }
}


.credit-card {
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.credit-card ul li {
  font-size: 18px !important;
  font-weight: 500;
}


.hero {
  margin: auto;
  background: url("assets/img/credit-score-desktop.jpg") center right / cover no-repeat;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 24px;
  padding: 40px;
  align-items: center;
  gap: 40px;
}

.hero-content h1 {
  margin-bottom: 15px;
  color: #111;
}

.hero-content h1 span {
  font-weight: 700;
}

.hero-content p {
  color: #555;
  max-width: 500px;
  line-height: 1.6;
}


.hero-buttons a {
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  margin-right: 12px;
  display: inline-block;
}



/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 30px 20px;
    background-position: center;
    text-align: center;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons a {
    display: block;
    margin: 10px auto;
    width: 100%;
    max-width: 260px;
  }
}

.card2 {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.card2:hover {
  transform: translateY(-5px);
}


/* social icon start */
.social-sticky {
  position: fixed;
  right: 1rem;
  bottom: 4.3rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  z-index: 900;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .82rem;
  box-shadow: 0 8px 18px rgba(20, 32, 40, .2);
  transition: transform .2s ease, opacity .2s ease;
}

.social-link svg {
  width: 40px;
  height: 40px;
  display: block;
}

.social-link:hover {
  transform: translateY(-2px);
  opacity: .92;
}



.social-link.whatsapp {
  background: #20b15a;
}

@media (max-width: 767px) {
  .social-sticky {
    right: .7rem;
    bottom: 4rem;
    gap: .45rem;
  }

  .video {
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    width: 100%;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: .72rem;
  }

  .social-link svg {
    width: 17px;
    height: 17px;
  }
}

/* socail icon end  */


/* step css start  */
.our-services {
  position: relative;
  background: #F2F4E9 url('../img/squre-bg-img.svg') no-repeat;
  background-position: right bottom;
  background-size: auto;
  padding: 100px 0;
}

.our-services .section-title h3 {
  background-color: #FFFFFF;
}

.service-item {
  position: relative;
  background-color: #FFFFFF;
  text-align: center;
  padding: 40px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  cursor: none;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-radius: 0px;
  background: #0E0D1B;
  transition: all 0.4s ease-in-out;
  height: 100%;
  z-index: 1;
}

.service-item:hover:before {
  top: 0;
}

.service-item::after {
  content: '';
  position: absolute;
  background-image: url('../img/squre-bg-img.svg');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  z-index: 1;
}

.our-services .col-lg-3:nth-of-type(even) .service-item {
  margin-top: 70px;
}

.service-item .icon-box {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.service-body {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.service-body h3 {
  font-size: 26px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.service-item:hover .service-body h3 {
  color: #FFFFFF;
}

.service-body p {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.service-item:hover .service-body p {
  color: #FFFFFF;
}

.service-footer a {
  position: relative;
  color: #96D055;
  text-transform: capitalize;
  padding-right: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.service-footer a:hover {
  color: #FFFFFF;
}

.service-footer a::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #96D055;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}

.service-footer a:hover:after {
  color: #FFFFFF;
}

.service-footer-btn {
  text-align: center;
  margin-top: 50px;
}

/* step css end  */


/* mbbs loan css start  */

/* mbbs loan css end  */