@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  
}

body {
    overflow-x: hidden;
    font-family: "Inter", sans-serif !important;
   
}

:root {
    --primary-color: #FFB800;
    --background-color: #080c16;
    --accent-color: #1d283a80;
    --box-shadow: 0 8px 32px -8px #fbbd2366;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

p{
  font-size: 14px !important;
}
h3{
  font-size: 18px !important;
  font-weight: 600;
}

strong{
  font-weight: unset !important;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

button,
a {
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.p-60 {
    padding: clamp(60px, 8vw, 100px) 0;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
}

.logo img {
    width: 120px;
}

header {
    position: unset;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all .6s;
}

header.sticky {
    position: sticky;
    top: 0;
    left: 0;
    background: #ffff;
}
.new-top{
    background-color: #18529c;
    padding: 4px;
}
.new-top span{
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
}
header .container {
    background: #fff;
    border-radius: 8px;
    padding: 10px 5px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav .navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-menu .nav-list {
    padding: 0 10px;
    padding-right: 20px;
    transition: all 1s ease;
}

/* Chevron icon */
.navbar-menu .nav-list.has-dropdown::after {
    content: "\f078";
    font-family: "fontAwesome";
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

/* Rotate when dropdown is open */
.navbar-menu .nav-list.has-dropdown.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.navbar-menu .nav-link {
    color: #000000;
    display: inline-block;
    
    transition: all .4s ease;
}
.red-navbar .nav-link{
    font-size: 14px !important;
}

.apply-btn {
    padding: 6px 14px;
    font-weight: 600;
    background-color: #c02222;
    border-radius: 8px;
    color: #ffff !important;
    box-shadow: var(--box-shadow);
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-decoration: none;
    font-size: 14px;
}

.custom-toggler {
    display: none;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-between;
}

.custom-toggler span {
    height: 3px;
    width: 100%;
    background: #000000;
    border-radius: 3px;
    transform-origin: center;
    transition: transform 0.35s ease, opacity 0.2s ease;
}

.custom-nav.open~.custom-toggler span:nth-child(1),
.custom-toggler.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.custom-nav.open~.custom-toggler span:nth-child(2),
.custom-toggler.active span:nth-child(2) {
    opacity: 0;
}

.custom-nav.open~.custom-toggler span:nth-child(3),
.custom-toggler.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* ---------- Overlay (TataCapital style) ---------- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.813);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9;
}

.nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ---------- Dropdown control ---------- */
.custom-dropdown {
    position: absolute !important;
    top: calc(100% + 12px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    background: #fff;
    border-radius: 10px;
    min-width: 220px;
    box-shadow: var(--box-shadow);
    z-index: 120;
    overflow: hidden;
}

.has-dropdown.active .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.custom-dropdown ul li a {
    display: block;
    padding: 10px;
    color: #222;
    border-bottom: 1px solid #dcdcdc;
    transition: all .4s ease;
}

.custom-dropdown ul li:last-child a {
    border-bottom: none;
}

.custom-dropdown ul li a:hover {
    color: var(--background-color);
    background: var(--primary-color);
}

.navbar-menu .nav-link:hover {
    color: var(--primary-color);
}

/* ============model========== */
.modal-backdrop.show {
    opacity: 0.7;
}

/* Modal box */
.fraud-box {
    border-radius: 16px;
    padding: 30px 20px;
    border: none;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.35s ease;
}

/* When modal is visible */
.modal.show .fraud-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Close button */
.fraud-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 12;
}

/* Title */
.fraud-title {
    font-size: 28px;
    font-weight: 400;
}

/* Icons */
.fraud-icon {
    width: 56px;
    height: 56px;
    background: #eee6f8;
    color: #7a4bc3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

/* Text */
.fraud-item p,
.fraud-footer {
    font-size: 14px;
    line-height: 1.5;
}


/*top bar */
.top-bg {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #2e7d32;
    color: #fff;
    font-family: serif;
}
.right-links ul{
    display: flex;
}
.right-links ul li a {
    color: #ffffff;
    margin: 0px 10px;
    text-decoration: underline;
    font-family: serif;
}



/* ================hero section============== */
.hero_banner {
    position: relative;
    overflow: hidden;
}

/* slide */
.hero_slide {
    position: relative;
    height: 50vh;
    min-height: 520px;
    display: flex;
    align-items: center;
}

/* background layer */
.hero_bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* overlay */
.hero_slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.45) 45%,
            rgba(0, 0, 0, 0.15) 70%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}
.warning{
    color: red !important;
}

/*hero bg */
.bg{
    background-image: url(../images/01.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    width: 100%;
}
/*end*/

/*calculator css*/
.loan-box{
  width: 511px;
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
    left: 85px;
    top: 75px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.loan-box h2{
  margin-bottom:5px;
   font-family: "Poppins", sans-serif;
   font-size: 22px;
   font-weight: 600;

}
/* .loan-box h2 span{
    color: #c02222;
} */
.loan-box p{
  color:#666;
  font-size:14px;
  font-family: "Poppins", sans-serif;
}
.loan-p{
    
    font-size: 18px !important;
    font-weight: 600;
    position: relative;
    top: 5px;
}
#amount{
  color:#18529c;
  margin-top:10px;
}

input[type=range]{
  width:100%;
  margin:20px 0;
}

.range-labels{
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:#666;
}

.note{
  font-size:13px;
  color:#777;
}

.emi{
  font-size:20px;
  margin-top:10px;
}

.apply{
  background:#c02222  !important;
  color:white;
  border:none;
  padding:10px 20px;
  border-radius:6px;
  margin-top:15px;
  cursor:pointer;
}
.check span{
    font-size:15px;
    font-family: "Poppins", sans-serif;
    position: relative;
    left: 32px;
    font-weight: 600;
    color: #c02222;
}
.second-apply{
    background-color: #c02222 !important;
    border: 1px solid #c23132 !important;
    transition: 0.4s linear;
    padding: 6px 15px;
}
.second-apply:hover{
    color: #fff !important;
}
.bttom-line {
    position: relative;
    width: 511px;
    background: #18529c;
    right: 25px;
    padding: 1px;
    top: 25px;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
}
.bttom-line p{
    color: #fff;
    text-align: center;
    position: relative;
    top: 0px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 13px;
}
.check-icon i{
    color: #18529c;
}
.secure {
    display: flex;
    align-items: center;
}
.secure p{
    position: relative;
    top: 8px;
    left: 16px;
}
.secure i{
    font-size: 26px;
    color: #18529c;
}
.second-apply:hover{
    background: transparent;
    color: black;
}
.content-h1{
        margin-left: 92px;
        margin-top: 50px;
}
.content-h1 h2{
    color: #fff;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    
}

.content-h1 p{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #fff;
}
/* Range Track */
input[type="range"]{
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(to right,#e53935,#ff7043);
  outline: none;
}

/* slider circle */
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid #e53935;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* hover effect */
input[type="range"]::-webkit-slider-thumb:hover{
  transform: scale(1.2);
}

/* firefox */
input[type="range"]::-moz-range-thumb{
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid #e53935;
  border-radius: 50%;
  cursor: pointer;
}

/* Thumb (Chrome, Safari, Edge) */
input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:18px;
  height:18px;
  background:#c02222;
  border-radius:50%;
  cursor:pointer;
}

/* Thumb (Firefox) */
input[type=range]::-moz-range-thumb{
  width:18px;
  height:18px;
  background:#2e7d32;
  border:none;
  border-radius:50%;
  cursor:pointer;
}

/* Firefox Track */
input[type=range]::-moz-range-track{
  background:#2e7d32;
  height:6px;
  border-radius:5px;
}
/* .emi-calculator {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 28%;
}

.input-group {
    margin-bottom: 10px;
}

.input-group label {
    display: inline-block;
    width: 150px;
    font-weight: bold;
}

.input-group input[type="number"] {
    width: 100px;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

.input-group input[type="range"] {
    width: 200px;
}

#loan-term-value {
    font-weight: bold;
}

#calculate-btn {
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

#calculate-btn:hover {
    background-color: #45a049;
}

#reset-btn {
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

#reset-btn:hover {
    background-color: #45a049;
}

#emi-result {
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

tfoot td {
    text-align: right;
    font-weight: bold;
}

.hidden {
    display: none;
} */

/*end*/

/* content */
.hero_content {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.hero_content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero_content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 22px;
}

.hero_content .apply-btn {
    width: fit-content;
}

.hero_banner .slick-dots {
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 60px;
    background: #00000082;
    padding: 10px .375rem;
    width: auto;
    bottom: 4.75rem;
}

.hero_banner .slick-dots li {
    position: relative;
    height: 8px;
    margin: 0 3px;
    width: 8px;
    padding: 0;
    cursor: pointer;
}

.hero_banner .slick-dots li button {
    border: 0;
    background: #00000000;
    display: block;
    height: 100%;
    width: 100%;
    outline: 0;
    line-height: 0;
    font-size: 0;
    color: transparent;
    padding: 5px;
    cursor: pointer;
}

.hero_banner .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 8px;
    text-align: center;
    color: #000;
    opacity: .25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero_banner .slick-dots li button:before {
    font-size: 2rem;
    opacity: 1;
    color: #fff;
    width: 100%;
}

.hero_banner .slick-dots li.slick-active button:before {
    position: absolute;
    width: 100%;
    max-width: 2.5rem;
    content: "";
    background: #ffcb05;
    color: #ffcb05;
    height: 100%;
    left: 0;
    border-radius: 6.25rem;
    opacity: 1;
}

.hero_banner .slick-dots li.slick-active {
    width: 3.5rem;
    border: 1px solid #ffcb05;
    border-radius: .9375rem;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}


/* ===========loan tab============== */
.loantab-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 300px;
    background: url('../images/coin-overlay.webp') no-repeat center center / contain;
    z-index: -1;
}

.loan-tabs {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #dcdcdc;
}

.loan-tabs li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff3cf;
    flex: 1;
    text-align: center;
    padding: 16px 10px;
    cursor: pointer;
    border-right: 1px solid #e5d7aa;
}

.loan-tabs li:last-child {
    border-right: none;
}

.loan-tabs li svg {
    width: 50px;
    margin-bottom: 6px;
}

.loan-tabs li span {
    display: block;
    font-size: 14px;
}

.loan-tabs li.active {
    background: #fff;
    font-weight: 600;
    position: relative;
}

.loan-tabs li:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.loan-tabs li:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.loan-tabs li.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 40%;
    height: 3px;
    background: #c02222;
}

.loan-tabs svg {
    width: 26px;
    height: 26px;
    fill: #222;
    margin-bottom: 6px;
}

.loan-tabs li.active .tab-icon {
    fill: #f7b500;
}


/* Content */
.loan-content {
    padding: 30px 0;
}

.loan-content .tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Header */
.loan-head {
    display: flex;
    gap: 20px;
    align-items: center;
}

.loan-head img {
    width: 70px;
}

.loan-head h2 {
    margin-bottom: 6px;
    font-size: 30px;
}

.calc-link {
    margin-left: auto;
    color: #0b6efd;
    font-size: 14px;
}

/* Cards */
.loan-cards {
    margin-top: 30px;
    padding: 20px;
    display: grid;
    gap: 10px;
    background: #fff;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.loan-cards .card {
    padding: 20px;
}

.loan-cards .card h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.loan-cards .card p {
    font-size: 14px;
    color: #555;
}

.loan-cards .card .actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.loan-cards .card .link {
    font-size: 14px;
    color: #000;
    text-decoration: underline;
}

/* ============calculator======== */
.calc_card_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.calculator_card {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.calculator_card svg {
    font-size: 50px;
    color: #c02222;
    margin-bottom: 10px;
}

.calculator_card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--background-color);
}

.calculator_card h3:hover {
    color: #0b6efd;
}

.calculator_card p {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--background-color);
}

.calc_arr {
    height: 25px;
    width: 25px;
    font-size: 14px;
    background: #c02222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-color);
}

/* ===========usp========= */
.counter_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 14px;
}

.counter_wrap .counter_card {
    padding: 20px;
    border-radius: 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.counter_wrap .counter_card h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

.usp_section picture img {
    width: 100%;
}

/* =============chhose-us========== */
.inside-orange {
    background: #ff000017;
    border-radius: 8px;
}

.choose-wrap {
    display: flex;
    align-items: start;
    gap: 0 42px;
}

.choose-left {
    flex: 1;
}

.choose-right {
    position: relative;
    max-width: 874px;
    border-left: 1px solid #f59232;
    flex: 1;
    border-radius: 0px 0 15px 0px;
}

.choose-right::before {
    content: '';
    background: url(../images/vision-mission.webp) no-repeat right bottom / contain;
    height: 500px;
    width: 400px;
    position: absolute;
    right: 0;
    bottom: 0;

}

.impact-box-wrap {
    padding-right: 100px;
}

.f-row {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
    flex-wrap: wrap;
}

.inside-orange .impact-box-wrap .f-row {
    gap: 30px 0;
    margin-bottom: 30px;
}

.w100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.impact-box {
    padding: 0 30px;
    max-width: 70%;
}

.impact-box .comm-sec-hdn {
    color: #202021;
    font-size: 25px;
    margin-bottom: 16px;
}

.choose-box {
    padding: 0 0px 25px 40px;
}

.inside-orange .comm-sub-hdn {
    padding: 25px;
    margin: 0;
    margin-bottom: 20px;
}

.choose-box .comm-sec-hdn {
    margin-bottom: 16px;
    color: #202021;
    font-size: 25px;
}

/* ==========steps============= */


/* Card */
.step-card {
    padding: 24px;
}

/* Icon box */
.icon-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.gradient-text {
    color:red;
}

.icon-wrapper img {
    width: 50px;
}

/* Step badge */
.step-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Connector line */
.connector-line {
    position: absolute;
    top: 70px;
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    z-index: -1;
}

/* =============reviews============== */
.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    position: relative;
    margin: 0 12px;
}

/* Quote icon */
.quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 28px;
    color: rgba(99, 102, 241, 0.2);
}

/* Rating */
.rating i {
    color: goldenrod;
    font-size: 14px;
    margin-right: 2px;
}

/* Text */
.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Avatar */
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

/* ============faq=========== */
.faq-image-wrap .faq-overlay-1,
.faq-image-wrap .faq-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
}

.faq-image-wrap .faq-overlay-2 {
    right: 0;
    bottom: 0;
    top: unset;
    left: unset;
}

.faq-image-wrap picture img {
    max-height: 600px;
    border-radius: 12px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Accordion button */
.accordion-button {
    padding: 22px 24px;
    font-weight: 600;
    font-size: 16px;
    background: transparent;
    color: #000 !important;
}

/* Remove Bootstrap focus styles */
.accordion-button:focus {
    box-shadow: none;
}

/* Open state */
.accordion-button:not(.collapsed) {
    color: #6366f1;
    background: transparent;
}

/* Answer */
.accordion-body {
    padding: 0 24px 24px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

/* Remove default arrow bg */
.accordion-button::after {
    filter: grayscale(1);
}

.accordion-button:not(.collapsed) {
    box-shadow: unset;
}

/* ==============footer============== */
footer {
    background: #0b213a;
    color: #dcdcdc;
}

.brand-icon {
    width: 40px;
    height: 40px;

    background: var(--primary-color);
    color: #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    color: #dcdcdc;
}

/* Footer titles */
.footer-title {
    font-weight: 600;
    color: #ddd;
    margin-bottom: 10px;
    position: relative;
    left: 16px;
    font-size: .875rem !important;
}
.footer-title a{
    text-decoration: none;
}
footer .footer-list {
    margin-bottom: 10px;
    padding-left: 15px;
}

.footer-links {
    position: relative;
    color: #ccc;
    margin-bottom: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
}
.footer-links:hover{
    color:red !important;
}
.footer-links::before {
    content: "\f054";
    font-family: 'fontAwesome';
    position: absolute;
    left: -15px;
    top: 3px;
    font-size: 12px;
    transition: all 0.3s ease;
    display: none;
}
.footer-links:hover{
    color: var(--primary-color);
    transform: translateX(12px);
}

.contact-info li a{
    color: #ccc;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 8px;
    text-decoration: none;
}
.social-icon-wrap {
    max-width: fit-content;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: -20px;
    font-size: 14px;
    transform: translateX(-50%);
    background: #c02222;
    padding: 0 50px;
}

/* Social */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-icon:hover {
    color: #6366f1;
    background: #e5e7eb;
}


.sticky-sunrise {
    position: fixed;
    bottom: -732px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    pointer-events: none;
    height: 800px;
    width: 800px;
    background: #fbbd23;
    border-radius: 50%;
    display: none;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--background-color);
    color: #ffffff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 7px;
    display: none;
}

.sub-title {
    background: #fa05051a;
    border: 1px solid #fa050533;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffff;
    border-radius: 32px;
    padding: 8px 16px;
}

.sub-title svg {
    width: 16px;
    height: 16px;
    color: red;
}
.nav-link.active{
    background: red !important;
}
.e-btn.active{
    background: red !important;
}
.nav-pills .nav-link:hover {
    background: #f1070726;
    color: black;
}
#amountText{
    color: red;
}
#tenureText{
     color: red;
}

#rateText{
    color: red;
}

.emi{
    color: red;
}

.alert.alert-warning.fw-bold {
    background: #ff00002b;
    color: #000;
    border: 1px solid red;
}
.tip_card .icon-box{
    background: rgb(251 35 35 / 15%) !important;
    color: #fb2323 !important;
}


.loan-modal .modal-content {
    border-radius: 14px;
    padding: 25px;
    background: #f4f4f4;
    border: none;
}

.my-right-side {
    position: relative;
    left: 16px;
}
.my-right-side span{
    font-size: 14px !important;
}
.social-icons{
  display:flex;
  gap:18px;
  justify-content: center;
    align-items: center;
}

.social-icons a{
  background:#fff;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:18px;
  text-decoration:none;
}

/* Brand colors */
.facebook i{
  color:#1877F2;
}

.twitter i{
  color:#1DA1F2;
}

.linkedin i{
  color:#0A66C2;
}

.instagram i{
  color:#E4405F;
}

/* Loan type cards */
.loan-type {
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.loan-type img {
    height: 50px;
    margin-bottom: 8px;
}

.loan-type.active {
    border-color: var(--primary-color);
}

.loan-type.active::after {
    content: "✓";
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Input fields */
.loan-input {
    border-radius: 40px;
    padding: 12px 18px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
}

.loan-modal .btn-close {
    filter: invert(46%) sepia(87%) saturate(1580%) hue-rotate(353deg);
    opacity: 1;
    position: absolute;
    top: 10px;
    right: 10px;
}

.loan-modal .btn-close:hover {
    opacity: 0.7;
}

/* Shake animation */
@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-4px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.3s ease;
}

/* Validation colors */
.is-valid {
    border-color: #198754 !important;
}

.is-invalid {
    border-color: #dc3545 !important;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled){
    border: 0;
    color: #fff;
    background-color: transparent;
}
.btn-one{
    margin-top: 18px;
}

#offcanvasRightLabel img{
    height: 83px;
    border-radius: 50%;
}
.offcanvas-body{
    background: black;
    padding: 0 !important;
    padding-bottom: 20px !important;
}

.offcanvas-header{
    background: black;
}
.off-links li{
    border-bottom: 1px solid #fff;
    position: relative;
}
.off-links li a{
    text-decoration: none;
    color: #fff;
    line-height: 38px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px ;
    padding: 21px;
}
.off-links li a i{
    position: absolute;
    right: 20px;
    top: 16px;
}
.btn-close{
    filter: invert(1);
}

.off-links {
    padding: 0;
}

.menu{
    display: none;
    padding: 0px  !important;
}


/*fair*/
.bg-fair{
   background-image: url(../images/1.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 350px;
    position: relative;
    top: -4px;
}

.main-fair{
    background: #d9e6f3d3;
    margin: -50px;
    padding-bottom: 30px;
    padding-top: 50px;
}

.content-fair-body h3{
     font-family: "Poppins", sans-serif;
     font-weight: bold;
     text-transform: uppercase;
}
.content-fair-body h3 span{
    color:#d62828;
}

.content-fair-body h3{
    position: relative;
    display: inline-block;
}

.content-fair-body h3::after{
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #0d6efd;
    left: 50%;
    bottom: -13px;
    transform: translateX(-50%);
}
.btn-fairs ul li{
    display: inline-block;
    margin-top: 40px !important;
    margin: 0px 10px;
}
.btn-fairs ul li a{
  display: inline-block;
    padding: 12px 26px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    background-color: #000;
}
/* .btn-fairs .fair-one{
  
    background: linear-gradient(135deg, #0d6efd, #3a8bff);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
    transition: all 0.3s ease;
}
.btn-fairs .fair-two{
    background: linear-gradient(135deg, #198754, #34c38f);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.25);
}
.btn-fairs .fair-three{
    background: linear-gradient(135deg, #ffc107, #ffda6a);
    color: #333;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.25);

}
.btn-fairs .fair-four{
        background: linear-gradient(135deg, #dc3545, #ff6b81);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.25);
} */

.my-fair-container{
    background: #d1deeb;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 1025px;
    margin: 0 auto;
}

.fair-h h3{
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #b71527;
}

.para p{
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1rem;
} 

.interest li{
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1rem;
}
.interest-h h5{
    color: black;
}
.interest-h ul li{
    margin-bottom: 0.6rem;
    color: #6d0707;
    line-height: 1.6;
    list-style-type: disc;
}

.table-container {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}
th, td {
    border: 1px solid #ccc  !important;
    padding: 12px;
    text-align: left;
    font-size: 14px;
}

.interest-para p{
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1rem;
}
table {
  border-collapse: collapse;
      width: 100%;
    background: #ffff;
}
 th {
  background: #d1deeb;
}

th, td {
  border: 1px solid #ffffff;
  padding: 8px;
  border-radius: 5px;
}

tr:nth-child(even) {
  background: #efefef;
}

tr:hover {
  background: #d1d1d1;
}
.dot h3{
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #b71527;
}
.dot li{
    font-size: 14px !important;
} 

fieldset strong{
    font-size: 15px !important;
}

.dot  strong{
    font-size: 14px !important;
}
 
.dot ul{
    margin: 0 0 1.5rem 1.2rem;
    padding: 0;
}

.dot ul li{
    margin-bottom: 0.6rem;
    color: #6d0707;
    line-height: 1.6;
    list-style-type: disc;
}

.target h3{
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #b71527;
}
.target ul li{
        margin-bottom: 0.6rem;
    color: #6d0707;
    line-height: 1.6;
}

.target p{
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1rem;
}

/*products*/
.service-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-image {
    height: 167px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-wrapper h2 {
    font-size: 48px;
    letter-spacing: -2px;
}
.p-h{
  background: linear-gradient(180deg, rgb(251 36 36 / 18%), transparent);
}

.main-title {
    position: relative;
    top: 40px;
}

.service-image img{
  height: 100px;
}

.service-details {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-name {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.3;
}

.service-summary {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}
.action-section {
    display: flex;
    justify-content: left;
    margin-top: 10px;
}

.action-button {
    background-color: red;
    color: white;
    border: none;
    width: 120px;
    height: 45px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media only screen and (max-width:1024px){
    .loan-box{
        left: 20px;
        width: 437px;
    }
}
@media only screen and (max-width:993px){
.navbar-menu .nav-link{
    color: #ffff;
}
.top-bg{
    display: block;
}
.right-links{
    display: none;
}
.left-side{
    text-align: center;
}
.red-navbar{
    top: 0;
}
.loantab-wrapper::after{
    width: 302px;
}
.menu{
    display: block;
    padding: 0 !important;
}
}
.charge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* allows items to wrap on small screens */
  gap: 10px; /* space between items */
}

@media (max-width: 768px) {
  .charge-row {
    flex-direction: column; /* stack items vertically */
    align-items: flex-start; /* left align on mobile */
  }
}
@media only screen and (max-width:768px){
    .top-links{
      display: none;
    }
    .new-top{
        display: none;
    }
    .logo-area img{
    height: 75px !important;
        top: -3px !important;
        right: 17px !important;
    }
    .header-wrapper{
        display: flex !important;
    }
    .red-navbar{
        top: -1px !important;
    right: 1px !important;
    padding: 18px 12px !important;
    background: linear-gradient(90deg, #d32f2f, #000000);
    }
    .loan-hero h1{
        font-size: 23px  !important;
    }
    .button-group{
        display: block !important;
    }
    .apply-btn-anti{
        display: block !important;
        width: 100%;
        text-align: center;
    }
    .button-group .emi-btn{
        display: block !important;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    .service-image img{
        height: 69px;
    }
    .service-item{
        margin-top: 20px !important;
    }
    table {
    overflow-y: hidden;
    position: relative;
    right: 24px;
}
.why_wrap h2{
    font-size: 20px;
}
.choose-right::before{
    display: none;
}
.faq-heading h2{
    font-size: 30px !important;
}
.uni-section-title{
     font-size: 30px !important;
}
.d-flex {
    display: block !important;
    
}
.d-flex button{
    margin: 7px 0px !important;
}
.ui-card{
    overflow: hidden;
}
.loan-hero{
    background-position: center center;
}
.ui-card{
    height: auto !important;
}
}
@media only screen and (max-width:580px){
    .loan-box{
        left: 0;
        width: 298px;
        top: 10px;
    }
    .bg{
        height: auto;
        padding-bottom: 30px;
        
    }
    .content-h1{
        margin-left: 27px;
    margin-top: 25px;
    }
    .top-links{
      display: none;
    }
    .new-top{
        display: none;
    }
    .logo-area img{
    height: 75px !important;
        top: -3px !important;
        right: 17px !important;
    }
    .header-wrapper{
        display: flex !important;
    }
    .red-navbar{
        top: -1px !important;
    right: 1px !important;
    padding: 18px 12px !important;
   background: linear-gradient(90deg, #d32f2f, #000000);
    }
    .bttom-line{
        width: 298px;
    }
    .bttom-line p{
        font-size: 12px;
    }
    .check span{
        left: 4px;
        font-size: 11px;
    }
    .top-bar{
        display: none;
    }
    #offcanvasRightLabel img{
        height:80px;
    }
    .main-fair{
        margin:0;
        top: -52px;
    }
    .my-fair-container{
        width:281px;
        
    }
}
#fair{
    overflow: hidden;
}
.whatsapp i{
    font-size: 18px !important;
}