/********** Template CSS **********/
:root {
    --primary: #004987;
    --secondary: #f36c3e;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}

.bg-orange {
    background-color: #f36c3e;
}

.bg-light-blue {
    background: linear-gradient(135deg, #f0f4f8 0%, #d6e7f0 100%);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fs-20 {
    font-size: 20px;
    font-weight: 400 !important;
}
.fs-14 {
    font-size: 14px;
    font-weight: 400 !important;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
    font-family: "Inter", sans-serif;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-family: "Inter", sans-serif;
    font-weight: 500 !important;
    font-size: 22px;
}

.font-small {
    font-size: 1rem;
}

/* section {
    position: sticky;
    top: 0;
    z-index: 1;
    background: white;
} */

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.cta {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: white;
    background: #004987;
    transition: 0.5s ease;
    box-shadow: 3px 3px 0 black;
    transform: skewX(-15deg);
    white-space: nowrap;
    width: 200px;
}

.cta-promoters {
    font-size: 16px;
    padding: 8px 16px;
}

.cta:hover {
    box-shadow: 5px 5px 0 #f36c3e;
}

.cta span {
    transform: skewX(15deg);
}

.cta span:nth-child(2) {
    margin-left: 10px;
    transition: margin 0.3s ease;
    display: flex;
    align-items: center;
}

.cta:hover span:nth-child(2) {
    margin-left: 15px;
}

.cta svg {
    height: 1.2em;
    width: auto;
}

path.one, path.two {
    transition: 0.5s;
}

path.one {
    transform: translateX(-60%);
}

path.two {
    transform: translateX(-30%);
}

.cta:hover path.one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

.cta:hover path.three {
    animation: color_anim 1s infinite 0.2s;
}

@keyframes color_anim {
    0%, 100% {
    fill: white;
    }
    50% {
    fill: #f36c3e;
    }
}

@media (max-width: 576px) {
    .cta {
    padding: 8px 20px;
    }

    .cta span:nth-child(2) {
    margin-left: 15px;
    }

    .cta:hover span:nth-child(2) {
    margin-left: 30px;
    }
}




.btn-explore {
    position: relative;
    overflow: hidden;
    background-color: #004987;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border: none;
    padding: 10px 30px;
    transition: background-color 0.4s ease;
    z-index: 1;
}

.btn-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #f36c3e;
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-explore:hover::before {
  left: 0;
}

.btn-explore span {
    position: relative;
    z-index: 2;
}

.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
    background-color: var(--primary);
    border-radius: 0;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

#scrollTopWrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  z-index: 1000;
}

#scrollTopBtn {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid #004987;
  background: linear-gradient(to bottom right, #f36c3e, #004987);
}

.progress-ring {
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.3s ease;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    /* padding-top: 75px;  */
    font-size: 14px;
}

p {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

li {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

/*** Navbar ***/
.logo-img {
    height: 55px;
}

/* Fix the navbar at the top of the page */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    transition: background-color 0.3s, box-shadow 0.3s;  
}

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

/* Optional: Style changes when scrolled */
.navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--tertiary);
    font-weight: 500;
    outline: none;
    font-size: 16px;
}

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

.text-primary
{
    color: var(--primary) !important;
}

.text-secondary
{
    color: var(--secondary) !important;
}

.bg-primary
{background-color: var(--primary) !important;}



/*** Header ***/
.banner-white-bg {
    position: relative;
    padding: 40px;
    color: white;
    z-index: 1;
    overflow: hidden;
}

.banner-white-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../assets/img/banner_white_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8; /* Adjust this value (0 to 1) to control image visibility */
    z-index: -1;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
    color:#011A41
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@keyframes zoomEffect {
  from { transform: scale(1); }
  to   { transform: scale(1.2); }
}

.carousel-inner .carousel-item > img {
  animation: zoomEffect 6s ease-in-out infinite alternate;
  transform-origin: center center;
}


/* Product Overview CSS */
.overview-sec .service-card {
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    background: #fff;
    text-align: center;
    margin: 10px;
    position: relative;
}
.overview-sec .image-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.overview-sec .image-wrapper img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.overview-sec .image-wrapper:hover img {
    transform: scale(1.1);
}
/* Overlay */
.overview-sec .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.overview-sec .image-wrapper:hover .overlay {
    opacity: 1;
}
.overview-sec .overlay a {
    background: #ff6600;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}
.overview-sec .overlay a:hover {
    background: #e05500;
}
.overview-sec .service-card h5 {
    font-weight: bold;
    padding: 15px;
    margin: 0;
}
.overview-sec .slick-dots li button:before {
    font-size: 12px;
    color: #ccc;
}
.overview-sec .slick-dots li.slick-active button:before {
    color: #f36c3e;
}


.about-page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url('../../assets/img/about_banner.jpg') top left no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 77px;
    -webkit-box-shadow: 0 -3px 7px rgba(12, 12, 12, .2);
    -khtml-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -moz-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -ms-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -o-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    box-shadow: 0 -3px 7px rgba(12, 12, 12, .2);
}

.product-page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url('../../assets/img/product_banner.jpg') top left no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 77px;
    -webkit-box-shadow: 0 -3px 7px rgba(12, 12, 12, .2);
    -khtml-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -moz-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -ms-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -o-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    box-shadow: 0 -3px 7px rgba(12, 12, 12, .2);
}

.news-page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url('../../assets/img/news_banner.jpg') top left no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 77px;
    -webkit-box-shadow: 0 -3px 7px rgba(12, 12, 12, .2);
    -khtml-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -moz-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -ms-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -o-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    box-shadow: 0 -3px 7px rgba(12, 12, 12, .2);
}
.career-page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url('../../assets/img/career_banner.jpg') top left no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 77px;
    -webkit-box-shadow: 0 -3px 7px rgba(12, 12, 12, .2);
    -khtml-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -moz-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -ms-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -o-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    box-shadow: 0 -3px 7px rgba(12, 12, 12, .2);
}

.contact-page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url('../../assets/img/contact_banner.jpg') top left no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 77px;
    -webkit-box-shadow: 0 -3px 7px rgba(12, 12, 12, .2);
    -khtml-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -moz-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -ms-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    -o-box-shadow: 0 -3px 7px rgba(12,12,12,.2);
    box-shadow: 0 -3px 7px rgba(12, 12, 12, .2);
}

/* .about-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
} */

/* About Page CSS */
.vision-mission-section {
  margin-top: 40px;
}

.vision-mission-section .card-box {
  background: #ffffff;
  border-radius: 0;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.vision-mission-section .card-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 123, 255, 0.1), rgba(0, 200, 255, 0.2));
  transition: 0.6s;
}

.vision-mission-section .card-box:hover::before {
  left: 0;
}

.vision-mission-section .card-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.vision-mission-section .card-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
}

.vision-mission-section .card-box h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #004987;
  margin: 8px auto 15px;
  border-radius: 2px;
}

.vision-mission-section .card-box p,
.vision-mission-section .card-box ul li {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

.vision-mission-section .card-box ul {
  padding-left: 18px;
}

.vision-mission-section .tagline {
  text-align: center;
  font-size: 18px;
  color: #007bff;
}

.vision-mission-section .heading-icon {
  color: #004987;
  margin-right: 8px;
  font-size: 1.2em;
  vertical-align: middle;
  transition: transform 0.3s ease, color 0.3s ease;
}

.vision-mission-section .card-box:hover .heading-icon {
  color: #0056b3;
  transform: scale(1.2);
}


.page-title
{text-shadow: 0 0 20px #fff, 0 0 30px #ffffff, 0 0 40px #ffffff, 0 0 50px #ffffff, 0 0 60px #ffffff, 0 0 70px #ffffff, 0 0 80px #ffffff;}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}

.mission .info-box {
    text-align: center;
    padding: 30px 15px;
}
.mission .info-box img {
    max-width: 80px;
    margin-bottom: 20px;
}
.mission .info-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
}
.mission .info-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 300px;
    margin: auto;
}
.mission .info-divider {
    width: 40px;
    height: 2px;
    background-color: #0dcaf0;
    margin: 10px auto;
}

/*** Process css ***/
.process-box {
    display: flex;
    /* align-items: center; */
    gap: 15px;
    background-color: transparent;
    padding: 10px;
}
.process-icon {
    background-color: #f5f5f5;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
}
.process-text h6 {
    font-weight: 700;
    color: #000028;
}
.process p {
    margin: 0;
    font-size: 14px;
    color: #666;
}


/* EMI Calculator */
.calculator-sec {
    background: linear-gradient(to bottom, #E8ECF1, #00264D);
}

.calculator-box {
    background: white;
    /* background: linear-gradient(to bottom, white, transparent); */
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.left-section-calculator {
    padding: 20px;
}

.right-section-calculator {
    padding: 20px;
    background: #f2f2f2;
    /* background: linear-gradient(to top, white, transparent); */
    /* border-radius: 10px; */
}

.left-section-calculator .loan-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 20px;
}

.left-section-calculator .loan-type {
    background: #f2f2f2;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
}

.left-section-calculator .loan-type.active, .left-section-calculator .loan-type:hover {
    background: #00264d;
    color: white;
}

.amount-shortcuts {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.amount-shortcuts button {
    border: none;
    cursor: pointer;
    background-color: #f5f5f5;
    border-radius: 1000px;
    font-size: 12px;
    font-weight: 400;
    padding: 6px 12px;
    cursor: pointer;
    min-width: max-content;
    color: #7d8287;
}

.left-section-calculator input[type="number"] {
    width: 100%;
    margin: 8px 0 10px;
    border: 1px solid #ccc;
    padding: 10px 14px;
    background: #f2f2f2;
    border-radius: 0px;
}

.no-outline:focus-visible {
    outline: none;
}

.duration-toggle {
    display: inline;
    gap: 10px;
    margin-bottom: 10px;
}

.duration-btn {
    padding: 8px 15px;
    background: #e0e0e0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.duration-btn {
    background: #f2f2f2 !important;
    color: #000 !important;
    padding: 3px 8px !important;
    font-size: 12px !important;
    margin-top: 0 !important;
}

.duration-btn.active {
    background: #00264d !important;
    color: white !important;
}

.duration-btn:hover {
    border-radius: 20px;
}

.range-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: gray;
    font-size: 12px;
}

#emiResult {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.details p {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
}

.right-section-calculator .btn {
    display: block;
    padding: 12px;
    background: #00264d;
    color: white;
    border: none;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px auto 0 auto;
}

.right-section-calculator .btn.outlined {
    background: white;
    border: 2px solid #00264d;
    color: #00264d;
}

.disclaimer {
    font-size: 12px;
    color: gray;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .calculator-box {
    flex-direction: column;
    }

    /* .right-section-calculator {
    margin-top: 40px;
    } */
}

.clickable-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin: 10px 0 20px;
    font-size: 13px;
    cursor: pointer;
}

.clickable-steps span {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 4px 0;
    color: #555;
    transition: 0.3s;
}

.clickable-steps span.active {
    font-weight: bold;
    color: #f96d00;
}

.clickable-steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 1px;
    background: #ccc;
    z-index: 0;
}

.clickable-steps span::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 16px;
    width: 1px;
    background: #ccc;
    z-index: 0;
}
.slider-track {
    position: relative;
    margin-bottom: 25px;
}

.slider-line {
    height: 1px;
    background: #ccc;
    position: relative;
    top: 7px;
    left: 0;
    right: 0;
    z-index: 1;
}

.slider-fill {
      height: 2px;
      background: #f96d00;
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      transition: width 0.3s ease;
      z-index: 1;
    }

.step-circles {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.circle {
    text-align: center;
    cursor: pointer;
    /* width: 40px; */
}

.circle .dot {
    width: 14px;
    height: 14px;
    background: #ccc;
    border-radius: 50%;
    /* margin: 0 auto; */
    transition: 0.3s;
}

.circle.active .dot {
    background: #f96d00;
}

.circle .label {
    margin-top: 6px;
    font-size: 13px;
    color: #444;
    text-align: left;
}

.circle.active .label {
    font-weight: bold;
    color: #f96d00;
}
.monthly-sec {
    width: 200px;
    height: 200px;
    background: linear-gradient(to bottom right, #f36c3e, #004987);; /* Bootstrap primary blue */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 0 auto 30px auto; /* Center horizontally and add bottom margin */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.monthly-sec h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.interest-suffix {
  position: absolute;
  left: 32px;
  top: 50px;
  pointer-events: none;
  font-size: 16px;
}

/* .emi-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}
.emi-box .result-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #ddd;
}
.emi-box .amount-display {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}
.emi-box .emi-value {
    font-size: 2rem;
    font-weight: bold;
    color: #ff5722;
}
.emi-box .slider-label {
    font-weight: 500;
    margin-top: 10px;
} */

/*** Loan Process ***/
.loan-process .steps-container {
    position: relative;
    padding-left: 40px;
}

/*** Quickly Funds ***/
.quickly-funds {
    background: linear-gradient(135deg, #f0f4f8 0%, #d6e7f0 100%);
    position: relative;
}
.quickly-funds .main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 90vh;
}

.quickly-funds .left-section {
    animation: slideInLeft 1s ease forwards;
}

.quickly-funds .main-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #2d3748;
}

.quickly-funds .main-title .highlight {
    font-weight: 700;
    color: #1a202c;
}

.quickly-funds .process-flow {
    position: relative;
}

.quickly-funds .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
    cursor: pointer;
    padding: 15px 20px 0px 20px;
    border-radius: 15px;
    position: relative;
}

.quickly-funds .step.animate {
    opacity: 1;
    transform: translateX(0);
}

.quickly-funds .step:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}

.quickly-funds .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4299e1, #2b6cb0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(66, 153, 225, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quickly-funds .step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.quickly-funds .step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(66, 153, 225, 0.4);
}

.quickly-funds .step:hover .step-number::before {
    left: 100%;
}

.quickly-funds .step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a202c;
}

.quickly-funds .step-content p {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
}

.quickly-funds .connecting-line {
    position: absolute;
    left: 50px;
    top: 80px;
    width: 2px;
    height: calc(100% - 160px);
    background: linear-gradient(180deg, #4299e1, #e2e8f0);
    opacity: 0.3;
}

.quickly-funds .right-section {
    position: relative;
    animation: slideInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.quickly-funds .phone-mockup {
    position: relative;
    width: 320px;
    height: 650px;
    margin: 0 auto;
    background: #1a202c;
    border-radius: 35px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    transition: all 0.6s ease;
}

.quickly-funds .phone-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.quickly-funds .phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2b6cb0, #4299e1);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.quickly-funds .phone-header {
    padding: 20px;
    color: white;
    text-align: center;
}

.quickly-funds .status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.quickly-funds .app-icon {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2b6cb0;
    margin-right: 10px;
}

.quickly-funds .notification-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 20px;
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease 2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.quickly-funds .success-icon {
    width: 60px;
    height: 60px;
    background: #48bb78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    animation: bounce 0.6s ease 2.5s;
}

.quickly-funds .notification-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.quickly-funds .notification-text {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.5;
}

.quickly-funds .loan-number {
    background: #f7fafc;
    padding: 15px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 0.9rem;
    color: #2d3748;
    text-align: center;
    border: 2px dashed #cbd5e0;
}

.quickly-funds .apply-button {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    background: #2b6cb0;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.quickly-funds .apply-button:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(43, 108, 176, 0.3);
}

.quickly-funds .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.quickly-funds .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(66, 153, 225, 0.1);
    animation: float 8s ease-in-out infinite;
}

.quickly-funds .shape1 { width: 100px; height: 100px; top: 10%; left: 10%; animation-delay: 0s; }
.quickly-funds .shape2 { width: 60px; height: 60px; top: 20%; right: 15%; animation-delay: 2s; }
.quickly-funds .shape3 { width: 80px; height: 80px; bottom: 20%; left: 20%; animation-delay: 4s; }

.quickly-funds .progress-tracker {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 20px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quickly-funds .progress-container {
    position: relative;
    width: 500px;
}

.quickly-funds .progress-bar {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}

.quickly-funds .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4299e1, #2b6cb0);
    border-radius: 2px;
    width: 20%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.quickly-funds .progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.quickly-funds .progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quickly-funds .progress-step:hover {
    transform: translateY(-2px);
}

.quickly-funds .progress-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.quickly-funds .progress-step.active .progress-dot, .quickly-funds .progress-step.completed .progress-dot {
    background: #4299e1;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
}

.quickly-funds .progress-step.completed .progress-dot::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.quickly-funds .progress-step.active .progress-dot {
    background: #2b6cb0;
    animation: pulse-dot 2s infinite;
}

.quickly-funds .progress-label {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 8px;
    font-weight: 500;
    text-align: center;
    min-width: 70px;
}

.quickly-funds .progress-step.active .progress-label,
.quickly-funds .progress-step.completed .progress-label {
    color: #2b6cb0;
    font-weight: 600;
}

@keyframes pulse-dot {
    0%, 100% { 
        transform: scale(1.1); 
        box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
    }
    50% { 
        transform: scale(1.2); 
        box-shadow: 0 6px 20px rgba(66, 153, 225, 0.5);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: scale(1); }
    40%, 43% { transform: scale(1.2); }
    70% { transform: scale(1.1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

    @media (max-width: 1024px) {
    .quickly-funds .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .quickly-funds .main-title {
        font-size: 2.5rem;
    }

    .quickly-funds .phone-mockup {
        width: 280px;
        height: 570px;
    }

    .quickly-funds .progress-tracker {
        position: relative;
        margin-top: 40px;
        bottom: auto;
        left: auto;
        transform: none;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .quickly-funds .progress-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .quickly-funds .main-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .quickly-funds .step {
        padding: 10px 0px 0px 0px;
    }

    .quickly-funds .step-number {
        margin-left: 10px;
    }

    .quickly-funds .progress-tracker {
        padding: 15px 20px;
        width: 90% !important;
    }

    .quickly-funds .progress-container {
        width: 100%;
    }

    .quickly-funds .progress-label {
        font-size: 0.7rem;
        min-width: 50px;
    }

    .quickly-funds .progress-dot {
        width: 24px;
        height: 24px;
    }

    .quickly-funds .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

/* Vertical Line Background */
.loan-process .step-line {
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #cce6e8;
}

/* Active Line Overlay */
.loan-process .step-line-active {
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 0;
    background-color: #f36c3e;
    transition: height 0.6s ease;
}

/* Step Styles */
.loan-process {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.loan-process .step {
    position: relative;
    margin-bottom: 80px;
    cursor: pointer;
}

.loan-process .step-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #f36c3e;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: -28px;
    top: 0;
    z-index: 1;
    transition: background-color 0.3s;
}

.loan-process .step.active .step-circle {
    background-color: #f36c3e;
}

.loan-process .step h5 {
    font-weight: 600;
    color: #2b2b2b;
}
.loan-process .step p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Right Image */
.loan-process .phone-img {
    /* max-width: 250px; */
    transition: opacity 0.5s ease-in-out;
}
.fade-out {
    opacity: 0;
    }
@media (max-width: 768px) {
    .loan-process .phone-img {
        max-width: 180px;
        margin: 20px auto;
        display: block;
    }
}


/* CIBIL Score Calculator */
.cibil-score {
    background: linear-gradient(to bottom, #fff9f0, #4f6250);
}

.cibil-score .gauge-container {
    position: relative;
}
.gauge-container img {
    width: 100%;
}
.cibil-score .arrow {
    position: absolute;
    bottom: 25%;
    left: 50%;
    width: 4px;
    height: 60px;
    background-color: #004a99;
    transform-origin: bottom center;
    transition: transform 0.5s ease;
}

.cibil-score .btn-secondary {
    background-color: #ccc;
    color: #000;
    border: 1px solid #ccc !important;
}

.cibil-score .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cibil-score .btn-active {
    background-color: #004a99 !important;
    color: #fff !important;
    border: 1px solid #004a99 !important;
}

/*** Facts ***/
.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgb(4 79 124)), url(../img/bg.png);
}

.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: url(../img/form_bg.jpg);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

/* Container for hover effect */
.service-item {
    position: relative;
    overflow: hidden;
}

/* Wrap image in a relative container if needed */
.service-item img.product-img {
    transition: transform 0.5s ease, filter 0.5s ease;
    display: block;
    width: 100%;
    height: auto;
}

/* Overlay that appears on hover */
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); /* dark transparent overlay */
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Zoom and brighten effect on hover */
.service-item:hover img.product-img {
    transform: scale(1.08);
    filter: brightness(1.15);
}

/* Show overlay on hover */
.service-item:hover::before {
    opacity: 1;
}


.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}



.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-section {
    /* background-color: #282b32; */
    padding: 60px 0 160px 0;
}

.team-card-wrapper {
    position: relative;
    margin-bottom: 60px;
    transition: transform 0.3s ease;
}

.team-card-wrapper:hover {
    transform: translateY(-5px);
}

.team-card-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    /* border-radius: 10px; */
    transition: transform 0.5s ease;
    cursor: pointer;
}

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

.team-card {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    background: #282b32;
    color: #fff;
    padding: 20px;
    width: 90%;
    max-width: 100%;
    /* border-radius: 8px; */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    text-align: center;
}

.team-card h5 {
    font-weight: bold;
    margin-bottom: 5px;
}

.team-card .role {
    font-weight: bold;
    margin-bottom: 10px;
}

.team-card p {
    color: #fff;
}

.team-card .role.red {
    color: #e74c3c;
}

.team-card .role.green {
    color: #27ae60;
}

.team-card .role.orange {
    color: #e67e22;
}

.social-icons i {
    margin: 0 8px;
    color: #888;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons i:hover {
    transform: scale(1.2) rotate(5deg);
    color: #000;
}

/* About Us Team */
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-content {
    text-align: justify;
    max-height: 10.2em; /* Approx. 7 lines */
    overflow: hidden;
    position: relative;
    transition: max-height 0.6s ease;
}

.team-content.expanded {
    max-height: 1000em; /* Large enough to show full content */
}


/* .team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
} */


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}

/* Contact Form */
/* Smooth transition for floating labels */
.form-floating > label {
    transition: all 0.5s ease;
}

/* Optional: Smooth transition on input focus */
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* .contact-white-bg {
    position: relative;
    padding: 40px;
    color: white;
    z-index: 1;
    overflow: hidden;
} */

.contact-white-bg {
    background-image: url('../../assets/img/contact_white_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    /* opacity: 0.8; Adjust this value (0 to 1) to control image visibility */
    /* z-index: -1; */
}

/*** Footer ***/
.footer {
    background: linear-gradient(to bottom right, #f36c3e, #004987);
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer p {
    color: #fff;
}

.footer a, .copyright a {
    color: #fff;
    text-decoration: none;
}

.location-container, .contact-container, .email-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 14px;
}
.location-container i, .contact-container i, .email-container i {
    font-size: 20px;
    margin-right: 15px;
    margin-top: 4px;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}

.social-bg {
    display: inline-flex;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: #fff;
    text-align: center;
    margin: 0 10px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    z-index: 1;
    text-decoration: none;
    box-sizing: border-box;
}

.social-bg .social-link:first-child {
    margin-left: 0 !important;
}

.social-bg .social-link:last-child {
    margin-right: 0 !important;
}


.social-link .social-icon{
    position: relative;
    color: #262626;
    transition: .5s;
    font-size: 20px;
    line-height: 1;
    z-index: 3;
}

.social-link:hover .social-icon {
  color: #fff;
  transform: rotateY(360deg);
}

.social-bg .social-link:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: .5s;
  z-index: 2;
}

.social-link:hover:before {
  top: 0;
}

.social-bg .social-link:nth-child(1):before {
  background: #3b5999; /* Facebook Blue */
}

.social-bg .social-link:nth-child(2):before {
  background: #55acee; /* Twitter Blue */
}

.social-bg .social-link:nth-child(3):before {
  background: #dd4b39; /* YouTube Red */
}

.social-bg .social-link:nth-child(4):before {
  background: #0077b5; /* LinkedIn Blue */
}


/* Product Page CSS */

.faq-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-card:hover {
    box-shadow: 0px 6px 14px rgba(0,0,0,0.08);
}
.faq-question {
    font-weight: 600;
    font-size: 1.2rem;
}
.faq-answer {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.faq-card.active .faq-answer {
    display: block;
    max-height: 500px; /* Adjust depending on your content height */
    opacity: 1;
}
.faq-toggle {
    float: right;
    font-size: 1.6rem;
    transition: transform 0.3s;
}
.faq-card.active .faq-toggle {
    transform: rotate(180deg);
}


.cursorpoi {
    cursor: pointer;
}


/* Responsive */

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


@media only screen and (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 160% !important;
        height: 100%;
        object-fit: cover;
    }

    .display-1
    {
        font-size:35px;
        margin-left:50px;
        padding-right:40px;
    }
    .mob-margin-top {margin-top: 20px;}
}

@media only screen and (max-width: 1536px) {
    
}

@media only screen and (max-width: 1600px) {
    body {font-size: 12px;}
    .left-section-calculator .loan-type, .left-section-calculator input[type="number"] {font-size: 12px;}
    .callback::before {background-size: cover;height: 38%;}
    .interest-suffix {display: none;}
    .display-3 {font-size: 2.5rem;}
    .display-6 {font-size: 2rem;}
    .location-container, .contact-container, .email-container {font-size: 12px;}
    .footer h4, .footer h5, .overview-sec .service-card h5, .quickly-funds .step-content h3, .quickly-funds .step-number, .cta {font-size: 16px;}
    .social-link .social-icon, .footer .btn.btn-link {font-size: 14px;}
    .faq-question {font-size: 1rem;}
    .faq-answer, p, .quickly-funds .step-content p {font-size: 12px;}
    .social-link {width: 35px;height: 35px;}
    .btn-explore {font-size: 12px;padding: 6px 12px;}
    .logo-img {height: 40px;}
    /* .quickly-funds .progress-tracker {padding: 10px 30px;} */
    .quickly-funds .progress-bar {top: 10px;}
    .quickly-funds .progress-dot {width: 22px;height: 22px;}
    .quickly-funds .apply-button {font-size: 12px;padding: 14px 5px;}
    .quickly-funds .progress-tracker { position: relative;margin-top: 40px;bottom: auto;left: auto;transform: none;width: 50%; margin-left: auto;margin-right: auto;
    }
}

@media only screen and (max-width: 768px) {
    body {overflow-x: hidden;}
    p {font-size: 14px;}
    .overview-sec .py-5 {padding-top: 0 !important;} 
    .navbar a {margin-left: 1rem !important;}
    .quickly-funds .progress-tracker {width: 90% !important;}
    .display-6 {font-size: 1.5rem;}
    .display-3 {font-size: 1.5rem;margin-bottom: .5rem !important;}
    .banner-white-bg {padding: 15px;}
    .banner-white-bg p {font-size: 16px;}
    .mob-margin-bottom {margin-bottom: 15px !important;}
    .quickly-funds .phone-header {padding: 0;}
    .quickly-funds .notification-content {margin: 5px;padding: 10px;}
    .quickly-funds .apply-button {bottom: 15px;}
    .team-card-wrapper {margin-bottom: 200px;}
    .team-section {padding: 60px 0 0 0;}
    .copyright {padding: 10px 0 !important;}
    .footer{padding: 0 !important;margin: 0 !important;}
    .overview-sec .service-card {margin: 0}
    .calculator-sec, .cibil-score {padding: 0 !important;}
    .calculator-box {padding: 0;}
    .left-section-calculator h2 {font-size: 20px;}
    .results p {margin-bottom: 10px;}
    .callback {margin-top: 0 !important;}
    .callback .pt-5 {padding-top: 20px !important;}
    .quickly-funds .notification-text {font-size: 14px;margin-bottom: 10px;}
    .team-section .col-md-4, .callback .col-lg-7, .mob-abt .col-lg-6, .mob-pd-0, .content-section1 .container, .plpr-none {padding-left: 0;padding-right: 0;}
    .overview-sec {overflow: hidden;}
    .mt-66 {margin-top: 66px;}
    .mob-abt p, .step-content p {font-size: 14px !important;}
    .quickly-funds .connecting-line {left: 40px;top: 70px;}
    .footer h4 {margin-bottom: 1rem !important;}
    .contact-page-header {margin-bottom: 0 !important;}
    .content-section{padding: 0 15px;}
    .content-section1{padding-top: 30px;}
    .news-sec {padding-top: 0 !important;padding-bottom: 0 !important;}
    .product-pd {padding-top: 0 !important;padding-bottom: 0 !important;}
}

@media only screen and (max-width: 375px) {
    body {overflow-x: hidden;}
    p {font-size: 14px;}
    /* header {position: sticky;} */
    .overview-sec .py-5 {padding-top: 0 !important;}
    .navbar a {margin-left: 1rem !important;}
    .display-6 {font-size: 1.5rem;}
    .display-3 {font-size: 1.5rem;margin-bottom: .5rem !important;}
    .banner-white-bg {padding: 15px;}
    .banner-white-bg p {font-size: 16px;}
    .overview-sec .service-card {margin: 0;}
    .quickly-funds .apply-button {bottom: 15px;}
    .calculator-sec, .cibil-score {padding: 0 !important;}
    .calculator-box {padding: 0;}
    .left-section-calculator h2 {font-size: 20px;}
    .results p {margin-bottom: 10px;}
    .callback {margin-top: 0 !important;}
    .callback .pt-5 {padding-top: 20px !important;}
    .quickly-funds .notification-text {font-size: 14px;margin-bottom: 10px;}
    .team-section .col-md-4, .callback .col-lg-7, .mob-abt .col-lg-6, .mob-pd-0, .content-section1 .container, .plpr-none {padding-left: 0;padding-right: 0;}
    .overview-sec {overflow: hidden;}
    .mt-66 {margin-top: 66px;}
    .mob-abt p, .step-content p {font-size: 14px !important;}
    .quickly-funds .connecting-line {left: 37px;top: 70px;}
    .footer h4 {margin-bottom: 1rem !important;}
    .contact-page-header {margin-bottom: 0 !important;}
    .content-section {padding: 0 15px;}
    .content-section1 {padding-top: 30px;}
    .news-sec {padding-top: 0 !important;padding-bottom: 0 !important;}
    .product-pd {padding-top: 0 !important;padding-bottom: 0 !important;}
}