/********** Template CSS **********/
:root {
    --primary: #9a1b1d;
    --secondary: #F6F6F6;
    --light: #FFFFFF;
    --dark: #152440;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.btn {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 46px;
    height: 100%;
    top: 0;
    left: -30px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: transform 0.4s ease;
}

/* hide navbar */
.navbar.nav-hide {
  transform: translateY(-100%);
} 
 .navbar-toggler {
        background: #fff;
    }

.navbar-brand img{
    width: 130px !important;
    height: auto;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Barlow', sans-serif;
    padding: 35px 25px;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 25px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #e1b96f !important;
}



.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(21, 36, 64, .7); */
    z-index: 1;
}



.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.service-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
    background: #e1b96f2b !important;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    bottom: -50px;
    left: 0;
    background: var(--light);
    border-radius: 100% 100% 0 0;
    box-shadow: 0px -10px 5px #EEEEEE;
    transition: .5s;
}

.service-item:hover::after {
    bottom: -25px;
}

.service-item p {
    transition: .3s;
    font-size: 16px;
    color: #000;
}

.service-item:hover p {
    margin-bottom: 25px !important;
}

.team-item img {
    transform: scale(1.15);
    margin-left: -30px;
    transition: .5s;
}

.team-item:hover img {
    margin-left: 0;
}

.team-item .team-text {
    left: -100%;
    transition: .5s;
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -30px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
    left: 0;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}



/* ............................new code..................................... */



.loan-section {
  text-align: center;
  padding: 60px 20px;
      background: #faf0f0;
}

.loan-section h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.loan-section p {
  color: #666;
}

/* GRID */
.loan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.loan-card {
  position: relative;
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

/* HOVER MOVE */
.loan-card:hover {
  transform: translateY(-8px);
}

/* ICON BOX */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box span {
  font-size: 38px;
}

/* DIFFERENT BG COLORS */
.loan-card:nth-child(1) .icon-box { background: #fff3e6; }
.loan-card:nth-child(2) .icon-box { background: #eee6ff; }
.loan-card:nth-child(3) .icon-box { background: #e6fff5; }
.loan-card:nth-child(4) .icon-box { background: #e6f0ff; }
.loan-card:nth-child(5) .icon-box { background: #ffe6e6; }
.loan-card:nth-child(6) .icon-box { background: #fff7e6; }
.loan-card:nth-child(7) .icon-box { background: #e6ecff; }
.loan-card:nth-child(8) .icon-box { background: #e6fffa; }

/* TEXT */
.loan-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

/* EXPLORE TEXT */
.explore {
  font-size: 14px;
  font-weight: 500;
}

/* CURSOR GLOW EFFECT */
.loan-card::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

/* HOVER GLOW + BORDER COLORS */


.loan-card:nth-child(1):hover {
  border-color: #ff8c42;
}

.loan-card:nth-child(2):hover {
  border-color: #7b3fe4;
}

.loan-card:nth-child(3):hover {
  border-color: #20c997;
}

.loan-card:nth-child(4):hover {
  border-color: #3b82f6;
}

.loan-card:nth-child(5):hover {
  border-color: #ff4d4d;
}

.loan-card:nth-child(6):hover {
  border-color: #f59e0b;
}

.loan-card:nth-child(7):hover {
  border-color: #6366f1;
}

.loan-card:nth-child(8):hover {
  border-color: #14b8a6;
}




.about{
  padding: 30px 10px !important;
}

.left-img img {
    width: 100%;
    border-right: 5px solid #9a1b1d; /* right side border */
    border-radius: 10px; /* thoda smooth corner */
    box-shadow: 5px 5px 20px rgba(0,0,0,0.2); /* shadow */
}



.why-section {
    background: #9a1b1d;
    color: #fff;
    padding: 60px 0;
}

.sub-title {
    color: #ffc107;
    letter-spacing: 2px;
}

.main-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #fff;
}

.desc {
    margin-bottom: 30px;
    color: #f1f1f1;
}

.why-box {
    background: #fff;
    color: #000;
    padding: 25px;
    margin: 10px;
    border-radius: 12px;
    transition: 0.3s;
}

.icon {
    font-size: 28px;
    color: #fff;
    background: #9a1b1d;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.why-box h4 {
    font-size: 28px;
    color: #9a1b1d;
}

.why-box:hover {
    transform: translateY(-8px);
}

.services-list p {
    font-size: 14px;
    line-height: 1.8;
    color: #f8f8f8;
}




.testimo{
  padding: 40px 0;
}

.testi{
     padding: 50px 10px;
}

.testi h2{
     font-weight: 800;
     color: #9a1b1d;
     font-size: 34px;
}
.review-section {
    position: relative;
    background: #faf0f0;
    padding: 30px 0;
    border-radius: 10px;
    text-align: center;
}

.review {
    display: none;
}

.review.active {
    display: block;
}

.review-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.google-icon {
    width: 34px;
}

.stars {
    color: #ffc107;
    font-size: 18px;
}
.review h5{
  font-weight: 900 !important;
  color: #9a1b1d;
  font-size: 24px;
}
.review p {
    font-size: 16px;
    margin-bottom: 8px;
}

/* button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #9a1b1d;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 50%;
}

#prev { left: 5px;
    bottom: 50px; }

#next { right: 5px;
    bottom: 50px; } */









.servi i {
  color: #e1b96f !important;
}

.servic .btn-primary {
  background: #e1b96f !important;
}



.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
}


/* whatsp_call_icon_code */
.fixed-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Base Icon Style */
.fixed-icons .icon {
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    padding: 10px 16px;
    text-align: center;
    /* display: inline-block; */
    font-size: 26px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Phone Button */
.fixed-icons .icon.phone {
    background-color: #e1b96f ;
}

/* WhatsApp Button */
.fixed-icons .icon.whatsapp {
    background-color: #25d366;
}

/* Hover Effect */
.fixed-icons .icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.menu{
  background-color: #9a1b1d;
  border-top: 1px solid #ffffff36;
}


.inner-bg{
 background: url(../img/inner-bg.png);
}

.inner-bg a{
  color: #fff;
}
.inner-bg i{
  color: #fff !important;
}

.contact-box-area {
    gap: 20px;
}

.contact-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.contact-box i {
    font-size: 24px;
    color: #fff;
    background: #9a1b1d;
    padding: 15px;
    border-radius: 50%;
    margin-right: 15px;
}

.contact-box h5 {
    margin: 0;
    font-weight: 600;
}

.contact-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.contact-box:hover {
    transform: translateY(-5px);
}


.contact-btn {
    padding: 14px;
    background: #9a1b1d;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    transition: 0.3s;
    margin-top: 20px;
}

.contact-btn:hover {
    background: #7c1517;
    letter-spacing: 1px;
}


.marq{
  color: #000;
  font-size: 16px;
}




.testimonials{
	border: 1px solid #dbd7d7;
	border-radius:  50px 0 50px 0;
	padding: 12px;
}

.testimonials img{
	border-radius: 50px;
  width: 40px;
	
    
}

.testimonials h2{
	    font-size: 20px;
    color: #9a1b1d;
}

.testimonials i{
	font-size: 14px;
	color: orange;
}

.testimonials p{
	font-size: 16px;
    line-height: 28px;
    /* text-align: justify; */
    margin-bottom: 0;
    color: #000;
    padding-top: 6px;
    padding-bottom: 3px;
}


.service-item h3{
    font-size: 20px;
    font-weight: 600;
}

.footers{
    background-color: #9a1b1d;
    padding: 40px 0 0;
}




.back{
   padding-right: 15px !important;
}
.back1{
   padding-right: 15px !important;
   padding-left: 20px;
}




