/* Variable declarations */
:root {
  --skyblue: #179bae;
   --orange: #ff8343;
  --black: #333333;

  /*calculator page*/
  --teal:       #179bae;
  --teal-dark:  #126b62;
  --teal-light: #e6f4f3;
  --teal-glow:  rgba(27,138,126,0.18);
  --navy:       #0f2b3d;
  --text:       #1a2e38;
  --muted:      #607d8a;
  --border:     #d8e8eb;
  --bg:         #f0f5f7;
  --card:       #ffffff;
  --result-bg:  #f7fbfc;

  /*new home form*/
  --primary-bg: #117a8b; /* Matching your image's deep teal background */
  --button-orange: #ff7f41; /* Matching your submit button color */
  --input-bg: rgba(255, 255, 255, 0.1);
  --border-color: rgba(255, 255, 255, 0.4);

}




*{margin: 0; padding: 0; box-sizing: border-box;}
ul{padding: 0; margin:0; list-style-type: none;}

a{color:inherit; text-decoration: none;}
h1,h2,h3,h4,h5,h6{}

.h2 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}

:focus{outline: none; border:none;}
body{
  font-size: 18px;
  line-height: 28px;
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-weight: 400;

}

h2, .heading {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}
p {
    margin-bottom: 15px;
}

.h3 {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

main a {
    /*color: #252dfd;
    font-weight: 500;*/
    color: #4791f1;
}



.maindiv{
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.img-fluid{
  max-width: 100%;
}
.img-res{
  max-width: 100%;
  width: 100%;
  height: auto;
}
.transition{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.text-white{color: #fff;}
.text-left{text-align: left;}
.text-center{text-align: center;}
.rounded{border-radius: 5px;}
.rounded-25{border-radius: 25px;}
.pt-1{padding-top: 20px;}
.pt-2{padding-top: 40px;}
.pt-3{padding-top: 60px;}
.pb-1{padding-bottom: 20px;}
.pb-2{padding-bottom: 40px;}
.pb-3{padding-bottom: 60px;}

.mt-1{margin-top: 20px;}
.mt-2{margin-top: 40px;}
.mt-3{margin-top: 60px;}
.mb-1{margin-bottom: 20px;}
.mb-2{margin-bottom: 40px;}
.mb-3{margin-bottom: 60px;}

.mb-0{margin-bottom: 0 !important;}
.row-reverse{flex-direction: row-reverse;}

/*common css end*/
.thumbnail {
    padding: 8px;
    border: 1px solid #dddddd;
    background: #ffffff;
    line-height: 0;
}
a.more {
    color: #0d4bbe;
    font-style: italic;
}
.link{
   color: #252dfd; 
}
.theme-btn {
    background: var(--orange);
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 5px;
    border: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    position: relative;
    display: inline-block;
}
.theme-btn:hover {
    
    background: #cb591f;
    box-shadow: 7px 6px 28px 1px rgb(0 0 0 / 24%);
    transform: scale(0.98);
}

.bdr {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
}


/* navigation start */

.nav-header {
    position: relative;
    z-index: 9;
}

#menu-icon {
    padding: 5px 0;
    color: #ffffff;
    right: 5px;
    position: relative;
    font-size: 26px;
    background: none;
    border: 0;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.nav01 {
    width: 100%;
    justify-content: flex-end;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.nav-header .maindiv {
    padding: 0;
}
.nav01 .menu01 li {
    margin: 12px 0;
}
.nav01 .menu01 a {
    color: #fff;
    font-weight: 500;
}
.nav01 .menu01 {
    width: 100%;
    background: var(--blue);
   
    display: none;
    border-top: 2px solid #1aafc4;
}
.sub_menu {
    display: none;
    padding-left: 10px;
}
.menu {
    font-size: 18px;
    position: relative;
    bottom: 4px;
}
.menu01 span.fa-arrow  {
    display: none;
}
.nav01 > .menu01 > li {
    padding: 0 15px;
}
.icon1 {
    position: relative;
}
.icon1:before {
    content: "";
    background: url(../images/chevron-down-outline.svg);
    position: absolute;
    color: #fff;
    right: 15px;
    top: 3px;
    font-size: 10px;
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.nav01 .menu01 li.apply-now {
    border: 1px solid #ffffff;
    padding: 5px;
    background: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}
.nav01 .menu01 li.apply-now a {
    color: #248e38;
}
.logo img {
   width: 170px;
   height: auto;
}

.nav01 .menu01 li.apply {
    background: var(--orange);
    padding: 10px 15px;
    margin-bottom: 0;
}


.warning-header{
    background: var(--skyblue);
    color: #fff;
    text-align: center;
    padding: 5px 0;
}
.warning-header p{margin-bottom: 0; font-size: 16px;}
.warning-header .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 5px;
    top: 25px;
    cursor: pointer;
}
.warning-header .close ion-icon {
    font-size: 25px;
    line-height: 35px;
}
.nav01 .menu01 a.apply-btn {
    background: var(--orange);
    padding: 7px 25px;
    border-radius: 25px;
    display: block;
    text-align: center;
}
.mid-header {
    background: var(--skyblue);
}


.logo-header {
    padding:5px 0;
}

.other-info .address {
  display: flex;
  font-size: 16px;
  line-height: 26px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.other-info .address .icon {
    font-size: 30px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.other-info .address .head {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}

.nav-apply-btn {
    background: var(--orange);
    position: relative;
    margin-right: -5px;
    transition: all .3s ease;
    display: none;
}
.nav-apply-btn:before {
    content: '';
    width: 75px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -36px;
    transform: skew(-45deg);
    background: var(--orange);
    transition: all .3s ease;
}
.nav-apply-btn a {
    font-weight: 500;
    margin-left: 0;
    display: block;
    padding: 0 30px 0 17px;
    line-height: 65px;
    position: relative;
    z-index: 10;
    transition: all .3s ease;
    color: #fff;
}

.logo-header .logo {
    text-align: center;
}

.menu-text {
    font-size: 18px;
    font-weight: 600;
    padding-left: 20px;
}

.bg-gray{background: #f9f9f9;}

/* home-banner */


.banner-home {
    background-color: #767a7b;
    background: url(../images/home_mobile_banner.webp) no-repeat;
    background-size: cover;
   padding: 20px 0;
    position: relative;
    margin-top: 0px;
    
}

.home-banner-text-box {
    background: rgb(0 0 0 / 60%);
    /*max-width: 600px;*/
    max-width: 750px;
    padding: 15px;
    color: #fff;
}

.home-banner-text-box h1 {
    font-size: 28px;
    line-height: 38px;
}

.home-banner-text-box .sub {
    color: var(--orange);
    margin-top: 10px;
    font-weight: 500;
}


/*--bullet point list1 start--*/
.list {
    padding-left: 32px;
}
.list li {
    position: relative;
    padding-left: 0;
    margin: 8px 0;
}
.list li a{color: #0d4bbe; font-size: 18px;line-height: 28px;}
.list li:before {
    content: "";
    background: url(../images/bulet.svg) no-repeat;
    position: absolute;
    background-size: cover;
    color: #fff;
    left: -32px;
    top: 4px;
    width: 20px;
    height: 20px;
}

.banner-inner-text-box .list.w li:before {
    content: "";
    background: url(../images/bulet.svg) no-repeat;
    position: absolute;
    background-size: cover;
    color: #fff;
    left: -32px;
    top: 4px;
    width: 20px;
    height: 20px;
}

.list.w li:before {
    content: "";
    background: url(../images/bulet_w.svg) no-repeat;
    position: absolute;
    background-size: cover;
    color: #fff;
    left: -32px;
    top: 4px;
    width: 20px;
    height: 20px;
}

.orange_bdr:hover .list li::before {
    content: "";
    background: url(../images/bulet.svg) no-repeat;
    background-size: cover;
    left: -32px;
    top: 4px;
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.list li p:first-child>strong {
    color: var(--black);
    font-size: 19px;
    line-height: 29px;
}
.list li > p:first-child {
    margin-bottom: 6px;
}

.list.w, .list.w li p:first-child>strong {color: #fff;}


/*--bullet point list1 end*/

/*--tick list within list--*/
.tick-list .list {
    padding-left: 32px;
}
.tick-list .list li {
    position: relative;
    padding-left: 0;
    margin: 8px 0;
}
.tick-list .list li a{color: #0d4bbe; font-size: 18px;line-height: 28px;}
.tick-list .list li:before {
    content: "";
    background: url(../images/bulet.svg) no-repeat;
    position: absolute;
    background-size: cover;
    color: #fff;
    left: -32px;
    top: 4px;
    width: 20px;
    height: 20px;
}

.tick-list .list li p:first-child>strong {
    color: var(--black);
    font-size: 19px;
    line-height: 29px;
}
.tick-list .list li > p:first-child {
    margin-bottom: 6px;
}




/* banner-form start*/
.banner-form {
    margin: 20px 0 10px;
}
.banner-form form {
    display: flex;
    flex-direction: column;
}
.banner-form .input-wrap {
    border: 2px solid #dbdbdb;
    border-radius: 5px;
    margin-right: 15px;
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.banner-form span.pound {
    background: var(--skyblue);
    display: inline-block;
    padding: 10px 20px;
    font-size: 24px;
}

.banner-form .input-wrap .form-control {
    background: transparent;
    border: 0;
    padding-left: 15px;
    font-size: 16px;
    color: #fff;
}
.banner-form .theme-btn{cursor: pointer;}

/* banner-form end*/


/* intro  start*/

.two-div-grid {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-gap: 30px;
}

.intro-bx .wrap-div {
    display: flex;
    align-items: center;
    position: relative;
}
.intro-bx .wrap-div .imagebox {
    padding: 15px;
    position: relative;
    z-index: 9;
}
.intro-bx .wrap-div .textbox {
    background: #fff;
    padding: 30px 30px 30px 40px;
    position: relative;
    border: 1px solid #dddddd80;
    margin-left: -40px;
}
.intro-bx .wrap-div .imagebox .imgbx {
    border: 8px solid #fff;
}

.intro-bx .text-wrap p {
    font-size: 16px;
    line-height: 26px;
    color: #727272;
}

.line {
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 18px;
}
.line:before {
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--orange);
    content: "";
    bottom: -8px;
}
.line.center:before {
    left: calc(50% - 35px);
}
.more {
    color: var(--orange);
    font-style: italic;
    cursor: pointer;
}
.less {
    color: var(--orange);
    font-style: italic;
    cursor: pointer;
    position: relative;
    top:-12px;
}

.expand{display: none;}
.expand.show{display: block;}
.expand {
    position: absolute;
    background: #fff;
    width: 100%;
    padding: 20px;
    z-index: 10;
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 12%);
    top: 0;
    left: 0;
}
.expand .cross {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
    z-index: 1;
}
/* intro  end*/

.orange_bdr .icon {
    font-size: 40px;
    color: var(--orange);
    margin-bottom: 20px;
    margin-top: 10px;
}
.orange_bdr {
    border-bottom: 3px solid var(--orange);
    background: #fff;
     -webkit-transition: all 0.5s ease-in-out 0s;
     -moz-transition: all 0.5s ease-in-out 0s;
     -ms-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    margin-bottom: 30px;
    background-size: 100% 200%;
    background-image: linear-gradient(to top, var(--orange) 50%, #fff 50%);
}
.orange_bdr:hover {
    color: #fff;
    background-position: 0 100%;
}
.orange_bdr:hover .icon{color: #fff;}

.sky_bdr .icon {
    font-size: 40px;
    color: var(--skyblue);
    margin-bottom: 20px;
    margin-top: 10px;
}
.sky_bdr {
    border-bottom: 3px solid var(--skyblue);
    margin-bottom: 30px;
    -webkit-transition: all 0.5s ease-in-out 0s;
     -moz-transition: all 0.5s ease-in-out 0s;
     -ms-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}
.sky_bdr:hover {
    background: var(--skyblue);
    color: #fff;
}
.sky_bdr:hover .icon {
    color: #fff;
}
.sky_bdr .colored {
    background: var(--skyblue);
    max-width: 86%;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 8px 0;
    position: relative;
    margin-top: -30px;
    margin-bottom: 20px;
     -webkit-transition: all 0.5s ease-in-out 0s;
     -moz-transition: all 0.5s ease-in-out 0s;
     -ms-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}
.sky_bdr:hover .colored {
    background: var(--orange);
}
.sky_bdr .wrp {
    padding: 0 20px 10px;
}
.four-div .col {
    margin-bottom: 30px;
}

.sky_bdr .imgbox img {
    border-radius: 10px 10px 0 0;
}


.cta {
    background: var(--skyblue);
    color: #fff;
    padding: 50px 0 40px;
}
.cta .heading {
    margin-right: 30px;
}

/* home-form */
#enquiry .form-control {
    width: 100%;
}
.bg_blue {
    color: #fff;
    background: var(--skyblue);
    padding: 50px 0;
}

.new-paralax {
    background: url(../images/new-paralax.jpg) no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    color: #fff; 
   padding: 50px 0;
}
.new-paralax:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(4 8 8 / 90%);
}
.new-paralax .maindiv {
    position: relative;
}
.bdr1 {
    border: 1px solid #ddd;
}
#enquiry .form-control {
    width: 100%;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 18px;
}
#enquiry textarea.form-control {
    min-height: 126px;
}


#enquiry .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #d0cfcf;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
#enquiry .form-control::-moz-placeholder { /* Firefox 19+ */
   color: #d0cfcf;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
#enquiry .form-control:-ms-input-placeholder { /* IE 10+ */
   color: #d0cfcf;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
#enquiry .form-control:-moz-placeholder { /* Firefox 18- */
   color: #d0cfcf;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
#enquiry .chkbox-sec{margin-bottom: 10px}


/* features start */

.feature-box-grid {
    display: grid;
    grid-template-columns: repeat(1,1fr);
}

.feature-box-grid .wrap {
    color: #fff;
    background-size: cover;
    transition: all 0.3s ease-in-out 0s;
    position: relative;
}
.feature-box-grid .wrap .text-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.feature-box-grid .wrap .text-overlay:hover {
    background: var(--skyblue);
}
.feature-box-grid .wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*.feature-box-grid .first {
     background: url(../images/reason1.webp) no-repeat;
     background-size: cover;
 }

 .feature-box-grid .second {
     background: url(../images/reason2.webp) no-repeat;
     background-size: cover;
 }

.feature-box-grid .third {
     background: url(../images/reason3.webp) no-repeat;
     background-size: cover;
 }
 .feature-box-grid .four {
     background: url(../images/reason4.webp) no-repeat;
     background-size: cover;
 }
.feature-box-grid .five {
     background: url(../images/reason5.webp) no-repeat;
     background-size: cover;
 }
.feature-box-grid .six {
     background: url(../images/reason6.webp) no-repeat;
     background-size: cover;
}*/

/* features end */

/* home testimonials */

.home-testimonials .slider2 {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    position: relative
}

.home-testimonials .slider2:before {
    content: "";
    font-size: 54px;
    padding-right: .5em;
    position: absolute;
    top: 0;
    left: -16px;
    background: url(../images/quotes.svg) no-repeat;
    width: 60px;
    height: 60px;
 
}
.heading-area {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.home-testimonials .slider2 .item {
}

.home-testimonials .slider2 .item .pimg {
    max-width: 146px;
    width: 100%;
    height: 146px;
    border-radius: 50%;
    padding: 5px;
    border: 2px dashed var(--orange);
    margin: 0 auto;
    margin-bottom: 30px;
}

.home-testimonials .slider2 p.data {
    color: #3b3b3b;
    font-size: 16px;
    line-height: 26px
}

.home-testimonials .slider2 p.subtitle .text {
    color: var(--orange);
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    display: block;
}

.home-testimonials .owl-dots {
    display: none
}

.home-testimonials .owl-nav button span {
    font-size: 25px;
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid var(--orange);
    color: var(--orange);
    font-weight: 600
}

.home-testimonials .owl-nav button span:hover {
    background: var(--orange);
    color: #fff
}

.home-testimonials .owl-theme .owl-nav {
    text-align: left
}

.home-testimonials .owl-theme .owl-nav {
    text-align: right;
    padding-left: 25px;
    margin-top: 0
}

.home-testimonials {
    padding: 60px 0 60px 0
}

/*faq*/
.faq-area .accordion-container .accordion-title {
    position: relative;
    margin: 0;
    padding: 10px 36px 10px 20px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}



.faq-area .accordion-container .accordion-title::after {
    padding-right: 0.5em;
    position: absolute;
    top: 10px;
    right: 0;
    content: "";
    background: url(../images/add-circle.svg) no-repeat;
    width: 30px;
    height: 30px;
}


.faq-area .accordion-container .accordion-title.open::after {
    padding-right: 0.5em;
    position: absolute;
    top: 10px;
    right: 0;
    content: "";
    background: url(../images/remove-circle.svg) no-repeat;
    width: 30px;
    height: 30px;
}

.faq-area .accordion-container .accordion-title.open::after {
     background: url(../images/remove-outline.svg) no-repeat;
}

.faq-area .accordion-container {
    width: 100%;
    margin: 0 auto
}

.faq-area .accordion-content {
    padding: 0 15px 15px 15px;
    padding-left: 25px;
    font-size: 18px;
    line-height: 28px;
    border-radius: 0;
}
.faq-area .holder {
    background: #f0efef;
    margin: 20px 0;
    border-radius: 5px;
}


.faq-area .holder .accordion-content{display: none;}




.faq-area .holder {
    background: transparent;
}

.faq-area .holder .accordion-title {
    background: var(--skyblue);
    border-radius: 5px;
     -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.faq-area .holder .accordion-title.open{
    background: var(--skyblue);
    color: #ffffff;
}

.faq-area .accordion-content{
    padding-top: 15px;
    padding-bottom: 0;
}

/*faq*/

/* footer start */

.footer {
    background: #011317;
    padding-top: 50px;
    color: #fff;
}
.footer .f-first {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.f-logo img {
    height: auto;
}
.footer .contact div {
    margin: 8px 0;
}
.footer .icon {
    margin-right: 10px;
    font-size: 23px;
}
.footer .f-nav ul {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    margin: 15px 0;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #032026;
    border-bottom: 1px solid #032026;
}
.footer .f-nav ul li {
    
    padding: 10px 0 10px 0;
    font-size: 16px;
    line-height: 26px;
}

.footer .f-nav ul li:last-child{
     border-right: 0px;
}

.footer .content-data{
    font-size: 16px;
    line-height: 26px;
}
.footer .content-data a, .footer .copyright a{ color:var(--orange); }
.copyright a {
    padding: 0 5px;
}
.copyright p {
    margin: 0;
}
.copyright {
    background: #010c0f;
    padding: 15px;
    text-align: center;
    font-size: 15px;
    line-height: 25px;
}

/* footer end */

/* blog */

.blog-grid {
    display: flex;
    flex-direction: column;
}
.blog-grid .wrap {
    position: relative;
    transition: all .3s ease;
}

.blog-grid .wrap:hover {
    margin-top: -15px;
}
.blog-grid .wrap a {
    position: relative;
    transition: all .3s ease;
}
.blog-grid .wrap a:before {
    content: "";
    background: rgb(0 0 0 / 70%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 9;
}
.blog-grid .wrap .img-bx {
    position: relative;
}
.blog-grid .wrap .img-bx img {
    height: auto;
    display: block;
    width: 100%;
}
.blog-grid .wrap .content {
    position: absolute;
    z-index: 9;
    color: #fff;
    bottom: 0;
}
.blog-grid .wrap .content .text {
    padding: 5px 5px 5px 30px;
    position: relative;
   transition: all .5s ease;
}
.blog-grid .wrap .content .text:before {
    content: "";
    height: 80px;
    width: 3px;
    background: var(--skyblue);
    position: absolute;
    left: 13px;
    bottom: 10px;
}
.blog-grid .wrap .content .text .date {
    color: var(--orange);
}
.blog-grid .wrap .content .text p {
    margin-bottom: 3px;
    font-size: 15px;
    line-height: 25px;
}
.blog-grid .wrap .content .text .h3 {
    margin-bottom: 3px;
}
.blog-grid .wrap .content .text p {
    margin-bottom: 3px;
    font-size: 15px;
    line-height: 25px;
}
.blog-grid a:hover .text {
    background: var(--skyblue);
}
.blog-grid a:hover .wrap{margin-top: -15px;}


/* inner banner */

.banner-inner {
    background: url(../images/inner_mobile_banner.webp) no-repeat;
    background-size: cover;
    padding: 20px 0;
    position: relative;
    margin-top: 0px;
}
.banner-inner.unsecured {
   padding: 20px 0px;
   background: url(../images/unsecured-banner.jpg) no-repeat;
   background-size: cover;
}



.banner-inner-text-box {
    background: rgb(0 0 0 / 60%);
    max-width: 100%;
    padding: 30px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
}

.banner-inner-text-box h1 {
    font-size: 28px;
    line-height: 38px;
}

.banner-inner-text-box .sub {
    color: var(--orange);
    margin-top: 15px;
    font-weight: 500;
}
/*--banner slider css start--*/

.slider-box {
    background: transparent;
    padding: 0px 0px 0px 0px;
    max-width: 500px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.slider-box .left{
    width: 100%;
    
}
.slider-box .right{
    width: 150px;
}
.slider-box span.btn {
    width: 28px;
    height: 23px;
    background: var(--skyblue);
    font-size: 15px;
    line-height: 24px;
    border: 0;
    margin: 0 5px;
    border-radius: 25px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: center;
}
.slider-box span.btn:focus{
    outline: 0 !important;
}

.slider-box .theme-btn {
    background: var(--orange);
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 5px;
    border: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
}
.theme-btn:hover {
    
    background: #cb591f;
    box-shadow: 7px 6px 28px 1px rgb(0 0 0 / 24%);
    transform: scale(0.98);
}
.noUi-target {
    height: 15px;
    border: none;
    margin: 0px 0 0 0; 
    box-shadow: none;
    background: transparent;
}
@media screen and (max-width: 767px) {
    .noUi-target {
        margin: 40px 0 50px 0; 
    } 
}
.noUi-target .noUi-base {
    background: #ffffff;
    border: 0px solid #ddd;
    border-radius: 15px;
    cursor: pointer;
}
.noUi-connects{
    border-radius: 15px;
}
.noUi-target .noUi-base .noUi-connect {
    background: var(--skyblue);
}
.noUi-target .noUi-base .noUi-tooltip {
    bottom: 45px;
    color: #013a67;
    border: none;
    outline: none;
    font-weight: bold; 
    font-size: 30px;
    display: none;
}
.noUi-handle.noUi-handle-lower {
    background: var(--skyblue);
    border-radius: 20px;
    width: 30px;
    height: 30px;
    outline: none;
    right: 0px;
    top: -9px;
    cursor: pointer;
    box-shadow: none;
    border: 3px solid #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.noUi-handle.noUi-handle-lower.noUi-active{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.noUi-handle.noUi-handle-lower::before, .noUi-handle.noUi-handle-lower::after {
    display: none; 
}
.noUi-handle.noUi-handle-lower .noUi-touch-area {
    width: 30px;
    height: 30px; 
}
.slider-hold1 {
    display: flex;
    align-items: center;
}

.btn-area a.submit-btn {
    background: #ffc060;
    display: block;
    margin: 10px 0;
    margin-top: 35px;
    padding: 10px;
    border-radius: 25px;
    color: #121212;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.btn-area a.submit-btn:hover {
    
}
.slider-box .h33 {
    text-align: center;
    font-size: 17px;
}
.slider-box .h33 #loan-amt{color:var(--orange); font-weight: 600;}
.slider-box .bdr1 {
    background: #ffffff;
    width: 100%;
    height: 2px;
    display: block;
    position: relative;
    top: -46px;
}

.slidr-heading {
    position: relative;
}


.banner-slider {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--orange);
    padding-bottom: 20px;
}
.banner-heading {
    margin-bottom: 25px;
}

.banner-slider .btn-area {
    display: block;
    text-align: center;
    
}
.slidr-heading span.h3 {
   
}
/*--banner slider css end--*/

.breadcrumb {
    padding: 10px;
    /*background: #f5f5f5;*/
    background: #dddddd;
}
.breadcrumb li {
    display: inline-block;
}



.orange_bdr.asset {
    background: transparent;
    margin-bottom: 30px;
    background-size: 100% 200%;
    background-image: linear-gradient(to top, var(--orange) 50%, #fff 50%);
}
.orange_bdr.asset .wrp {
    display: flex;
    align-items: flex-end;
}
.orange_bdr.asset .wrp .icon {
    font-size: 50px;
    margin-right: 15px;
}
.orange_bdr.asset p {
    text-align: left;
}
.orange_bdr.asset:hover {
    color: #fff;
    background-position: 0 100%;
}


.sky_bdr.asset {
    background: transparent;
    margin-bottom: 30px;
    background-size: 100% 200%;
    background-image: linear-gradient(to top, var(--skyblue) 50%, #fff 50%);
}
.sky_bdr.asset .wrp {
    display: flex;
    align-items: flex-end;
}
.sky_bdr.asset .wrp .icon {
    font-size: 50px;
    margin-right: 15px;
}
.sky_bdr.asset p {
    text-align: left;
}
.sky_bdr.asset:hover {
    color: #fff;
    background-position: 0 100%;
}

/*--bullet point list1 start--*/

.tick-list li {
    position: relative;
    padding-left: 0;
    margin: 8px 0;
}
.tick-list li a{color: #0d4bbe; font-size: 18px;line-height: 28px;}


.tick-list li p:first-child>strong {
    color: var(--black);
    font-size: 19px;
    line-height: 29px;
}
.tick-list li > p:first-child {
    margin-bottom: 6px;
}


/*--bullet point list1 end*/
.bluebox{
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 12%); 
    border-radius: 8px;
    background: #fff;
    margin-bottom: 30px;
}
.bluebox .h4 {
    background: var(--skyblue);
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    display: block;
    padding: 15px;
    text-align: center;
    border-radius: 5px 5px 0 0;
}
.bluebox .wrp {
    border-radius: 5px;
    padding: 30px;
}

.highlight {
    border: 2px dashed var(--orange);
    border-radius: 15px;
    padding: 30px;
}


/*--table css--*/
.table-n table {
    width: 100%;
    border-collapse: collapse;
}
.table-n tr:nth-child(odd) {
    background: #eff5ff;
}
.table-n tr:nth-child(even) {
    background: #ffffff;
}
.table-n th {
    background: var(--skyblue);
    padding: 5px;
    color: #fff;
    width: 50%;
}
.table-n td {
    padding: 5px 15px;
    border: 1px solid var(--skyblue);
    text-align: center;
    vertical-align: top;

}
.text-left{text-align: left;}
.table-n td p {
    margin-bottom: 5px;
}
.table-n tr td:first-child p {
    font-weight: 600;
}

.mid-wrap1 {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}
.table-n.table-w tr:nth-child(even) {
    background: #fff;
    color: #333;
}
.table-n.type1 tr td:first-child p {
    font-weight: 400;
}
.table-res {
    overflow-x: auto;
}

/*--table css end--*/

/* feature box */

.feature-boxes {
    display: grid;
    grid-gap: 30px;
}
.feature-boxes .f-box {
    
    background: #fff;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    padding: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-bottom: 3px solid var(--skyblue);
    border-radius: 10px;
}

.feature-boxes .f-box  .icon {
    font-size: 40px;
    color: var(--skyblue);
    margin-bottom: 20px;
    margin-top: 10px;
}
.sky_bdr.asset.text-center p{text-align: center;}
.home-loans .bdr {
    padding: 0;
}
.loans .bluebox .h4 {
    background: transparent;
    color: #ff8343;
}   
.loans .bluebox .wrp{padding-top: 0;}


/* apply now form */

.cform {
    max-width: 650px;
    margin: 0 auto;
}
label.naming {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 30px;
}
.form-box1 .icon_n {
    position: relative;
    padding-left: 50px;
}
.form-box1 .icon_n:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    text-decoration: inherit;
    color: #f8f8f8;
    font-size: 20px;
    padding-right: 0.5em;
    position: absolute;
    top: 0;
    left: 0;
    content: " ";
    width: 32px;
    height: 39px;
    background: #ee7c24;
    text-align: center;
    padding-top: 10px;
    padding-left: 9px;
}
.form-box1 .icon_n.amount:before {
    content: "\f154";
}
.form-box1 .form-control {
    width: 100%;
    padding: 2px 10px;
    margin-bottom: 12px;
    border: 1px solid #e2e2e2;
    font-size: 18px;
    line-height: 28px;
    color: #5a5a5a;
    text-indent: 10px;
    background: #fff;
}
#regForm input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    border: 1px solid #aaaaaa;
}
.chkbox-sec {
    display: flex;
    justify-content: flex-start;
}
.chkbox-sec [type='checkbox'] {
    width: 15px !important;
    height: 15px;
    margin-right: 10px;
    margin-top: 8px;
}
/* apply now end */

.thanks .h2 {
    color: var(--skyblue);
}
.blue-border-box p {
    font-weight: 800;
    font-size: 20px;
    line-height: 30px;
    padding: 10px;
    border: 2px solid var(--skyblue);
}

.contact-div {
    padding: 50px 0;
}
.enquery-form.contact {
    box-shadow: 0px 2px 8px 0 rgb(0 0 0 / 8%);
    padding: 30px;
    border-radius: 5px;
}
.enquery-form.contact span.h3 {
    margin-bottom: 20px;
}

.enquery-form.contact  .form-control{border: 1px solid #fff;}
.enquery-form .form-control {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f1f1f1;
    font-size: 18px;
    margin-bottom: 20px;
}

.icon-box {
    box-shadow: 1px 3px 8px 0 rgb(0 0 0 / 15%);
    padding: 30px;
    border-radius: 20px;
    border-left: 16px solid var(--skyblue);
    margin: 50px 0;
}
.iconn1 {
    margin: 10px 15px;
}
.iconn1 i {
    margin-right: 8px;
    font-size: 22px;
    line-height: 32px;
    position: relative;
    top: 2px;
}

.thanks-box img {
    max-width: 250px;
    width: 100%;
}

.blue {
    background: var(--skyblue);
    color: #fff;
    margin: 0 !important;
    padding: 2px 0;
    border-bottom: 1px solid;
}

.other-info{
    display: none;
}

.other-info-mobile{
    padding: 30px;
    border-bottom: 1px solid #ccc;
}

.other-info-mobile .address {
    display: flex;
    font-size: 16px;
    line-height: 26px;
    align-items: center;
    flex-direction: column;
    text-align: center;

}
.other-info-mobile .address .icon {
    font-size: 30px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.other-info-mobile .address .head {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}

/* capcha css start */

#image {
    width: auto;
    padding: 7px 35px;
    font-weight: 500;
    user-select: none;
    font-style: italic;
    font-size: 18px;
    background: #fff;
    color: #000;
}
.capcha-code input#submit {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #ffffff;
    margin-top: 15px;
    padding: 8px;
    font-size: 18px;
}

.capcha-code input#submit {}

.capcha-code input#submit::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.capcha-code input#submit::-moz-placeholder { /* Firefox 19+ */
   color: #fff;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.capcha-code input#submit:-ms-input-placeholder { /* IE 10+ */
   color: #fff;
  font-weight: 500;
}


/*apply page capcha*/
.pg-apply .capcha-code input#submit {
    background: transparent;
    border: 1px solid #333;
    border-radius: 5px;
    color: #333333;
    margin-top: 15px;
}

.pg-apply .capcha-code input#submit::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #333333;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.pg-apply .capcha-code input#submit::-moz-placeholder { /* Firefox 19+ */
   color: #333333;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.pg-apply .capcha-code input#submit:-ms-input-placeholder { /* IE 10+ */
   color: #333333;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.pg-apply .capcha-code input#submit:-moz-placeholder { /* Firefox 18- */
   color: #333333;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.apply #image {
    background: #f1f1f1;
}

.pg-apply input {
    padding: 15px 20px;
    font-size: 18px;
}
.capcha-code {
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
}
#user-input {
    width: auto;
    margin-right: 10px;
}

#key{font-size: 16px; font-style: italic;}
input#captcha {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #ffffff;
    margin-bottom: 20px;
}
/* capcha css end */


input#captcha::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #d0cfcf;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
input#captcha::-moz-placeholder { /* Firefox 19+ */
   color: #d0cfcf;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
input#captcha:-ms-input-placeholder { /* IE 10+ */
   color: #d0cfcf;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
input#captcha:-moz-placeholder { /* Firefox 18- */
   color: #d0cfcf;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.cta-banner {
    background: #f1f1f1;
    border-radius: 5px;
    padding: 30px;
    padding-bottom: 0;
    text-align: center;
}


.new-faq .faq-area .holder .accordion-title {
    background: transparent;
    border-bottom: 1px solid;
    border-radius: 0;
    padding-left: 0;
    color: #179bae;
}
.new-faq .faq-area .holder {
    margin: 5px 0;
}
.new-faq .faq-area .accordion-content {
    padding: 10px 5px 0px 5px;
}
.new-faq .faq-area .accordion-container .accordion-title.open::after {
    background: url(../images/remove-outline1.svg) no-repeat;
}
.new-faq .faq-area .accordion-container .accordion-title::after {
    padding-right: 0.5em;
    position: absolute;
    top: 10px;
    right: 0;
    content: "";
    background: url(../images/add-circle1.svg) no-repeat;
    width: 30px;
    height: 30px;
}

.cta-footer-area {
    padding: 100px 0;
    background: url(../images/cta-footer-banner.jpg) no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}
.cta-footer-area:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(4 8 8 / 80%);
}
.cta-footer-area .maindiv{position: relative;}



/*---new design 07-03-2026---*/

.top-sidebar-wrapper {
    margin-top: 50px;
}
.top-sidebar-wrapper .sidebar {
     width: 100%; 
    margin-bottom: 20px; 
}
.top-sidebar-wrapper .sidebar .sidebar-inner {
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 10px;
    position: sticky;
    top: 0;
    left: 0;
}
.top-sidebar-wrapper .content-zone {
    width: 100%;
}
.table-of-content {
    list-style-type: disc;
    padding-left: 15px;
    color: #4791f1;
}
.table-of-content li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px dotted #b6b5b5;
}
.table-of-content li a {
    color: #4791f1;
    font-style: italic;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    font-size: 14px;
    line-height: 24px;
}

.table-of-content li a:hover {
    color: #4791f1;
}
.sidebar-inner .h3 {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
}

.highlight2 {
    background: #f1f1f1;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e2e2e2;
} 

.new-grey-bx {
    background: #f1f1f1;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid #ddd;
    margin-bottom: 30px;
}
.new-grey-bx .icon img {
    width: 80px;
    height: 80px;
}

.new-grey-bx .h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 20px 0;
}
.new-img-text-zone .row {
    padding-top: 30px;
    padding-bottom: 15px;
    border-bottom: 1px dotted rgb(221 221 221 / 80%);
    margin-bottom: 15px;
}
.new-img-text-zone.pt-0 .row {
     padding-top: 0px;
}
.new-img-text-zone .row:last-child {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.new-grey-bx.icon-bx-display {
    border-radius: 12px;
}
.new-grey-bx.icon-bx-display .icon img {
    width: 50px;
    height: 50px;
}
.new-grey-bx.icon-bx-display .h3 {
    margin: 5px 0 0 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.new-grey-bx .h4 {
    margin: 5px 0 0 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
main .equiry.cta a {
    color: inherit;
}
.equiry.cta {
    padding: 70px 0;
    background: url(../images/cta-footer-banner.jpg) no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}
.equiry.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(4 8 8 / 80%);
}
.equiry.cta .maindiv {
    position: relative;
}

.new-img-text-zone .h3 {
    font-size: 22px;
    line-height: 32px; 
}
html{
    scroll-behavior: smooth;  
}
.f-address{
    text-align: left;
    display: inline-block;
    vertical-align: top;
}

/* slider */

.slide-disc .irs--big .irs-single, .slide-disc .irs--big .irs-max, .slide-disc .irs--big .irs-min{
    display: none;
}

.slide-disc .irs--big .irs-bar{
    border: 1px solid #179bae;
    background: #179bae;
}

.slide-disc {
    display: flex;
    justify-content: center;
    max-width: 100%;
    width: 100%;
}
.slide-disc .value-amt {
    width: 126px;
    margin: 0 0px;
}

.slide-disc .slide-wrap {
    width: 85%;
    position: relative;
    top: -23px;
}

.slide-disc .irs--big .irs-line{
    top: 38px;
    height: 5px;
}

.slide-disc .irs--big .irs-handle{
    top: 30px;
    width: 20px;
    height: 20px;
    background: #179bae;
}

.banner-slider01 {
    text-align: center;
}
.banner-slider01 span.h3 {
    color: var(--orange);
    font-size: 24px;
}
.list.text-left {
    word-break: break-word;
}
main .bg_blue p a {
    color: #ffcb04;
    text-decoration: underline;
}


/*--calculator page starts--*/
.calulator_bg{
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 1rem;
      /*background-image:
        radial-gradient(ellipse 60% 40% at 20% 10%, rgba(27,138,126,0.10) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 90%, rgba(27,138,126,0.07) 0%, transparent 70%);*/
}
.calulator_bg .calculator {
      display: flex;
      width: 100%;
      max-width: 820px;
      background: var(--card);
      border-radius: 20px;
      box-shadow:
        0 2px 6px rgba(0,0,0,0.04),
        0 8px 32px rgba(0,0,0,0.08),
        0 0 0 1px rgba(27,138,126,0.07);
      overflow: hidden;
    }

    /* ── LEFT PANEL ─────────────────────────────── */
    .calulator_bg .left {
      flex: 1.1;
      padding: 2.2rem 2rem;
      border-right: 1px solid var(--border);
    }

    .calulator_bg .panel-title {
      font-size: 1.35rem;
      color: var(--navy);
      margin-bottom: 1.8rem;
      letter-spacing: -0.3px;
    }

    .calulator_bg .field-label {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.7px;
      margin-bottom: 0.5rem;
      display: block;
    }

    /* Amount input */
    .calulator_bg .amount-wrap {
      display: flex;
      align-items: stretch;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      transition: border-color 0.2s;
      margin-bottom: 1.8rem;
    }
    .calulator_bg .amount-wrap:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-glow); }

    .calulator_bg .currency-badge {
      background: var(--teal-light);
      color: var(--teal-dark);
      font-weight: 700;
      font-size: 1rem;
      padding: 0 0.9rem;
      display: flex;
      align-items: center;
      border-right: 1.5px solid var(--border);
    }

    .calulator_bg #amount {
      flex: 1;
      border: none;
      outline: none;
      font-size: 1rem;
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      padding: 0.7rem 0.9rem;
      background: transparent;
    }
    .calulator_bg #amount::-webkit-inner-spin-button { -webkit-appearance: none; }

    .calulator_bg #amount_01 {
      flex: 1;
      border: none;
      outline: none;
      font-size: 1rem;
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      padding: 0.7rem 0.9rem;
      background: transparent;
    }
    .calulator_bg #amount_01::-webkit-inner-spin-button { -webkit-appearance: none; }

    /* Slider group */
    .calulator_bg .slider-group { margin-bottom: 1.8rem; }

    .calulator_bg .slider-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.7rem;
    }

    .calulator_bg .slider-badge {
      background: var(--teal);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.22rem 0.65rem;
      border-radius: 20px;
      letter-spacing: 0.3px;
    }

    /* Custom range slider */
    .calulator_bg input[type="range"] {
      -webkit-appearance: none;
      width: 100%;
      height: 5px;
      border-radius: 99px;
      background: var(--border);
      outline: none;
      cursor: pointer;
      transition: background 0.2s;
    }
    .calulator_bg input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--teal-glow), 0 2px 8px rgba(27,138,126,0.35);
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .calulator_bg input[type="range"]::-webkit-slider-thumb:active {
      transform: scale(1.15);
      box-shadow: 0 0 0 4px #fff, 0 0 0 7px var(--teal-glow), 0 3px 12px rgba(27,138,126,0.45);
    }
    .calulator_bg input[type="range"]::-moz-range-thumb {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: var(--teal);
      border: 3px solid #fff;
      cursor: pointer;
    }

    .calulator_bg .range-limits {
      display: flex;
      justify-content: space-between;
      font-size: 0.7rem;
      color: var(--muted);
      margin-top: 0.35rem;
    }

    .calulator_bg .disclaimer {
      font-size: 0.72rem;
      color: var(--muted);
      line-height: 1.5;
      margin-top: 0.5rem;
      padding-top: 1.2rem;
      border-top: 1px solid var(--border);
    }

    /* ── RIGHT PANEL ─────────────────────────────── */
    .calulator_bg .right {
      flex: 1;
      padding: 2.2rem 2rem;
      background: var(--result-bg);
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .calulator_bg .results-title {
      font-size: 1.35rem;
      color: var(--navy);
      margin-bottom: 1.4rem;
      letter-spacing: -0.3px;
    }

    .calulator_bg .result-item {
      display: flex;
      flex-direction: column;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border);
    }
    .calulator_bg .result-item:last-of-type { border-bottom: none; }

    .calulator_bg .result-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.6px;
      margin-bottom: 0.15rem;
    }

    .calulator_bg .result-value {
      font-size: 1.65rem;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: -0.5px;
      transition: transform 0.2s, opacity 0.2s;
      font-family: 'DM Serif Display', serif;
    }
    .calulator_bg .result-value.flash {
      transform: scale(1.05);
      opacity: 0.7;
    }

    .calulator_bg .borrow-btn {
      margin-top: 1.5rem;
      width: 100%;
      padding: 0.95rem 1.2rem;
      background: var(--orange);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem;
      font-weight: 600;
      letter-spacing: 0.3px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      text-align: center;
    }
    .calulator_bg .borrow-btn:hover {
      background: #cb591f;
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(27,138,126,0.3);
    }
    .calulator_bg .borrow-btn:active { transform: translateY(0); }

    @media (max-width: 600px) {
      .calulator_bg .calculator { flex-direction: column; }
      .calulator_bg .left { border-right: none; border-bottom: 1px solid var(--border); }
    }

/*--calculator page ends here*/


/*--cookie area--*/
.cookie-area {
    padding: 20px 0;
    background: #fff;
    box-shadow: rgba(0, 0, 0, .5) 0px 5px 50px;
}
.cookie-text {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.cookie-text .text-zone {
    width: 57%;
}
.cookie-area p {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}
.cookie-text .button-zone {
    width: 40%;
}
.cookie-text .button-zone .theme-btn {
    margin-right: 15px;
}
/*.cookie1 {
    position: relative;
}*/
.cookie-area {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 99;
    display: none;
}
#cookie-setting {
    text-decoration: underline;
    margin-right: 30px;
    color: #125ab8;
}


/*--modal popup--*/
.modal {
    position: fixed;
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.modal.is-visible {
    visibility: visible;
}

.modal-overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.modal-wrapper {
    position: absolute;
    z-index: 9999;
    bottom: 20%;
    left: 45%;
    width: 40em;
    margin-left: -16em;
    background-color: #fff;
    box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
}

.modal-transition {
    transition: all 0.3s 0.12s;
    transform: translateY(-10%);
    opacity: 0;
}

.modal.is-visible .modal-transition {
    transform: translateY(0);
    opacity: 1;
}

.modal-header,
.modal-content {
    padding: 1em;
}



.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    color: #aaa;
    background: none;
    border: 0;
    font-size: 22px;
    cursor: pointer;
}

.modal-close:hover {
    color: #777;
}

.modal-heading {
    font-size: 1.125em;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modal-content > *:first-child {
    margin-top: 0;
}

.modal-content > *:last-child {
    margin-bottom: 0;
}





.modal-accordian-zone1 .holder1 .accordion-title {
    background: #f1f1f1;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;

}
.modal-accordian-zone1 .holder1 .accordion-content {
    padding: 0 15px;
}
.modal-content p {
    font-size: 15px;
    line-height: 25px;
}
.button-right-area {
    display: flex;
    justify-content: flex-end;
}
.modal-body .theme-btn {
    font-size: 15px;
    line-height: 25px;
    padding: 10px 20px;
}


/*toogle btn*/

.switch {
  position: relative;
  display: inline-block;
  width: 53px;
  height: 23px;
}

.switch .toggle-btn {
  display: none;
}

.slider1 {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cac7c7;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider1:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggle-btn:checked + .slider1 {
  background-color: #2ab934;
}

.toggle-btn:focus + .slider1 {
  box-shadow: 0 0 1px #2196F3;
}

.toggle-btn:checked + .slider1:before {
  -webkit-transform: translateX(25px);
  -ms-transform: translateX(25px);
  transform: translateX(25px);
}

/*------ ADDED CSS ---------*/
.on {
  display: none;
}

.on, .off {
  color: black;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  font-size: 10px;
  font-family: Verdana, sans-serif;
  user-select:none;
}


.slider1.round {
  border-radius: 34px;
}

.slider1.round:before {
  border-radius: 50%;
}

.c-text {
    position: relative;
}
.c-text:before {
    content: "Enabled";
    font-weight: 600;
    top: -5px;
    position: relative;
}
.c-text.test:before {
    content: "Disabled";
}

/*toogle btn ends*/

.modal-accordian-zone1 .text-left {
    width: calc(100% - 150px);
    cursor: pointer;
}


.cal-bg{background: var(--bg);}

/*--table css starts---*/

table.newtable {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 20px; 
 font-size: 16px;
 line-height: 26px;
}

table.newtable caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {

}

table.newtable th,
table.newtable td {
  padding: .625em;
  text-align: center;
  border: 1px solid #086b7a;
}

table.newtable th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #179bae;
  color: #fff;
}
.row.center-flex {
    justify-content: center;
    column-gap: 30px;
}

.new-grey-bx.icon-bx-display.md .icon img {
    width: 70px;
    height: 70px;
}
.img1 {
    width: 100px;
}
.single-p .img-bx {
    width: 100%;
    height: 230px;
    overflow: hidden;
}
.single-p .img-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-p {
    margin-bottom: 30px;
}
.btn-flex .theme-btn {
    margin: 6px;
}

@media screen and (max-width: 600px) {
  table.newtable {
    border: 0;
  }

  table.newtable caption {
    font-size: 1.3em;
  }
  
  table.newtable thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table.newtable tr {
    border-bottom: 1px solid #086b7a;
    display: block;
    margin-bottom: .625em;
  }
  table.newtable.center1 tr {
    background: #f6f6f6;
  }
  
  table.newtable td {
    border-bottom: 0;
    display: block;
    font-size: .8em;
    text-align: right;
  }
   table.newtable.center1 td {
    text-align: left;
   }
  
  table.newtable td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  table.newtable.center1 td::before {
    width: 100%;
  }
  
  table.newtable td:last-child {
    border-bottom: 0;
  }
}
/*--table css ends*/

.apply-btn-fix a {
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    text-decoration: none;
    background: #03515c;
    color: #fff;
    font-weight: 700;
    display: block;
    position: fixed;
    bottom: -1px;
    width: 240px;
    padding-bottom: 9px;
    z-index: 9;
    left: calc(50% - 120px);
    box-shadow: 0px 0px 8px rgb(12 12 12 / 80%);
    text-align: center;
}

.scroll-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 35px;
    transition: background .5s;
    z-index: 11;
    text-decoration: none
}

.scroll-top .fa {
    width: 40px;
    height: 40px;
    background: var(--skyblue);
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}


/*new home form*/

/* Form Container */
        .wizard-container {
            background-color: var(--primary-bg);
            color: #ffffff;
            width: 100%;
            max-width: 600px;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            box-sizing: border-box;
            margin: 0 auto;
        }

        .wizard-container h2 {
            text-align: center;
            margin-top: 0;
            font-weight: 600;
            margin-bottom: 30px;
        }

        /* Progress Bar */
        .progress-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }

        .progress-bar::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            height: 2px;
            width: 100%;
            background-color: rgba(255,255,255,0.2);
            z-index: 1;
        }

        .step-dot {
            width: 30px;
            height: 30px;
            background-color: #115965;
            border: 2px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            z-index: 2;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .step-dot.active {
            background-color: var(--button-orange);
            border-color: #ffffff;
        }

        /* Form Steps */
        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
            animation: fadeIn 0.4s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .home-form-area label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 16px;
        }

        /* Inputs */
        .home-form-area input[type="text"], .home-form-area input[type="email"], .home-form-area input[type="tel"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: var(--input-bg);
            color: #ffffff;
            font-size: 16px;
            box-sizing: border-box;
        }

        .home-form-area input:focus {
            outline: none;
            border-color: #ffffff;
            background-color: rgba(255,255,255,0.15);
        }

        
           .home-form-area input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
                color: #fff;
           }
          .home-form-area input::-moz-placeholder { /* Firefox 19+ */
               color: #fff;
          }
          .home-form-area input:-ms-input-placeholder { /* IE 10+ */
               color: #fff;
          }
          .home-form-area input:-moz-placeholder { /* Firefox 18- */
               color: #fff;
          }

        /* Grid Button Selection for Step 1 */
        .funding-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 15px;
        }

        .amount-btn {
            background-color: var(--input-bg);
            border: 1px solid var(--border-color);
            color: white;
            padding: 16px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            transition: all 0.2s ease;
        }

        .amount-btn:hover {
            background-color: rgba(255,255,255,0.2);
            border-color: #ffffff;
        }

        /* Navigation Buttons */
        .btn-nav-container {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .btn-nav {
            background-color: var(--button-orange);
            color: white;
            border: none;
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-nav:hover {
            background-color: #e66e32;
        }

        .btn-prev {
            background-color: transparent;
            border: 1px solid var(--border-color);
            color: white;
        }

        .btn-prev:hover {
            background-color: rgba(255,255,255,0.1);
        }

        /* Terms text styling matching original site background footer rules */
        .terms-text {
            font-size: 12px;
            line-height: 1.6;
            margin-top: 15px;
            opacity: 0.9;
        }

        .terms-text a {
            color: #ffffff;
            text-decoration: underline;
        }

        /* Anti-Bot Invisible Honeypot Field */
        .hidden-honeypot {
            display: none !important;
            tabindex: -1;
            autocomplete: off;
        }

        .home-form-area {
            padding: 60px 0;
            background: #f1f1f1;
        }


/*new home form ends*/

main .sky_bdr.asset:hover a {
    color: #ffcb04;
}


  /* Marchant Calculator start */
  .mca-calc-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    max-width: 450px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-family: sans-serif;
    color: #333;
    margin: 0 auto 40px auto;
  }
  .mca-calc-box h3 { color: #003366; margin-top: 0; }
  
  /* Input Fields */
  .mca-input-group { margin-bottom: 15px; }
  .mca-input-group label { display: block; font-weight: 600; font-size: 0.9em; margin-bottom: 5px; }
  .mca-input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }
  
  /* Results Styling */
  .mca-results {
    background-color: #f4f7f9; 
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
  }
  .mca-results p { margin: 8px 0; font-size: 0.95em; }
  .mca-results span { color: #007f87; font-weight: bold; }

  /* Marchant Calculator ends */