body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

/* home page hero section start */
.homeSliderSectionWithDynamicSlides {
  position: relative;
  height: 500px;
  overflow: hidden;
  background-color: #f0f4f8;
  width: 100%;
}
.slideContainerForDynamicTransitions {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.individualSlideWithAnimatedContent {
  min-width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigationButtonForSlideControl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2em;
  padding: 05px 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.navigationButtonForSlideControl:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}
#previousSlideNavigationButton {
  left: 20px;
}
#nextSlideNavigationButton {
  right: 20px;
}
.dotIndicatorContainerForSlides {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dotIndicatorForSlideSelection {
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.dotIndicatorForSlideSelection.active {
  background-color: #c30e0e;
  transform: scale(1.3);
}
.dotIndicatorForSlideSelection:hover {
  background-color: #c30e0e;
  transform: scale(1.3);
}
@media (max-width: 640px) {
  .homeSliderSectionWithDynamicSlides {
    height: 200px;
  }
  .individualSlideWithAnimatedContent {
    font-size: 1.5em;
  }
  .navigationButtonForSlideControl {
    font-size: 1.5em;
    padding: 8px 15px;
  }
  .dotIndicatorForSlideSelection {
    width: 10px;
    height: 10px;
  }
}

/* home page hero section end */

/* home about us section start  */
.gredge-about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

/* When visible */
.gredge-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Left side */
.gredge-about-left {
  flex: 1;
  position: relative;
  min-width: 300px;
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s ease-in-out;
}
.gredge-about-left.gredge-visible {
  opacity: 1;
  transform: translateX(0);
}

.gredge-about-main-img {
  width: 100%;
  border-radius: 5px;
  display: block;
}

.gredge-about-small-img {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 5px solid #fff;
}

.gredge-about-info-box {
  position: absolute;
  bottom: -40px;
  left: 70px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 400px;
  border-radius: 5px;
  justify-content: center;
  justify-items: center;
}

.gredge-about-info-box h3 {
  color: #830404;
  font-size: 2rem;
  margin: 0;
}

.gredge-about-info-box p {
  font-size: 0.95rem;
  color: #333;
  margin-top: 5px;
}

/* Right side */
.gredge-about-right {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s ease-in-out;
  transition-delay: 0.3s;
}
.gredge-about-right.gredge-visible {
  opacity: 1;
  transform: translateX(0);
}

.gredge-about-subtitle {
  color: #003c84;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.gredge-about-title h1 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #28168d;
  margin-bottom: 20px;
  text-align: center;
}

.gredge-about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
}

/* Buttons */
.gredge-about-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.gredge-btn-primary {
  background: #014a93;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gredge-btn-primary a {
  color: #fff;
}

.gredge-btn-primary:hover {
  background: #c30e0e;
}

.gredge-btn-play {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
}

.gredge-btn-play i {
  width: 40px;
  height: 40px;
  background: #009688;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
  .gredge-about-section {
    flex-direction: column;
    padding: 20px;
  }
  .gredge-about-title {
    font-size: 1.6rem;
  }
  .gredge-about-text {
    font-size: 1.2rem;
  }

  .gredge-about-info-box {
    position: relative;
    bottom: 0;
    margin-top: 20px;
    left: 1px;
  }

  .gredge-about-small-img {
    position: relative;
    top: -20px;
    left: 0;
    width: 120px;
  }
}
@media (max-width: 768px) {
  .gredge-about-section {
    flex-direction: column-reverse;
    padding: 20px;
  }

  .gredge-about-left {
    margin-top: 20px;
  }
}

/* home about us section end  */

/* all loan services section start  */
/* Section Styling */
.loan-services-section {
  padding: 60px 5%;
  background: #f9fbfe url("/assets/images/backgroun-all-loan-services.png")
    no-repeat top center;
  background-size: contain;
}

/* Header */
.loan-services-header {
  text-align: center;
  margin-bottom: 40px;
}

.loan-services-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
}

.loan-services-title {
  font-size: 36px;
  font-weight: bold;
  color: #0c2340;
}

/* Grid Layout */
.loan-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

/* Card Styling */
.loan-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.loan-card-title {
  font-size: 22px;
  font-weight: bold;
  color: #0c2340;
  margin-bottom: 15px;
}

.loan-card-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Button */
.loan-card-btn {
  background: #9b1500;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.loan-card-btn:hover {
  background: #c30e0e;
}

/* Icon */
.loan-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
}

.loan-card-icon img {
  width: 40px;
  height: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .loan-services-title {
    font-size: 28px;
  }
}

/* All Loan services section end  */

/* Eligibilty criteria section start  */
.eligibility-section {
  background: #c30e0e;
  padding: 60px 1%;
}

/* Header */
.eligibility-header {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.eligibility-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.eligibility-subtitle {
  font-size: 18px;
  color: #c8c8c8;
  line-height: 1.6;
}

/* Cards Container */
.eligibility-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Single Card */
.eligibility-card {
  background: #fff;
  border-radius: 30px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eligibility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon */
.eligibility-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

/* Title */
.eligibility-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #001f5b;
  margin-bottom: 8px;
}

/* Text */
.eligibility-card-text {
  font-size: 15px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .eligibility-title {
    font-size: 36px;
  }
  .eligibility-subtitle {
    font-size: 16px;
  }
}

/* Eligibility criteria section end  */

/* our feautures section start  */
/* Section */
.features-section {
  background: #f7f9fc;
  padding: 60px 8%;
}

/* Header */
.features-header {
  text-align: center;
  margin-bottom: 50px;
}

.features-subtitle {
  font-size: 16px;
  color: #555;
  font-weight: 500;
  margin-bottom: 5px;
}

.features-title {
  font-size: 42px;
  font-weight: 800;
  color: #0c2340;
  position: relative;
  display: inline-block;
}

.features-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #f6c90e;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Cards Container */
.features-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Single Card */
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Text */
.feature-content {
  max-width: 75%;
}

.feature-title {
  font-size: 20px;
  font-weight: bold;
  color: #001f5b;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.feature-text {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* Icon */
.feature-icon {
  width: 60px;
  height: 60px;
  border: 2px dotted #931e01;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: all 0.3s ease;
}

.feature-icon img {
  width: 30px;
  height: 30px;
  transition: filter 0.3s ease;
}

/* Hover Effects */
.feature-card:hover .feature-title {
  color: #a00800;
}

.feature-card:hover .feature-icon {
  background: #a00800;
  border-color: #f6c90e;
}

/* Responsive */
@media (max-width: 768px) {
  .features-title {
    font-size: 32px;
  }
  .feature-card {
    flex-direction: column;
    text-align: center;
  }
  .feature-content {
    max-width: 100%;
  }
  .feature-icon {
    margin: 15px auto 0;
  }
}

/* our features section end  */

/* calculator section start  */
.calculator-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.calculator-header {
  background: #160172;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  border-radius: 8px 8px 0 0;
}
.calculator-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.form-group {
  flex: 1 1 300px;
}
.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}
.form-group input[type="number"],
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 15px;
}
.slider {
  width: 100%;
}
.toggle-buttons {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.toggle-buttons button {
  padding: 8px 12px;
  border: 1px solid #d48c2e;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}
.toggle-buttons .active {
  background: #d48c2e;
  color: #fff;
}
.chart-container {
  flex: 1 1 400px;
  min-width: 300px;
}
canvas {
  width: 100% !important;
  height: 4-----00px !important;
}
.result-box {
  background: #160172;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}
.result-box p {
  font-size: 18px;
  margin: 8px 0;
  color: #fff;
}
.highlight {
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 768px) {
  .calculator-body {
    flex-direction: column;
  }
  .chart-container {
    flex: 1 1 230px;
  }
}

/* calculator section end  */

/* our partner logo section start */
.partners-section {
  padding: 50px 20px;
  text-align: center;
}
.partners-section h4 {
  font-size: 16px;
  color: #777;
  font-weight: 500;
  margin-bottom: 5px;
  position: relative;
}
.partners-section h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #f6b100;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  border-radius: 3px;
}
.partners-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 25px 0 40px;
  color: #1b1b1b;
}
.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}
.partner-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.partner-card img {
  max-width: 80%;
  height: 150px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partners-section h2 {
    font-size: 26px;
  }
}

/* our partner logo section end  */

/* Responsive visibility */
@media (min-width: 768px) {
  .phone-icon {
    display: none;
  }
}

a .fab.fa-whatsapp {
  color: #ffffff;
  font-size: 24px;
}
a {
  text-decoration: none;
}

.loan-card-btn a {
  text-decoration: none;
  color: #fff;
}

/* whatsapp and hone icon start  */
.floating-contact-icons-wrapper {
  position: fixed;
  right: 20px;
  top: 75%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Common Icon Style */
.floating-contact-icon-link img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid white;
  transition: transform 0.2s ease;
  animation: bounceBorder 0.6s infinite ease-in-out;
  background-color: #0056b3;
}

/* Bounce Border Animation */
@keyframes bounceBorder {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.8);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 10px 4px rgba(0, 123, 255, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.8);
  }
}

/* Hover Zoom Effect */
.floating-contact-icon-link img:hover {
  transform: scale(1.2);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .floating-contact-icon-link img {
    width: 45px;
    height: 45px;
  }
  .floating-contact-icons-wrapper {
    right: 22px;
    gap: 10px;
  }
}
/* whatsapp and phone icon end  */

/* arrow top section start  */
/* Scroll To Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: #c30e0e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}
.scroll-to-top-btn:hover {
  background: #0056b3;
  transform: scale(1.1);
}
.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

/* arrow top section end  */
