@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/*
    font-family: "Poppins", sans-serif;
    font-family: "Lato", sans-serif;
    font-family: "Roboto", sans-serif;
 */

@font-face {
    font-family: "Arial_Regular";
    src: url(../../assets/fonts/ARIAL.TTF);
}
@font-face {
    font-family: "Arial_Medium";
    src: url(../../assets/fonts/ArialMdm.ttf);
}
@font-face {
    font-family: "Arial_Bold";
    src: url(../../assets/fonts/ARIALBD.TTF);
}
#particles_bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}
body{
    margin: 0;
    font-family: "Roboto", sans-serif;
    background: #F8F9FA;
    scroll-behavior: smooth;
}
.header_section{
    background: #FFFFFF;
    position: fixed;
    top: 0px;
    right: 0;
    left: 0;
    z-index: 99;
    padding: 6px 0px;
    transition: all 0.5s ease;
}
.header_section.scrolled{
    background-color: #FFFFFF;
}
.navbar-brand{
    font-family: "Sansation", sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #FAC93C !important;
}
.logo_main{
    display: flex;
    align-items: center;
}
.logo_main .logo1_img{
    height: 50px;
    width: auto;
}
.logo_main .logo2_img{
    height: 22px;
    width: auto;
    margin-top: 7px;
}
.header_section .navbar{
    padding: 0;
}
.header_section .navbar-nav{
    align-items: center;
}
.header_section .navbar ul li a {
    font-family: "Roboto", sans-serif !important;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    color: #364153 !important;
}
.header_section .navbar ul li a.active{
    font-weight: 400;
}
.header_section .navbar .nav-link {
    position: relative;
    padding-bottom: 6px;
    padding: 3px 0px 6px 0px;
}
.header_section .navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #364153;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.header_section .navbar .nav-link:hover{
    color: #364153 !important;
}
.header_section .navbar .nav-link:hover::after,
.header_section .navbar .nav-link.active::after {
    transform: scaleX(1);
}
.nav_btns{
    display: flex;
    gap: 20px;
    align-items: center;
}
.nav_btns a button{
    background: #8BC34A;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    padding: 8px 20px; 
    border: none;
}
.hero_section{
    background: transparent;
    height: auto;
    min-height: calc(100vh);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.hero_section::after{
    content: "";
    height: 100%;
    width: 100%;
    /* background-color: rgba(220, 220, 220, 0.6); */
    background-color: rgba(232, 232, 232, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}
#lottie-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* behind content */
}
.hero_text_main{
    width: 100%;
    max-width: 992px;
    margin: auto;
    padding: 15px 10px;
    text-align: center;
    position: relative;
    z-index: 4;
}
.hero_text_main .hero_span{
    background: #00B8DB1A;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    border: 1px solid #00B8DB4D;
    color: #00D3F2;
    padding: 5px 12px;
    text-transform: uppercase;
}
.hero_text_main h1 {
    margin-top: 20px;
    font-weight: 400;
    font-size: 60px;
    text-transform: capitalize;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero_text_main p{
    font-weight: 400;
    font-size: 20px;
    color: #333;
    margin-bottom: 0;
    width: 100%;
    max-width: 768px;
    margin: auto;
    margin-top: 8px;
}
.hero_btns{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.hero_btns button{
    min-width: 240px;
    background-color: #8BC34A;
    box-shadow: 0px 4px 6px -4px #8BC34A33;
    padding: 12px 30px;
    border: none;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #8BC34A;
    box-shadow: 0px 4px 6px -4px #8BC34A33, 0px 10px 15px -3px #8BC34A33;
}
.hero_btns button.hero_btn2{
    border: 2px solid #00B8DB;
    background-color: transparent;
    box-shadow: none;
    color: #00B8DB;
    transition: all 0.3s ease;
}
.hero_btns button.hero_btn2:hover{
    background-color: #00B8DB;
    color: #FFFFFF;
}
.hero_btns_profile{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 28px;
    flex-wrap: wrap;
}
.hero_btns_profile button{
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 10px 20px;
    border: none;
    color: #0D3D35;
    font-weight: 400;
    font-size: 14px;
}
.hero_btns_profiles{
    display: flex;
    gap: 0px;
    align-items: center;
    margin-left: 20px;
}
.hero_btns_profiles img{
    height: 40px; 
    width: 40px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    margin-left: -10px;
    background-color: #FFFFFF;
}
.hero_txt2 h6{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin-bottom: 0;
}
.hero_txt2 p{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    margin-bottom: 0;
    margin-top: 0px;
}
.hero_three_btm_catgs{
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.hero_catg_box{
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}
.hero_catg_box p{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin-bottom: 0;
}
.btn-animate {
    border-radius: 8px;
    position: relative;
    padding: 12px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background: transparent;
    border: 2px solid #ffffff; /* green */
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}
.btn-animate::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: -1;
}
.btn-animate:hover::before {
    transform: translateX(0);
}
.btn-animate:hover {
    color: #0f172a; /* dark text on hover */
}
.hero_img_div img{
    width: 100%;
    max-width: 600px;
    margin: auto;
    border: 6px solid #FFFFFF;
    background-color: #FFFFFF;
    border-radius: 25px;
}
.home_section_one{
    padding: 70px 0px;
    background: transparent;
    border-top: 1px solid #99A1AF;
    /* border-bottom: 1px solid #99A1AF; */
}
.home_sec1_4cards_main{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.home_sec1_4card_body{
    width: 100%;
    max-width: 400px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    box-shadow:  0px 1px 2px -1px #0000001A,  0px 1px 3px 0px #0000001A;
    padding: 20px 16px;
    min-height: 170px;
    margin: auto;
    margin-top: 40px;
    transition: all 0.2s ease;
    cursor: pointer;
    border-top: 2px solid #FFFFFF;
}
.home_sec1_4card_body p{
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0px;
    text-align: center;
    color: #364153; 
    margin-bottom: 0;
    text-transform: capitalize;
    margin-top: 8px;
}
.home_sec1_4card_body:hover{
    transform: translateY(-8px);
    border-top: 2px solid #00B8DB;
}
.home_section_two{
    padding: 80px 0px;
    background: #F5F7F9;
    background: transparent;
}
.title_div{
    margin-top: 40px;
    margin-bottom: 30px;
}
.title_div h1{
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 32px;
    color: #101828;
    text-align: center;
    margin-bottom: 0;
}
.title_div h1::after{
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #5CBCD6 50%, rgba(0, 0, 0, 0) 100%); */
    background: #00B8DB;
    border-radius: 2px;
}
.title_div p{
    font-weight: 400;
    font-size: 20px;
    color: #4A5565;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    margin-top: 30px;
}
.home_sec2_card_body_div{
    background: #FFFFFF;
    border-top: 1px solid #D1D5DC99;
    box-shadow:  0px 1px 2px -1px #0000001A,  0px 1px 3px 0px #0000001A;
    margin-top: 80px;
    padding: 30px 20px;
    min-height: 500px;
    transition: all 0.2s ease;
    cursor: pointer;
    border-top: 2px solid #00B8DB;
}
.home_sec2_card_body_div h1{
    font-weight: 500;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -0.75px;
    color: #101828;
    margin-top: 25px;
}
.home_sec2_card_body_div p{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #4A5565;
    margin-top: 35px;
}
.home_sec2_card_body_div ul{
    padding-left: 20px;
    margin-top: 40px;
}
.home_sec2_card_body_div ul li{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #101828;
    margin-bottom: 8px;
    margin-top: 15px;
}
.home_sec2_card_body_div ul li::marker {
    color: #5CBCD6;
}
.home_sec2_card_body_div:hover{
    transform: translateY(-8px);
}
.home_section_three{
    padding: 80px 0px;
    background: #EEF1F5;
    background: transparent;
}
.home_sec3_card_body_div{
    background: #FFFFFF;
    border-top: 1px solid #D1D5DC99;
    box-shadow: 0px 1px 2px -1px #0000001A, 0px 1px 3px 0px  #0000001A;
    padding: 25px;
    margin-top: 50px;
    min-height: 300px;
    transition: all 0.2s ease;
    cursor: pointer;
    border-top: 2px solid #00B8DB;
}
.home_sec3_card_body_div h5{
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #101828;
    margin-top: 20px;
    text-transform: capitalize;
}
.home_sec3_card_body_div p{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #4A5565;
    margin-top: 20px;
}
.home_sec3_card_body_div:hover{
    transform: translateY(-8px);
}
.home_section_four{
    padding: 80px 0px;
}
.home_sec4_card_body_div{
    background: #FFFFFF;
    border-top: 1px solid #D1D5DC99;
    box-shadow: 0px 1px 2px -1px #0000001A, 0px 1px 3px 0px  #0000001A;
    padding: 25px;
    margin-top: 50px;
    min-height: 330px;
    transition: all 0.2s ease;
    cursor: pointer;
    border-top: 2px solid #00B8DB;
}
.home_sec4_card_body_div:hover{
    transform: translateY(-8px);
}
.home_sec4_card_body_div h5{
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    color: #101828;
    margin-top: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid #D1D5DC99;
    padding-bottom: 10px;
}
.home_sec4_card_body_div ul{
    padding-left: 20px;
    margin-top: 40px;
}
.home_sec4_card_body_div ul li{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #101828;
    margin-bottom: 8px;
    margin-top: 15px;
}
.home_sec4_card_body_div ul li::marker {
    color: #5CBCD6;
}
.home_section_five{
    padding: 80px 0px;
}
.home_sec5_card_body_div{
    background: #FFFFFF;
    border-top: 1px solid #D1D5DC99;
    box-shadow: 0px 1px 2px -1px #0000001A, 0px 1px 3px 0px  #0000001A;
    padding: 35px;
    min-height: 300px;
    margin-top: 50px;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    border-top: 2px solid #00B8DB;
}
.home_sec5_card_body_div h5{
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0px;
    color: #101828;
    margin-top: 20px;
    text-transform: capitalize;
}
.home_sec5_card_body_div p{
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #4A5565;
    margin-top: 20px;
}
.home_sec5_card_body_div:hover{
    transform: translateY(-8px);
}
.home_section_six{
    background: transparent;
    padding: 80px 0px;
}
.contact_form{
    background: #FFFFFF;
    border-top: 1px solid #D1D5DC99;
    box-shadow: 0px 1px 2px -1px #0000001A, 0px 1px 3px 0px  #0000001A;
    padding: 40px;
    max-width: 850px;
    margin: auto;
    border-radius: 8px;
    margin-top: 50px;
}
.form_group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 12px;
}
.form_group label{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #364153;
}
.form_input,
.form_textarea {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #D1D5DC99;
    background-color: #F5F7F9;
    font-size: 16px;
    outline: none;
}
.form_textarea {
    height: 110px;
    resize: none;
}
.form_input:focus,
.form_textarea:focus {
    border-color: #8BC34A;
}
.error_text {
    font-size: 12px;
    color: #dc3545;
    margin-top: 4px;
    display: block;
}
.submit_btn {
    width: 100%;
    padding: 15px;
    background: #8BC34A;
    box-shadow:  0px 4px 6px -4px #8BC34A33, 0px 10px 15px -3px #8BC34A33;
    border: none;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    margin-top: 15px;
    text-transform: uppercase;
}
.submit_btn:disabled {
    background: #9ec5fe;
    cursor: not-allowed;
}
.btn_loader {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
    margin: auto;
}
.submit_btn.loading .btn_text {
    display: none;
}
.submit_btn.loading .btn_loader {
    display: block;
}
@keyframes spin {
    to { 
        transform: rotate(360deg); 
    }
}
.form_status {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
}

.footer_section{
    padding: 80px 0px;
}
.footer_txt1_div h6{
    font-weight: 400;
    font-size: 16px;
    line-height: 22.75px;
    letter-spacing: 0px;
    color: #364153;
    margin-bottom: 0;
    margin-top: 20px;
}
.footer_txt1_div p{
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #5CBCD6;
    margin-top: 15px;
}
.footer_txt1_div a{
    margin-top: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #4A5565;
    text-decoration: none;
    margin-top: 30px;
}
.footer_links_div{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer_links_div h5{
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #101828;
    margin-bottom: 0;
    text-transform: uppercase;
}
.footer_links_div a{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #4A5565;
    text-decoration: none;
}
.footer_links_div a:hover{
    color: #8BC34A;
}
.footer_links_div button{
    background: #8BC34A;
    box-shadow: 0px 4px 6px -4px #8BC34A33, 0px 10px 15px -3px #8BC34A33;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
    max-width: 250px;
}
.footer_links_div p{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #4A5565;
    margin-bottom: 0;
}
.partner_logos{
    margin-top: 60px;
}
.partner_logos h6{
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #101828;
    margin-bottom: 20px;
    text-align: center;
    margin-bottom: 60px;
}
.partner_logo_inner{
    text-align: center;
    background-color: #FFFFFF;
    height: auto;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner_logo_inner img.partner1{
    height: 60px;
    width: auto;
}
.partner_logo_inner img.partner2{
    height: 100px;
    width: auto;
}
.partner_logo_inner img.partner3{
    height: 100px;
    width: auto;
}
.partner_logo_inner img.partner4{
    height: 80px;
    width: auto;
}
.footer_border{
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #99A1AF 50%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    max-width: 100px;
    margin: auto;
    height: 2px;
    margin-top: 50px;
}
.footer_last_txt{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    color: #6A7282;
    margin-top: 30px;
}
.footer_last_card{
    background: #FFFFFF;
    border-top: 1px solid #D1D5DC99;
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 25px;
    margin-top: 30px;
}
.footer_last_card h6{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.footer_last_card p{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #4A5565;
    margin-top: 12px;
    margin-bottom: 0;
}
#backToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    background-color: #8BC34A;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}
#backToTop.show {
    opacity: 1;
    visibility: visible;
    animation: floatUpDown 1.6s ease-in-out infinite;
}
#backToTop:hover {
    animation-play-state: paused;
    background-color: #333;
}
.navbar-toggler{
    border: none !important;
    box-shadow: none !important;
}
#particle_canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
}
.sfl_section {  
    padding: 100px 20px;
}
.sfl_badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 99px;
    background: #00B8DB;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    margin-bottom: 20px;
}
.sfl_cards_main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 48px;
}
.sfl_card_body {
    padding: 24px;
    background: #FFFFFF;
    border-top: 2px solid #00B8DB;
    font-size: 18px;
    font-weight: 500;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.sfl_card_body:hover {
    transform: translateY(-6px);
    border-color: #3fd6a3;
}
.sfl-footer-text {
    width: 100%;
    max-width: 768px;
    margin: auto;
    font-size: 18px;
    color: #4A5565;
    text-align: center;
    margin-top: 30px;
}
.footer_card_body_div{
    background: #FFFFFF;
    border-top: 1px solid #00B8DB;
    box-shadow: 0px 1px 2px -1px #0000001A, 0px 1px 3px 0px  #0000001A;
    padding: 25px;
    margin-top: 50px;
    width: 100%;
}















@media (min-width:1400px){
    .container.manage_container{
        max-width: 1500px;
    }
}
@media (max-width: 1370px){
    .home_sec2_card_body_div{
        margin-top: 50px;
    }
    .nav_btns a button{
        padding: 8px 10px;
    }
}
@media (max-width: 1250px){
    .header_section .navbar ul li a{
        font-size: 12px;
    }
    .logo_main .logo2_img {
        height: 22px;
        width: auto;
    }
    .logo_main .logo1_img {
        height: 45px;
        width: auto;
    }
}
@media (max-width: 992px) {
    .header_section .navbar-nav{
        gap: 25px !important;
        padding: 20px 0px;
        align-items: start;
    }
    .hero_section{
        padding-top: 30px;
    }
    .home_sec1_4cards_main{
        justify-content: center;
        gap: 30px;
    }
    .footer_links_div{
        margin-top: 25px;
    }
    .header_section .navbar ul li a{
        font-size: 16px;
    }
    .hero_text_main h1 {
        font-size: 46px;
    }
    .home_sec2_card_body_div h1 {
        font-weight: 400;
        font-size: 22px;
    }
    .home_sec5_card_body_div{
        padding: 30px 20px;
    }
    .home_sec5_card_body_div h5 {
        font-weight: 400;
        font-size: 18px;
    }
}
@media (max-width: 768px) {}
@media (max-width: 576px) {
    .swiper-wrapper{
        align-items: center;
    }
    .hero_text_main h1 {
        margin-top: 20px;
        font-weight: 400;
        font-size: 32px;
    }
    .title_div h1 {
        font-size: 32px;
    }
    .home_sec2_card_body_div h1{
        font-size: 24px;
    }
    .contact_form{
        padding: 35px 18px;
    }
}
@media (max-width: 480px) {
    .title_div h1 {
        font-size: 28px;
    }
}