:root{
    --white: #ffffff;
    --black: #241F20;
    --text: #696767;
    --primary-color: linear-gradient(180deg, #3C70B7 0%, #9DC540 100%);
    --secondary-color: #3C70B7;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    font-weight: 400;
    scroll-behavior: smooth;
}
a,.btn,button,.button,img{
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
a {
    text-decoration: none !important;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.form-control:focus,
.form-select:focus,
.btn-close:focus{
    border-color: var(--secondary-color) !important;
    outline: 0;
    box-shadow: unset;
}

/* scrollbar styling */
/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    /* display: none; */
}  
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--secondary-color); 
    border-radius: 10px;
}
@-moz-document url-prefix() {
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--secondary-color) transparent;
    }
}
::selection {
    color: #FFFFFF;
    background: var(--secondary-color);
}
.header {
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    background-color: var(--black, #241F20);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.navScrolled {
    -webkit-box-shadow: 0px 4px 24px 0px #5D59490F;
    box-shadow: 0px 4px 24px 0px #5D59490F;
    animation: scrollSticky 0.5s ease-out;
    -webkit-animation: scrollSticky 0.5s ease-out;
}
@keyframes scrollSticky {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.header .navbar-nav li .nav-link {
    position: relative;
    color: var(--white, #FFFFFF);
    text-transform: capitalize;
    font-weight: 400;
    display: flex;
    align-items: center;
}
.header .navbar-nav li .nav-link span{
    padding-left: 8px;
}
.header .navbar-nav {
    gap: 20px;
    align-items: center;
}
.header .navbar-nav li .nav-link:hover,
.header.navScrolled .navbar-nav li .nav-link:hover,
.header .navbar-nav li .nav-link.active {
    color: #9DC540;
}
.comman-py{
    padding: 80px 0;
}
.navbar-toggler{
    color: #9DC540;
    border-color: #9DC540;
}
.mob_login_btn svg path{
    fill: #9DC540;
}
.navbar-dasktop-brand,.acc-login-box{
    min-width: 300px;
}
.navbar-toggler:focus{
    box-shadow: unset;
}
.offcanvas{
    background-color: var(--white);
    transition: transform 0.6s ease;
}
.header .offcanvas{
    background-color: var(--black, #241F20);
}
.primary-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    border: 1px solid var(--secondary-color, #3C70B7);
    color: var(--white, #FFFFFF);
    background-color: var(--secondary-color, #3C70B7);
}
.primary-btn:hover{
    color: var(--secondary-color, #3C70B7);
    background-color: transparent;
}
.secondary-btn{
    color: var(--secondary-color, #3C70B7);
    background-color: transparent;
}
.secondary-btn:hover{
    color: var(--white, #FFFFFF);
    background-color: var(--secondary-color, #3C70B7);
}
.green_btn{
    color: var(--black);
    border-color: #9DC540;
    background-color: #9DC540;
}
.green_btn:hover,.green_btn2{
    color: #9DC540;
    background-color: transparent;
}
.green_btn2:hover{
    color: var(--black);
    background-color: #9DC540;
}
.primary-btn:disabled{
    border: unset;
    color: #6C7278;
    background-color: #E9E9E9;
}
.header .primary-btn{
    padding: 12px 45px;
}
/*============|| home banner styling start ||============*/
.home_section{
    padding-top: 180px;
}
.home_section_left{
    margin-bottom: 60px;
}
.home_section_left h2{
    font-size: 24px;
    font-weight: 400;
    color: var(--black, #241F20);
    font-family: "Rajdhani", sans-serif;
}
.home_section_left h1{
    font-size: 70px;
    font-weight: 700;
    line-height: 80px;
    color: var(--black, #241F20);
    font-family: "Rajdhani", sans-serif;
}
.home_section_left p{
    font-size: 18px;
}
.text{
    font-weight: 400;
    line-height: 30px;
    color: var(--text, #696767);
}
.trading_platform{
    padding: 80px 50px;
    border-radius: 30px;
    background-image: url("../img/trading_platform_bg.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-color: var(--black, #241F20);
}
.title{
    font-size: 46px;
    font-weight: 700;
    color: var(--black, #241F20);
    font-family: "Rajdhani", sans-serif;
}
.multicolor{
    background: var(--primary-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.trading_platform_box{
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #FFFFFF4D;
}
.trading_platform_icon{
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: var(--primary-color);
    flex-shrink: 0;
}
.about_unityHedge_list li{
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.about_unityHedge_list li:not(:last-child){
    margin-bottom: 12px;
}
/*============|| home banner styling end ||============*/

/*============|| Key Features styling start ||============*/
.multi_bg{
    background: linear-gradient(180deg, rgba(22, 120, 185, 0.05) 0%, rgba(139, 179, 63, 0.05) 100%);
}
.heading_box{
    margin-bottom: 50px;
}
.key_features_icon{
    width: 80px;
    height: 80px;
    border-radius: 15px;
    transition: all 0.3s;
    background: linear-gradient(180deg, rgba(22, 120, 185, 0.1) 0%, rgba(139, 179, 63, 0.1) 100%);
}
.key_features_cont h2{
    font-size: 26px;
    font-weight: 600;
}
.key_features_box {
    position: relative;
    padding: 25px;
    height: 100%;
    border-radius: 15px;
    background: transparent;
    color: #fff;
    border: 1px solid #5553534D;
    background-clip: padding-box;
    transition: all 0.3s;
}
.key_features_box::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 15px;
    background: linear-gradient(180deg, #3C70B7 0%, #9DC540 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.key_features_box:hover::before {
    opacity: 1;
}
.key_features_box:hover {
    border: 1px solid transparent;
    background: linear-gradient(180deg, rgba(22,120,185,0.1) 0%, rgba(139,179,63,0.1) 100%);
    box-shadow: 0 0 40px rgba(0,0,0,0.08);
}
.key_features_box:hover .key_features_icon{
    background: linear-gradient(180deg, #3C70B7 0%, #9DC540 100%);
}
.key_features_box:hover .key_features_icon svg path{
    fill: var(--white, #FFFFFF);
}
/*============|| Key Features styling end ||============*/

/*============|| How to Join styling start ||============*/
.how_to_join_section{
    background-image: url("../img/how_to_join_bg.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-color: var(--black, #241F20);
}
.how_to_join_box {
    position: relative;
    padding: 25px;
    border-radius: 15px;
    background-color: transparent;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s;
}
.how_to_join_box::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 15px;
    background: linear-gradient(142.65deg, rgba(22, 120, 185, 0) 0%, #8BB33F 99.36%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}
.how_to_join_icon{
    width: 80px;
    height: 80px;
    background-color: var(--white, #FFFFFF);
}
.num_htj{
    position: absolute;
    top: 2px;
    right: 15px;
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(180deg, #1678B9 0%, rgba(139, 179, 63, 0.4) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Rajdhani", sans-serif;
}
.how_to_join_wrap .col{
    position: relative;
}
.how_to_join_wrap .col:not(:last-child)::before{
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    right: -12px;
    background-image: url("../img/right-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
}
.how_to_join_box:hover{
    background: linear-gradient(180deg, rgba(22, 120, 185, 0.08) 0%, rgba(139, 179, 63, 0.08) 100%);
}
.how_to_join_box:hover .how_to_join_icon{
    background: var(--primary-color);
}
.how_to_join_box:hover .how_to_join_icon svg path{
    fill: var(--white, #FFFFFF);
}
.how_to_join_cont h2{
    font-family: "Rajdhani", sans-serif;
}
/*============|| How to Join styling end ||============*/

/*============|| Getting Started styling start ||============*/
.getting_started .about_unityHedge_cont h3{
    font-size: 30px;
    font-family: "Rajdhani", sans-serif;
}
/*============|| Getting Started styling end ||============*/

/*============|| Why Choose styling start ||============*/
.why_choose_wrap{
    padding: 80px 0;
}
.why_choose_circlePhone{
    max-width: 570px;
    margin: auto;
}
.why_choose_phone_img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.why_choose_circle_img{
    max-width: 460px;
    margin: auto;
    animation: rotate 20s linear infinite;
}
@keyframes rotate {
    from {
    transform: rotate(0deg);
    }
    to {
    transform: rotate(360deg);
    }
}
@-webkit-keyframes rotate {
    from {
    transform: rotate(0deg);
    }
    to {
    transform: rotate(360deg);
    }
}
.why_choose_box .title{
    font-size: 26px;
}
.position-absolute_wc1,.position-absolute_wc2{
    width: 100%;
    position: absolute;
    left: 12px;
}
.position-absolute_wc1{
    top: 50px;
}
.position-absolute_wc2{
    bottom: 0;
}
/*============|| Why Choose styling end ||============*/

/*============|| Referral Benefits styling start ||============*/
.referral_box {
    position: relative;
    height: 100%;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
    background-color: var(--white, #FFFFFF);
    border-bottom: 3px solid #6D9B7C;
}
.referral_icon{
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(22, 120, 185, 0.1) 0%, rgba(139, 179, 63, 0.1) 100%);
}
.referral_count{
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, #1678B9 0%, rgba(139, 179, 63, 0.4) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Rajdhani", sans-serif;
}
.referral_cont .title{
    font-size: 26px;
    font-weight: 600;
}
.referral_box:hover .referral_icon{
    background: var(--primary-color);
}
.referral_box:hover .referral_count{
    color: var(--white, #FFFFFF);
    background: unset;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}
/*============|| Referral Benefits styling end ||============*/

/*============|| Reach Out styling start ||============*/
.reach_out_inner{
    overflow: hidden;
    border-radius: 30px;
    background-color: var(--black, #241F20);
}
.reach_out_cont{
    padding: 50px;
    height: 100%;
    background-color: #FFFFFF1A;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.reach_out_img{
    padding: 50px;
}
/*============|| Reach Out styling end ||============*/

/*============|| Clients Say styling start ||============*/
.client_box{
    position: relative;
    padding: 25px;
    padding-top: 50px;
    border-radius: 15px;
    border: 1px solid #231A1C4D;
}
.client_swiper{
    padding: 35px 0;
}
.client_userimg{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.client_userimg img{
    width: 100%;
    height: 100%;
}
.client_user{
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px;
    border-radius: 75px;
    background-color: var(--white, #FFFFFF);
    border: 1px solid #231A1C4D;
}
.client_star_list li i,.client_star_list li svg{
    color: #231A1C33;
}
.client_star_list li i.fill,.client_star_list li svg.fill{
    color: #FFE100;
}
.clients_say_swiper{
    max-width: 95%;
    margin-left: auto;
}
.client_box::before{
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 15px;
    background: linear-gradient(180deg, #3C70B7 0%, #9DC540 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;

}
.client_box:hover{
    border: 1px solid transparent;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
}
.client_box:hover::before {
    opacity: 1;
}
.client_box:hover .client_user{
    border-color: var(--secondary-color, #3C70B7);
}
.clients_say_swiper .swiper-pagination-bullet{
    width: 30px;
    height: 5px;
    border-radius: 65px;
    background-color: #0A0B144D;
    opacity: 1;
}
.clients_say_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: linear-gradient(180deg, #3C70B7 0%, #9DC540 100%);
}
.clients_say_swiper .swiper-pagination{
    bottom: -18px;
}
/*============|| Clients Say styling end ||============*/

/*============|| Get the app styling start ||============*/
.get_the_app_section {
    padding: 35px 0;
    background: url("../img/get_the_app_bg.png"),linear-gradient(90.82deg, #1678B9 -0.21%, #8BB33F 100%);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}
.get_the_app_main .title{
    font-size: 40px;
}
/*============|| Get the app styling end ||============*/

/*============|| footer styling start ||============*/
.footer{
    background-color: #F6F8F8;
}
.footer_top{
    padding-top: 40px;
    padding-bottom: 25px;
}
.footer_box h2{
    font-size: 20px;
    font-weight: 500;
    color: var(--black, #241F20);
    font-family: "Rajdhani", sans-serif;
    margin-bottom: 15px;
}
.footer_link{
    font-weight: 400;
    color: var(--text, #696767);
}
.footer_link_list li:not(:last-child){
    margin-bottom: 10px;
}
.footer_link:hover{
    color: var(--secondary-color, #3C70B7)
}
.fc_icon{
    width: 35px;
    height: 35px;
    color: var(--white, #FFFFFF);
    background: var(--primary-color);
}
.footer_contact_list li:not(:last-child){
    margin-bottom: 10px;
}
.footer_social_list .fc_icon{
    border: 1px solid transparent;
}
.footer_social_list .fc_icon:hover{
    background: transparent;
    color: var(--secondary-color, #3C70B7);;
    border-color: var(--secondary-color, #3C70B7);
}
.footer_bottom{
    border-top: 1px solid #0A0B1433;
    padding: 15px 0;
}
/*============|| footer styling end ||============*/

/*============|| About us styling start ||============*/
.home_comman_banner{
    padding-top: 120px;
    background: linear-gradient(180deg, rgba(22, 120, 185, 0.15) 0%, rgba(139, 179, 63, 0.15) 100%);
}
.home_comman_cont .breadcrumb .breadcrumb-item a{
    color: var(--text, #696767);
}
.home_comman_cont .breadcrumb-item+.breadcrumb-item::before {
    content: '\f105';
    font-family: 'FontAwesome';
    color: var(--text, #696767);
}
.home_comman_cont .breadcrumb .breadcrumb-item.active{
    color: var(--black, #241F20);
    font-weight: 700;
}
.unityhedge_slide{
    overflow: hidden;
    padding: 18px 0;
    background: linear-gradient(180deg, rgba(22, 120, 185, 0.15) 0%, rgba(139, 179, 63, 0.15) 100%);
    backdrop-filter: blur(180px)
}
.shadowbit-slider1{
    width: 102%;
    margin: auto -11px;
}
.shadowbit-slider {
  width: 103%;
  overflow: hidden;
  position: relative;
}
.shadowbit-track {
  display: flex;
  animation: scrollLeft 20s linear infinite;
  gap: 110px;
}
.shadowbit-track h2{
    position: relative;
    font-size: 25px;
    font-weight: 500;
    flex-shrink: 0;
    margin: 0;
    line-height: normal;
}
.shadowbit-track h2::before{
    position: absolute;
    content: '';
    left: -65px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../img/uStar.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
}
/* Scroll left */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.mission_vission_box{
    position: relative;
    padding: 35px 25px 0;
    border-radius: 15px;
    border: 1px solid #241F204D;
    background-color: var(--white, #FFFFFF);
    transition: all 0.3s;
}
.mission_img{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.mission_vission_box::before{
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 15px;
    background: linear-gradient(180deg, #3C70B7 0%, #9DC540 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mission_vission_box:hover{
    border-color: transparent;
}
.mission_vission_box:hover::before{
    opacity: 1;
}
.mission_vission_cont{
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0 25px 25px;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #241F204D;
    background-color: var(--white, #FFFFFF);
    transition: all 0.3s;
}
.mission_vission_box:hover .mission_vission_cont{
    border-color: transparent;
    background: linear-gradient(180deg, #3C70B7 0%, #9DC540 100%);
}
.mission_vission_box:hover .mission_vission_cont h2,.mission_vission_box:hover .mission_vission_cont p{
    color: var(--white, #FFFFFF);
}
.faq_main .accordion .accordion-item{
    position: relative;
    border: unset;
    border-radius: 15px;
    box-shadow: 0px 0px 40px 0px #0000001A;
}
.faq_main .accordion .accordion-item:not(:last-child){
    margin-bottom: 20px;
}
.faq_main .accordion .accordion-item .accordion-button{
    border-radius: 15px;
    padding: 25px;
    font-size: 26px;
    font-weight: 600;
    font-family: "Rajdhani", sans-serif;
    color: var(--black, #241F20);
    text-transform: capitalize;
}
.faq_main .accordion .accordion-item .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: unset;
}
.faq_main .accordion .accordion-item .accordion-button:focus{
    box-shadow: unset;
}
.faq_main .accordion .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}
.faq_main .accordion .accordion-item .accordion-body{
    padding: 25px;
    padding-top: 0;
}
.faq_main .accordion .accordion-item .accordion-button::after{
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
    background: 
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%236D9B7C' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),
        linear-gradient(180deg, rgba(22, 120, 185, 0.1) 0%, rgba(139, 179, 63, 0.1) 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px, cover;
    border-radius: 50%;
}
.faq_main .accordion .accordion-item .accordion-button:not(.collapsed)::after{
    background: 
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),
        linear-gradient(180deg, #3C70B7 0%, #9DC540 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px, cover;   
}
.faq_main .accordion .accordion-item::before{
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 15px;
    background: linear-gradient(180deg, #3C70B7 0%, #9DC540 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.faq_main .accordion .accordion-item.active::before{
    opacity: 1;
}
.position-absolute_cv1,.position-absolute_cv2 {
    position: absolute;
    width: 100%;
    top: 0;
}
.position-absolute_cv2{
    top: unset;
    bottom: 0;
}
.core_values_section .why_choose_circlePhone{
    overflow: hidden;
}
.core_values_1 .line{
    position: absolute;
    top: -80px;
    left: 0;
    width: 174%;
    height: 160px;
}
.core_values_1 .line path {
    stroke: url(#grad1);
    stroke-width: 1;
    fill: none;
}
.core_values_box .line path {
    vector-effect: non-scaling-stroke;
}
.core_values_box{
    max-width: 298px;
}
.core_values_2 .line{
    transform: rotateY(180deg);
    left: -198px;
}
.core_values_3 .line{
    width: 160%;
}
.core_values_4 .line{
    left: -154px;
}
/*============|| About us styling end ||============*/

/*============|| Features styling start ||============*/
.drive_result_box {
    position: relative;
    padding: 50px;
    border-radius: 40px;
    background-color: var(--white, #FFFFFF);
}
.drive_result_box::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(96.94deg, #1678B9 1.43%, rgba(139, 179, 63, 0.5) 99%);
    border-radius: 42px;
    z-index: -1;
}
.dr_count{
    font-size: 50px;
    font-weight: 700;
    color: #241f2033;
    font-family: "Rajdhani", sans-serif;
    position: absolute;
    line-height: 1;
    background-color: var(--white, #FFFFFF);
    padding: 0 6px;
    top: -22px;
    left: 45px;
}
.drive_result_cont .key_features_icon{
    background: linear-gradient(180deg, #3C70B7 0%, #9DC540 100%);
}
.drive_result_cont .key_features_icon svg path {
    fill: var(--white, #FFFFFF);
}
.drive_result_box_2::before{
    background: linear-gradient(96.94deg, #8bb33f80 1.43%, #1678B9 99%);
}
.drive_result_box_2 .dr_count{
    left: unset;
    right: 45px;
}
/*============|| Features styling end ||============*/

/*============|| Pricing styling start ||============*/
.plan_box{
    position: relative;
    height: 100%;
    padding: 25px;
    background: transparent;
    border: 1px solid #241F2080;
    border-radius: 15px;
    transition: all 0.3s;
}
.plan_box::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 15px;
    background: linear-gradient(180deg, #3C70B7 0%, #9DC540 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s 
ease;
}
.plan_box h2{
    font-size: 28px;
}
.plan_pricing{
    margin: 40px 0;
    border-radius: 30px;
    padding-top: 30px;
    transition: all 0.3s;
    background: linear-gradient(180deg, rgba(22, 120, 185, 0.05) 0%, rgba(139, 179, 63, 0.05) 100%);
}
.plan_pricing_amnt{
    font-size: 70px;
    font-weight: 700;
    color: var(--black, #241F20);
    line-height: 1;
    font-family: "Rajdhani", sans-serif;
}
.plan_box .about_unityHedge_list li p{
    color: var(--black, #241F20);
}
.plan_box:hover{
    background: var(--white, #FFFFFF);
    box-shadow: 0px 0px 40px 0px #0000001A;
}
.plan_box:hover::before{
    opacity: 1;
}
.plan_box:hover .plan_pricing{
    transition: all 0.3s;
    background: linear-gradient(180deg, rgba(22, 120, 185, 0.15) 0%, rgba(139, 179, 63, 0.15) 100%);
}
.plan_box:hover .secondary-btn {
    color: var(--white, #FFFFFF);
    background-color: var(--secondary-color, #3C70B7);
}
.referral_box:hover .referral_icon svg path{
    fill: #FFFFFF;
}
/*============|| Pricing styling end ||============*/

/*============|| Our Blog styling start ||============*/
.our_blog_box{
    position: relative;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #5553534D;
    transition: all 0.3s;
    height: 100%;
}
.our_blog_box::before{
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 15px;
    background: linear-gradient(180deg, #3C70B7 0%, #9DC540 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.our_blog_img{
    border-radius: 15px;
}
.our_blog_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our_blog_cont h3{
    font-size: 18px;
    font-weight: 600;
    font-family: "Rajdhani", sans-serif;
}
.our_blog_box:hover{
    background: linear-gradient(180deg, rgba(22, 120, 185, 0.1) 0%, rgba(139, 179, 63, 0.1) 100%);
}
.our_blog_box:hover::before{
    opacity: 1;
}
/*============|| Our Blog styling end ||============*/

/*============|| contact us styling start ||============*/
.contactus_box{
    padding: 25px;
    border-radius: 15px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 40px 0px #0000001A;
}
.contactus_box .form-label{
    color: #000000;
    font-weight: 600;
    font-family: "Rajdhani", sans-serif;
}
.contactus_box .form-control{
    padding: 10px;
    color: #000000;
    border-radius: 15px;
    border: 1px solid #69676759;
}
.contactus_box .form-control::placeholder{
    color: #C3C1C1;
}
.contactus_box .form-check-input[type="checkbox"]{
    background-color: #E0E0E0;
}
.contactus_box .form-check-input[type="checkbox"]:checked{
    background-color: #3C70B7;
    border-color: #3C70B7;
}
.contactus_box .form-check-input[type="checkbox"]:focus{
    box-shadow: unset;
}
.contactus_box .form-check-label{
    color: #696767;
}
.contactus_img img{
    height: 100%;
}
.policy_section_wrap .policy_section_wrap_box:not(:last-child){
    margin-bottom: 50px;
}
/*============|| contact us styling end ||============*/

/*============|| Login/Signup styling start ||============*/
.login_signup_body_bg{
    background: linear-gradient(180deg, rgba(22, 120, 185, 0.15) 0%, rgba(139, 179, 63, 0.15) 100%);
    background-attachment: fixed;
}
.login_section{
    padding: 150px 0 60px;
}
.login_main{
    padding: 30px;
    border-radius: 22px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 40px 0px #0000000D;
}
.back_btn{
    color: var(--black, #241F20);
    font-weight: 700;
    border-radius: 30px;
    padding: 10px 10px;
    border: 1px solid #3C70B733;
    transition: all 0.3s;
}
.back_btn span{
    width: 25px;
    height: 25px;
    color: var(--white, #FFFFFF);
    background-color: var(--secondary-color, #3C70B7);
}
.back_btn:hover{
    color: var(--white, #FFFFFF);
    background-color: var(--secondary-color, #3C70B7);
}
.back_btn:hover span{
    color: var(--secondary-color, #3C70B7);
    background-color: var(--white, #FFFFFF);
}
.login_box{
    max-width: 445px;
    margin: auto;
}
.login_form_box{
    padding: 0;
    border-radius: 0;
    box-shadow: unset;
    background-color: transparent;
}
.login_form_box .form-label{
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}
.eye {
    top: 12px;
    right: 20px;
    cursor: pointer;
    color: #696767;
}
.frgt{
    color: var(--secondary-color, #3C70B7);
}
.frgt:hover{
    text-decoration: underline !important;
}
.or_hr::before,.or_hr::after{
    position: absolute;
    content: '';
    width: 45%;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0000001A;
}
.or_hr::before{
    left: 0;
}
.or_hr::after{
    right: 0;
}
.googlr_link{
    border-radius: 40px;
    padding: 11px 30px;
    color: var(--black, #241F20);
    border: 1px solid #241F201A;
}
.login_form_box .otp-input{
    border-radius: 8px;
    text-align: center;
    height: 56px;
}
/*============|| Login/Signup styling end ||============*/

.box_main{
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator_box {
    background: #fff;
    width: 430px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header_cl {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 40px;
    margin: 20px 20px 5px 20px;
}

.content_pd {
    padding: 25px;
}

.label_text {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.calculator_box input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    background: #dcdcdc;
    border-radius: 4px;
    outline: none;
    margin-bottom: 30px;
    font-family: "Rajdhani", sans-serif;
}

    .calculator_box input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        background: #80c57e;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid white;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }

.footer_cal {
    background: linear-gradient(to right, #2e9be4, #76c963);
    color: #fff;
    padding: 20px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-family: "Rajdhani", sans-serif;
}

.calculator_box .footer_cal .balance {
    font-weight: 600;
    font-size: 22px;
    font-family: "Rajdhani", sans-serif;
}

.footer_cal button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    padding: 5px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
}

    .footer_cal button:hover {
        background: rgba(255, 255, 255, 0.35);
    }

.text_group p {
    font-size: 16px;
    font-family: "Rajdhani", sans-serif;
    margin:0;
}

.heading_title {
    font-size: 30px;
    font-weight: 700;
    color: var(--black, #241F20);
    font-family: "Rajdhani", sans-serif;
}

.list_content {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    list-style: none; /* Remove default bullets */
}

.list_content li {
    position: relative;
    padding-left: 30px; /* Create space for the icon */
    margin-bottom: 10px;
}

.list_content li::before {
    content: "\f00c"; /* Unicode checkmark */
    position: absolute;
    left: 0;
    top: 0;
    color: green; /* You can customize the color */
    font-size: 16px;
    line-height: 1.2;
}
.cir_img {
    border-radius: 20px;
}

.title_font {
    font-size: 34px !important;
}

.sub_title {
    font-size: 16px;
}