@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600&display=swap');

:root{
    --footer-bg:#333;
    --light:#ddd;
    --white:#fff;
    --dark:#212121;
    --blue:#1d241d;
    --orange:#bb3e03;
    --br:0.75rem;
    --br-sm:0.35rem;
    --footer-top:#1b3858;
    --footer-bottom:#122c46;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Inter', sans-serif;
    font-family: 'DM Sans', sans-serif;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    line-height: 1.8;
}
h1,h2,h3{
    font-weight: 600;
    color: var(--footer-top);
}
h4,h5,h6{
    font-weight: 500;
}
.btn{
    padding: 0.4rem 1rem !important;
    border-radius: var(--br-sm) !important;
    overflow: hidden !important;
}
.btn-sm{
    padding: 0.25rem 0.75rem !important;
}
.navbar-dark .nav-link{
    color: var(--light) !important;
}
.navbar-dark .navbar-brand img{
    filter: brightness(0) invert(1);
}
.navbar .nav-link{
    font-weight: 500;
    margin-left: 1rem;
}
.nav-white{
    background-color: var(--white);
}
.btn-orange{
    background-color: var(--orange);
    color: var(--white) !important;
    border: 1px solid var(--orange);
}
.btn-blue{
    background-color: var(--blue);
    color: var(--white) !important;
    border: 1px solid var(--blue);
}
.btn-block{
    display: block;
    width: 100%;
    text-align: center;
}
.btn-outline-white{
    border: 1px solid !important;
}
.btn-outline-blue{
    color: var(--blue);
    border: 1px solid blue !important;
}
.hero-section .btn-orange, .navbar-dark .btn-orange, .cta .btn-orange{
    border: 1px solid var(--white);
}
.hero-section,.navbar-dark,.cta{
    background-image: url('hero-bg.jpg');
    position: relative;
    background-attachment: fixed;
}
.navbar-light{
    border-bottom: 1px solid #0002;
}
.hero-section{
    padding: 3rem 0 4rem;
}
.hero-section *,.nav-link, .navbar-brand{
    position: relative;
}
.hero-section h1{
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}
.hero-section p{
    color: var(--light);
}
.hero-section::before,.navbar-dark::before,.cta::before{
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.9;;
    background-image: linear-gradient(98.52deg, var(--blue) 0%, #003e85 100%);
    z-index: 0;
}
.hero-ratings{
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}
.hero-rating-cards{
    width: 100%;
    display: flex;
    gap: 1rem;
}
.hrc-icon{
    width: 3.25rem;
    display: flex;
    padding: 0.65rem;
    height: 3.25rem;
    background-color: #fff4;
    border-radius: 50%;
}
.hrc-icon img{
    width: 100%;
}
.hrc-content{
    width: calc(100% - 4.25rem);
    color: var(--light);
}
.hrc-content h5{
    margin-bottom: 0;
    color: var(--white);
}
.hero-slider-img{
    margin-top: -1rem;
    width: 100%;
    object-fit: contain;
    max-height: 430px;
}
.calculator{
    border-radius: var(--br);
    background-color: var(--white);
    max-width: 300px;
    padding: 1.5rem;
}
.hero-after{
    background-color: #0b59b122;
    border-bottom:1px solid #0b59b111;
}
.hiw-tab{
    background-color:  transparent !important;
    padding: 0.75rem 0.75rem 0.5rem !important;
    border: 2px solid #0002 !important;
    border-radius: 0.5rem !important;
    margin-bottom: 1rem;
    color: #888 !important;
    transition: all 0.5s ease !important;
    text-align: left;
}
.hiw-tab.active{
    border-color: var(--blue) !important;
    color: var(--blue) !important;
}
.hiw-flex{
    display: flex;
    gap:0.75rem;
}
.hiw-number{
    width: 3rem;
    font-size: 2rem;
    font-weight: 500;
    margin-top: -0.25rem;
}
.hiw-description{
    width: calc(100% - 3.75rem);
}
.hiw-title{
    font-size: 1.4rem;
    font-weight: 500;
    color: #444;
    display: block;
}
.active .hiw-title{
    color: var(--blue);
}
.hiw-content{
    display: none;
}
.active .hiw-content{
    display: block;
    margin: 0.5rem 0 0.45rem;
    color: #444;
}
.bg-custom-light{
    background-color: #ddd;
    border-radius: 0.5rem;
}
.f-medium{
    font-size: 1rem;
    padding-bottom: 0.25rem;
    text-align: center;
}
.site-card{
    border-radius: var(--br);
    border:1px solid #eee;
    padding: 1.5rem;
    background-color: var(--white);
}
.fancy-title{
    position: relative;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
}
.fancy-title::before{
    content: '';
    height: 2px;
    width: 2rem;
    background-color: var(--orange);
    position: absolute;
    left: 0;
    bottom: 0;
}
.fancy-title.text-center::before, .text-center .fancy-title::before{
    left: 50%;
    transform: translateX(-50%);
}
.text-orange{
    color: var(--orange);
}
.text-blue{
    color: var(--blue);
}
.user-profile{
    height:45px;
    width: 45px;
    border-radius: 50%;
    border:1px solid #003e8522;
    object-fit: cover;
    object-position: center;
}
.xs-small{
    font-size: 0.75rem;
}
.lc-1,.lc-2,.lc-3,.lc-4,.lc-5,.lc-6 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lc-1 {
    -webkit-line-clamp: 1;
}
.lc-2 {
    -webkit-line-clamp: 2;
}
.lc-3 {
    -webkit-line-clamp: 3;
}
.lc-4 {
    -webkit-line-clamp: 4;
}
.lc-5 {
    -webkit-line-clamp: 5;
}
.lc-6 {
    -webkit-line-clamp: 6;
}
.fw-100{
    font-weight: 100;
}
.fw-200{
    font-weight: 200;
}
.fw-300{
    font-weight: 300;
}
.fw-400{
    font-weight: 400;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fw-800{
    font-weight: 800;
}
.fw-900{
    font-weight: 900;
}
.site-badge{
    display: inline-block;
    padding: 3px 5px;
    border-radius: var(--br-sm);
    background-color: #ddd;
    border: 1px solid #ccc;
    line-height: 1.2;
    font-size: 0.75rem;
}
.badge-green{
    font-weight: 400;
    background-color: #1d9539;
    border-color: #1d9539;
    color: #fff;
}
.op-1{
    opacity: 0.1;
}
.home-company-footer{
    border-radius: var(--br-sm);
    border: 1px solid #0002;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.5;
    height: 50px;
    align-items: center;
}
.home-company-footer div{
    padding: 0.25rem 0.5rem;
    display: flex;
    width: 100%;
    height: 100%;
    border-right: 1px solid #ccc;
    align-items: center;
}
.home-company-footer div:last-of-type{
    border-right: none;
}
.home-company-footer .number{
    background-color: #eee;
    font-size: 1rem;
    width: 8rem;
}
.home-company-card:hover{
    box-shadow: 0 0 10px #0001;
}
.carousel-control-prev-icon,.carousel-control-next-icon{
    background-image: none;
}
.carousel-custom-control{
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blue);
    color: var(--blue);
    border-radius: var(--br-sm);
}
.carousel-custom-control i{
    margin-bottom: -0.125rem;
}
a .home-company-card{
    color: var(--dark);
}
.carousel-indicators [data-bs-target]{
    background-color: var(--footer-bottom);
    height: 6px;
    width: 6px;
    background-clip: unset;
    border: none !important;
    border-radius: var(--br-sm);
}
.carousel-indicators .active{
    width: 1rem;
}
.testimonial-card {
    background-color: var(--footer-bottom);
    background-image: radial-gradient(circle,var(--footer-top),var(--footer-bottom));
    color: var(--light);
}
.cta{
    background-color: var(--blue);
    position: relative;
}
.cta *{
    position: relative;
}
.custom-rounded{
    border-radius: var(--br);
}
.bg-gradient{
    background-color: #0f3870;
    background-image: radial-gradient(circle,#3873c8,#0f3870);
}
.move-down{
    margin-bottom: -5rem;
    position: relative;
}
.card-icon{
    height: 5rem;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 50%;
    color: var(--blue);
    margin: 0 auto 1rem;
    background-color: #0b59b111;
}
.custom-shadow{
    box-shadow: 0 0 10px #0002;
}
.move-up{
    margin-top: -6rem;
    position: relative;
}
.sidebar-card{
    border: 1px dashed var(--blue);
    border-radius: var(--br);
    padding: 1.5rem;
}
.sidebar-card ul{
    list-style: none;
    padding-left: 0.8rem;
}
.sidebar-card ul li{
    padding-left: 0.5rem;
}
.sidebar-card ul li::marker{
    content: '\2726';
    color: var(--orange);
    margin-left: 1rem;
}
.blog-post-card{
    border-radius: var(--br);
    border:1px solid #0002;
    overflow: hidden;
    transition: 0.5s all ease;
}
.blog-post-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 10px #0002;
    border-color: var(--blue);
}
.blog-post-card img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100%;
}
.single-blog-body{
    border: 1px dashed var(--blue);
    padding: 1.5rem;
    border-radius: var(--br);
}
.auth-main{
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-card{
    width: 300px;
    max-width: 100%;
    border-radius: var(--br);
    border:1px solid #0001;
    padding: 1.5rem;
}
.bg-company-detail{
    position: relative;
    overflow: hidden;
}
.bg-company-detail *{
    position: relative;
}
.bg-company-detail::before{
    content: '';
    height: 100%;
    max-height: 500px;
    width: 100%;
    background-color: #eee;
    position: absolute;
    left: 0;
    top: 0;
}
.site-progress{
    height: 0.5rem;
}
.site-progress .progress-bar{
    background-color: var(--blue);
}
.lh-15{
    line-height: 1.5;
}
.order-form-group{
    margin-top: 1rem;
}
.order-form-group:first-child{
    margin-top: 0;
}
.order-form-group input,.order-form-group textarea,.order-form-group select{
    background-color: var(--white);
    border: 1px solid var(--blue);
    border-radius: var(--br-sm);
    width: 100%;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    outline: none;
}
.order-form-group select{
    padding-block: 0.35rem;
}
.drop-zone{
    background-color: var(--white);
    border: 1px dashed var(--blue);
    height: 100px;
    border-radius: var(--br-sm);
    width: 100%;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    outline: none;
}
.drop-zone i{
    font-size: 1.5rem;
}
.order-form-radio{
    display: flex;
    max-width: 100%;
}
.order-form-radio div{
    width: 100%;
    text-align: center;
}
.order-form-radio div:first-child label{
    border-radius: var(--br-sm) 0 0 var(--br-sm);
    border-left:1px solid var(--blue);
}
.order-form-radio div:last-child label{
    border-radius: 0 var(--br-sm) var(--br-sm) 0;
}
.order-form-radio input{
    display: none;
}
.order-form-radio label{
    width: 100%;
    padding: 0.25rem 0.75rem;
    color: #333;
    border-right:1px solid var(--blue);
    border-top:1px solid var(--blue);
    border-bottom:1px solid var(--blue);
    font-weight: 400;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.order-form-radio input:checked + label{
    background-color: var(--blue);
    color: var(--white);
}
.order-form-number-sec{
    display: flex;
}
.order-form-number-sec button{
    width: 3rem;
    height: 36px;
    padding: 0.125rem;
    border:1px solid var(--blue);
    outline: none;
}
.order-form-number-sec button:first-child{
    border-radius: var(--br-sm) 0 0 var(--br-sm);
}
.order-form-number-sec button:last-child{
    border-radius:  0 var(--br-sm) var(--br-sm) 0;
}
.order-form-number-sec input::-webkit-inner-spin-button,
.order-form-number-sec input::-webkit-outer-spin-button{
    -webkit-appearance: none;
    margin: 0;

}
.order-form-number-sec input{
    border-right: none;
    border-left: none;
    text-align: center;
    border-radius: 0;
    height: 36px;
}
.order-form-group .nav-pills .nav-item:first-child .nav-link{
    border-left:1px solid var(--blue);
    border-radius: var(--br-sm) 0 0 0;
}
.order-form-group .nav-pills .nav-item:last-child .nav-link{
    border-radius: 0 var(--br-sm) 0 0;
}
.order-form-group .nav-pills{
    display: flex;
    flex-wrap: nowrap;
}
.order-form-group .nav-pills .nav-item {
    width: 100%;
}
.order-form-group .nav-pills .nav-item .nav-link{
    width: 100%;
    color: #333;
    background-color: var(--white);
    border-radius: 0;
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    border-right:1px solid var(--blue);
    border-block: 1px solid var(--blue);
    position: relative;
}
.order-form-group .nav-pills .nav-item .nav-link.active{
    background-color: var(--blue);
    color: var(--white);
}
.order-form-group .nav-pills .nav-item .nav-link.active::before{
    content: '';
    height: 0.75rem;
    width: 0.75rem;
    background-color: var(--blue);
    transform: rotate(-45deg) translateX(-50%);
    border-radius: 0 100% 0 0;
    position: absolute;
    left: 50%;
    bottom: -0.2rem;
    z-index: 0;
}
.order-form-group .tab-content{
    border-inline: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);
    padding: 1rem;
    border-radius: 0 0 var(--br-sm) var(--br-sm);
}
.order-steps-custom-tabs{
    gap: 1rem;
    flex-wrap: nowrap;
}
.order-steps-custom-tabs .nav-item{
    width: 100%;
}
.order-steps-custom-tabs .nav-item .nav-link{
    width: 100%;
    position: relative;
    padding: 0.125rem 1rem !important;
    text-align: left !important;
    padding-left: 2rem !important;
    border-radius: 0 !important;
    color: #888;
}
.order-steps-custom-tabs .nav-item .nav-link.active{
    background-color: transparent !important;
    color: var(--blue);
}
.order-steps-custom-tabs .nav-item .nav-link::before{
    content: '';
    height: 1rem;
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
    font-size: 0.6rem;
    border-radius: 50%;
    border: 2px solid #888;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    transform: translateY(-50%);
}
.order-steps-custom-tabs .nav-item .nav-link.active::before{
    border-color: var(--blue);
    content: '\2714';
    background-color: var(--blue);
    color: var(--white);
}
.order-form-card{
    background-color: var(--white);
    border-radius: var(--br);
    box-shadow: 0 0 10px #0002;
    border: 1px solid #0001;
    padding: 2rem;
}
.card{
    border-radius: var(--br-sm);
}
.xs-small{
    font-size: 0.75rem;
}

/* Start of new Modal CSS */
.modal-header{
    background-color: var(--blue) !important;
    text-align: center !important;
    color: var(--white);
    width: 100%;
    position: relative;
}
.modal-header .modal-title{
    margin: 0 auto;
    width: 100%;
}
.modal-header .btn-close{
    box-shadow: none !important;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    filter: brightness(0) invert(1);
}
.modal-sm{
    width: 390px;
    max-width: calc(100% - 1rem);
}
.btn-auth{
    position: relative;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.btn-auth img{
    height: 1.5rem;
    width: 1.5rem;
    position: absolute;
    left: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
}
.btn-google{
    color: var(--white);
    background-color: #72a4f7;
    font-weight: 500;
    border: 1px solid #72a4f7;
}
.btn-facebook{
    color: var(--white);
    background-color: #4267b2;
    font-weight: 500;
    border: 1px solid #4267b2;
}
.modal-content{
    border-radius: var(--br) !important;
    overflow: hidden;
}
.modal-content .modal-body{
    padding: 1.5rem;
}
.or-label{
    width: 6rem;
    border-bottom: 1px dashed var(--blue);
    margin: 1rem auto 2rem;
}
.or-label span{
    display: flex;
    height: 1rem;
    align-items: center;
    justify-content: center;
    line-height: 0;
    font-weight: 400;
    width: 1rem;
    font-size: 0.9rem;
    background-color: var(--white);
    padding: 1rem;
    margin: 0rem auto -1rem;
    color: var(--blue);
}

/* End of new Modal CSS */

.footer-top{
    background-color: var(--footer-top);

}
.footer-bottom{
    background-color: var(--footer-bottom);
}
footer{
    line-height: 2.3;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--light);
}
footer ul{
    list-style: none;
    padding-left: 0;
}
footer a{
    color: var(--light);
}
footer a:hover{
    color: var(--white);
}

@media screen and (max-width:999px) {
    .navbar *{
        position: relative;
    }
    .hero-section h1{
        font-size: 2rem;
    }
}
@media screen and (max-width:767px) {
    .hero-section{
        padding: 1.5rem 0;
    }
    .hero-ratings {
        flex-direction: column;
    }
    .hero-slider-img{
        display: none;
    }
    .move-up{
        margin-top: unset;
    }
    .move-down{
        margin-bottom: unset;
    }
    .order-steps-custom-tabs{
        flex-wrap: wrap;
    }
}

.chat_div{
    width: 350px;
    position: fixed;
    right: 0;
    bottom: 0;
    /*background-color: var(--edubg) !important;*/
    background-color: var(--orange) !important;
    height: auto;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
}
.tabb{
    border: 1px solid rgba(255,255,255,0.1);
    background-color: var(--edubg) !important;
    color:white !important;
    font-weight: 600 !important;
}
.tabb.active{
    border: 1px solid rgba(255,255,255,0.1);
    background-color: var(--edlight) !important;
    color:var(--edubg) !important;
}
.closed{
    display: none;
}
.t-content{
    height: 350px;
    overflow-y: auto;
    overflow-x: hidden;
}
.real-messg-div{
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    text-overflow: ellipsis;
}
.send-msg-sect{
    max-height: 100px;
    overflow-y: hidden;
}
.border-send-msg-sect{
    border-color: var(--edubg) !important;
}
.t-content::-webkit-scrollbar,.real-messg-div::-webkit-scrollbar{
    width: 12px;
}

.t-content::-webkit-scrollbar-track,.real-messg-div::-webkit-scrollbar-track{
    background: transparent;
}

.t-content::-webkit-scrollbar-thumb,.real-messg-div::-webkit-scrollbar-thumb{
    background-color: var(--edubg);
    border-radius: 10px;
    border: 2px solid white;
}
.single_message{
    display: block;
}
.self{
    background-color: #dcf8c6;
}
.other{
    background-color: white;
}
.single_message .time{
    display: block;
}
.small-star{
    font-size: 0.6em;
    color: orange;
    margin-bottom: .5em;
}
.chat-chev{
    display: block;
    height: 8px;
    width: 8px;
    border-right:2px solid var(--edubg);
    border-bottom:2px solid var(--edubg);
    background: transparent;
    transform: rotate(-135deg);
    position: relative;
    transition: 0.5s transform ease;
}
.collapsed .chat-chev{
    transform: rotate(45deg);
}
.chat-cont{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.writer-hdn{
    text-transform: capitalize;
}
.btn-ed-close{
    outline: none !important;
    border: none !important;
}
.btn-google{
    background-color: #4285f4;
    color: #eeeeee!important;
}
.btn-facebook{
    background-color: #4267b2;
    color: #eeeeee!important;
}
.ed-login{
    border-radius: 0.5em !important;
}
.ed-hr{
    background-color: var(--edubg);
    position: relative;
}
.ed-hr:after{
    content: "OR";
    padding: 10px;
    background-color: #ffffff;
    color: var(--edubg);
    font-weight: bold;
    font-size: 0.9em;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.input-ed{
    border-radius: 0.5em !important;
    border-color: var(--edubg);
}
.btn-ed-login{
    background-color: var(--edubg);
    color: #eeeeee!important;
}
.btn-yellow {
  background-color: #2007ff !important;  /* Yellow background */
  color: #000000 !important;             /* Dark blue text */
  padding: 0.5rem 1rem;                  /* Adjust size */
  font-weight: 500;
  border-radius: 50px;
  display: inline-block;
  white-space: nowrap;
  width: auto;                           /* Prevents it from being too wide */
}

.btn-yellow:hover {
  background-color: #e0a800 !important;  /* Slightly darker yellow on hover */
  color: #55002f !important;
}
