body {
    margin: 0 auto;
    font-size: 16px;
    padding: 0;
    font-family: "Afacad", sans-serif;
    color: #000;
}

::selection {
    background-color: #2196f3;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #000;
}

a {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    outline: 0;
    color: #000;
    text-decoration: none;
}

a:hover {
    outline: none;
    color: #1d1d1d;
    text-decoration: none;
}

.wow {
    visibility: hidden;
}

.clear {
    clear: both;
}

img:not(table img) {
    max-width: 100%;
}

iframe {
    border: 0;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

p {
    font-size: 16px;
    color: #757576;
}

figure {
    margin: 0 auto;
    display: block;
    text-align: center;
}

body.scroll-off {
    overflow: hidden;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-heading {
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}


.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.form-control::-webkit-input-placeholder {
    color: #9C9C9C;
}

.form-control::-moz-placeholder {
    color: #9C9C9C;
}

.form-control:-ms-input-placeholder {
    color: #9C9C9C;
}

.form-control:-moz-placeholder {
    color: #9C9C9C;
}


/*==================== User Dropdown Start ===================*/

.user_name>div {
    white-space: nowrap;
    max-width: calc(160px - 10px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
    color: #494949;
    text-transform: capitalize;
    font-size: 15px;
}

.user_name {
    padding: 0 10px;
    border-bottom: 1px solid #e9ecef;
}

.user_name small {
    color: #a2a2a2;
    text-transform: lowercase;
}

.user_name .user_email {
    margin-top: -10px;
}

/*==================== User Dropdown End ===================*/


/* *** loader css start ****  */

.loader-wrapper {
    background: rgba(0, 0, 0, 0.90);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
    content: "";
    width: 100px;
    height: 100px;
    border: 5px solid rgba(0, 0, 0, 0.05);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1.5s infinite linear;
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader img {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* *** loader css end  ****  */


/*==================== Header Start ===================*/

#header {
    height: 120px;
    display: flex;
    align-items: center;
    z-index: 1000;
    position: relative;
    /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05); */
    /* background: 0 0 !important; */
    /* background-color: #fff !important; */
    /* padding-top: 24px;*/
}

#header.is-sticky {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    height: 108px;
    border-bottom: 1px solid #ededed;
    background: #fff;
    padding-bottom: 18px;
}

#header.is-sticky.awake {
    transform: translateY(0%);
    -webkit-transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}

#header.is-sticky.inner_pages_head,
#header.inner_pages_head {
    height: 65px;
}

#header>.container-fluid>.navbar {
    padding-left: 0;
    padding-right: 0;
}

#header .navbar-brand img {
    height: 55px;
    width: auto;
}

#header .navbar-expand-xl .navbar-nav .nav-item {
    margin-right: 36px;
}

#header .navbar-expand-lg .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

#header .nav-link {
    position: relative;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 36, 70, 0.8);

}

#header .navbar-expand-lg .navbar-nav .nav-link:hover,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: #002446;
}

#header .navbar-expand-lg .navbar-nav .nav-link:hover:before,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link:before {
    color: #002446;
    transform: scaleX(1);
}

#header .navbar-expand-lg .navbar-nav .nav-link:before {
    left: 0;
    bottom: -18px;
    width: 100%;
    height: 1px;
    background: #002446;
    transform: scaleX(0);
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
}

#header .dropdown-toggle::after {
    border: none;
    /* height: 8px;
  width: 11px; */
    /* background-image: url(../img/drop_arrow.png); */
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: 3px;
}

#header .extra_nav {
    margin-left: 0;
    position: static;
    right: 0;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item {
    margin-right: 10px;
}


#header .extra_nav .nav-item:last-child {
    margin-right: 0px;
}


#header .extra_btn:hover {
    background-color: rgba(255, 255, 255, 0.24);
}

#header .header_filled_btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-size: 22px;
    font-weight: 500;
    padding: 16px 25px;
    background-color: #006DD3;
    color: #fff;
    border: 1px solid #006DD3;
    line-height: 1;
}

#header .header_filled_btn:hover {
    background-color: #fff;
    color: #c72026;
}


#header .flag_ico {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

#header .for_mobile {
    display: none;
}

#header .for_desktop {
    display: block;
}

#header .dropdown-item {
    font-weight: 300;
}


.menuBar {
    background: #DDEFFF;
    padding: 18px 33px;
    border-radius: 30px;
    gap: 30px;
}

.navbar-brand {
    font-size: 0;
    position: static;
    left: -30px;
}

/* 
.langugae_filter:hover .lang_dropdown {
    display: block;
} */
/*==================== Header End ===================*/



/*==================== Footer login Signup Section ===================*/

.footer-logsign-link {
    position: relative;
}

.footer-logsign-link:after,
.footer-logsign-link:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
}

.footer-logsign-link:before {
    background-color: #006DD3;
    left: 0;
}

.footer-logsign-link:after {
    background-color: #006DD3;
    right: 0;
}

.footer-signin-link a,
.footer-signup-link a {
    height: 150px;
    align-items: center;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
    padding-right: 10px;
}

.footer-signup-link a {
    background-color: #006DD3;
    padding-left: 0px;
}

.footer-signin-link a {
    background-color: #006DD3;
}

.footer-signin-link a span,
.footer-signup-link a span {
    color: #fff;
    font-size: 36px;
    width: 100%;
}

.footer-signin-link a p,
.footer-signup-link a p {
    color: #fff;
    font-size: 15px;
    width: 100%;
    margin-bottom: 0;
}

.footer-signup-link a span.footer-link-arrow,
.footer-signin-link a span.footer-link-arrow {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    background-color: #006DD3;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 23px;
    transition: 0.5s all;
}

.footer-signup-link a:hover span.footer-link-arrow,
.footer-signin-link a:hover span.footer-link-arrow {
    background-color: #fff;
    color: #006DD3;
}

.section-head.text-start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.fullHight {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/*==================== Footer login Signup Section ===================*/


/*==================== Footer ===================*/

.footer-block figure {
    margin: 0 0 25px;
    display: inline-block;
    max-width: 219px;
}

.cts_no {
    font-size: 15px;
    padding: 0 80px 0 0;
}

.cts_no p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.copyright {
    padding: 12px 0;
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 0;
    background: rgb(255 255 255 / 21%);
}

.newsletter-form .relative-box {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 70px;
}

.newsletter-form .form-control {
    /* height: 62px; */
    font-size: 21px;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400;
    background: transparent;
    border-radius: 30px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    line-height: 1;
}

.footerAbout {
    max-width: 522px;
    color: #fff;
    font-size: 16px;
}

.relative-box {
    position: relative;
    top: 7px;
}

.relative-box .subscribe-btn {
    position: relative;
    color: #000000;
    font-size: 21px;
    background: #fff;
    border-radius: 30px;
    padding: 19px 51px;
    line-height: 1;
}

.relative-box .subscribe-btn:hover {
    color: #006DD3;
}

footer h6 {
    font-size: 32px;
    color: #00CF7B;
    margin: 0 0 20px;
    position: relative;
}

ul.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.footer-links li {
    margin: 0px 0;
    padding: 0;
    list-style: none;
    margin-bottom: 5px;
}

ul.footer-links li a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

ul.footer-links li a:hover {
    color: #006DD3;
}

ul.footer-links.socialize li a {
    position: relative;
    padding-left: 25px;
}

ul.footer-links.socialize li a i {
    position: absolute;
    left: -9px;
    width: 30px;
    text-align: center;
    top: -4px;
    color: #959595;
    font-size: 17px;
}

.footer_wrapper {
    padding: 34px 0 0;
    border-top: 1px solid #eeeeee;
    background: linear-gradient(90deg, rgba(2, 56, 106, 1) 0%, rgba(0, 0, 0, 1) 100%)
}

.social-box {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 20px 0 20px 0;
}

.social-box-list a svg {
    width: 37px;
    min-width: 37px;
}

.subscribe_text {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}


.navbar {
    padding: 0;
    justify-content: right;
}


#top-button {
    display: inline-block;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#top-button.show {
    opacity: 1;
    visibility: visible;
}

.back_top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #2196f3;
    display: none;
    border: #2196f3 1px solid;
    z-index: 1;
    border-radius: 4px
}

.back_top span {
    position: relative;
    display: block;
    color: #fff;
    width: 100%;
    height: 100%;
}

.back_top span svg {
    width: 22px;
    height: 21px;
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.back_top:hover {
    border-color: #2196f3;
    color: #2196f3;
    background-color: #fff;
}

.back_top:hover span {
    color: #2196f3;
}


/*==================== Footer ===================*/

#header .navbar-expand-lg .navbar-nav .nav-item.dropdown .nav-link {
    padding-right: 0px;
}

.mobiledrop {
    position: absolute;
    right: 0px;
    top: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
}

/* homepage  */

.heroBtnRow {
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
}

.greenBtn:hover {
    border: 1px solid #002446;
    background-color: #fff;
    color: #002446;
}

.greenBtn {
    padding: 15px 50px;
    line-height: 1;
    background-color: #00CF7B;
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #00CF7B;
    border-radius: 30px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    height: 58px;
}

.greenBorderBtn {

    height: 58px;
    border-radius: 30px;
    padding: 15px 66px;
    line-height: 1;
    border: 1px solid #002446;
    background-color: #fff;
    color: #002446;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 18px;
}

.greenBorderBtn:hover {
    border: 1px solid #00CF7B;
    background-color: #00CF7B;
    color: #fff;
}

.webHeroTitle {
    color: #02386A;
    font-weight: 600;
    font-size: 94px;
    font-family: "Anek Bangla", sans-serif;
}

.webHeroText {
    font-size: 18px;
    color: #002446;
    max-width: 590px;
    margin: 20px 0 45px 0;
}

.heroSection {
    padding: 78px 0;
}

/* .heroLeftImg:before {
    content: "";
    background-image: url(../img/heroimgBG.png);
    position: absolute;
    right: -50px;
    bottom: -50px;
} */
.greenBtn.button-shap {
    position: relative;
    /* margin-bottom: 10px; */
}

.heroLeftImg {
    position: relative;
    text-align: end;
}

/* homepage  */
/* Custom Select */

.custom_checkbox input[type="checkbox"],
.custom_checkbox input[type="radio"] {
    height: 21px;
    width: 21px;
    min-width: 21px;
    margin: 0;
    padding: 0;
    opacity: 1;
    appearance: none;
    border: 2px solid #d0d0d0;
    border-radius: 5px;
    background: transparent;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

.custom_checkbox input[type="checkbox"]:checked,
.custom_checkbox input[type="radio"]:checked {
    border: 2px solid #1295d6;
    background: #1295d6;
}

.custom_checkbox input[type="checkbox"]:checked::before,
.custom_checkbox input[type="radio"]:checked::before {
    content: "\f00c";
    height: 100%;
    color: #fff;
    font-family: "Font-awesome-5-pro";
    position: absolute;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.custom_checkbox label {
    color: #555 !important;
}


/* Custom Radio */
.custom_radio [type="radio"]:checked,
.custom_radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custom_radio [type="radio"]:checked+label,
.custom_radio [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.custom_radio [type="radio"]:checked+label:before,
.custom_radio [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #b5b5b5;
    border-radius: 100%;
    background: #fff;
}

.custom_radio [type="radio"]:checked+label::after,
.custom_radio [type="radio"]:not(:checked)+label::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #F87DA9;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom_radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom_radio [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form-control {
    height: 45px;
    font-size: 16px;
    color: rgb(66 66 66 / 60%);
    font-weight: 400;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #B1B1B1;
    padding: 15px 25px;
}

.form-control:focus {
    box-shadow: none;
}

.btn-primary {
    background-color: #2196F3;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding: 12px 30px;
    border: 1px solid #2196F3;
}

.btn-primary:hover {
    color: #2196F3;
    background-color: transparent;
    border: 1px solid #2196F3;
}

.custom_select_block .ms-dd .ms-dd-header {
    height: 45px;
    font-size: 16px;
    color: rgb(66 66 66 / 60%);
    font-weight: 400;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #B1B1B1;
    overflow: hidden;
    width: 100%;
}

.custom_select_block .ms-dd .ms-dd-header .option-selected {
    height: 45px;
    padding: 10px 25px;
    width: 100%;
}

.custom_select_block .ms-dd .ms-list-option.option-selected,
.ms-dd .ms-optgroup ul .ms-list-option.option-selected {
    background: #ffffff;
}

.custom_select_block .ms-dd {
    width: 100%;
}

.custom_select_block .ms-dd .ms-dd-arrow {
    margin-top: -5px;
    right: 25px;
}


/* Select2 */



.floating-label {
    font-size: 16px;
    font-weight: 400;
    color: #475F7B;
    opacity: 1;
    top: 16px;
    left: 20px;
    pointer-events: none;
    position: absolute;
    transition: 240ms;
    margin-bottom: 0;
    z-index: 1;
}

.floating-diff .floating-label {
    opacity: 0;
}

.floating-diff.focused .floating-label {
    opacity: 1;
}

.form-group.focused .floating-label {
    opacity: 1;
    color: #7b7f82;
    top: 4px;
    left: 19px;
    font-size: 12px;
}

.form-group.focused select.form-control {
    padding-top: 21px;
}

.float-checkradio {
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    padding: 8px 19px;
    transition: 0.3s;
    min-height: 55px;
}

.float-checkradio.focused {
    padding-top: 21px;
}

/*--------select2-css----*/
.select2Part .floating-label {
    opacity: 0;
}

.select2Part.focused .floating-label {
    opacity: 1;
}

.select2multiple .floating-label {
    opacity: 1;
}

.floating-group.focused .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding-bottom: 7px;
    margin: 0;
    padding-top: 17px;
    padding-left: 0px;
}


.select2-container--default .select2-selection--multiple .select2-selection__rendered:before {
    border: none;
    content: '';
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=') no-repeat 0 0;
    width: 12px;
    height: 8px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    top: 26px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    left: auto;
    top: 0;
    right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding-right: 30px;
    padding-left: 0px;
    background-color: #ebf0fe;
    margin-right: 5px;
    border: 0px solid #aaa;
    margin-top: 9px;
    padding-top: 3px;
    padding-bottom: 3px;

}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: #dc3545;
    color: #e4e4e4;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: #EE343A;
    color: #fff;
    padding: 1px;
    top: 7px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    border-right: 0;
    justify-content: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-right: 10px;
    font-size: 13px;
    font-weight: 300;
    padding-left: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
    line-height: 11px;
    height: 17px;
    /* width: 1px; */
    padding-right: 1px;
    border-radius: 50%;
    display: flex;
    font-weight: 300;
    justify-content: center;

}

.floating-group .select2-container--focus .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--focus .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--below .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--below .select2-selection--multiple {
    padding-top: 20px !important;
}

.floating-group .select2-container--above .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--above .select2-selection--multiple {
    padding-top: 20px !important;
}

.floating-group .select2-selection--multiple .select2-selection__rendered {
    padding-top: 20px !important;
}

.select2-dropdown {
    border: 0px solid #aaa;
    box-shadow: 0 9px 9px rgba(0, 0, 0, 0.1);
    margin-top: 3px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #DFE3E7
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #DFE3E7;
    padding-left: 19px;
    padding-bottom: 9px;
}

.select2-container .select2-selection--multiple {
    min-height: 55px;

}

.select2-container .select2-selection--single {
    min-height: 55px;
    border: 1px solid #DFE3E7;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 16px;
    line-height: 1;
    margin-left: 0;
    padding-left: 0px;
    font-size: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    border: none;
    content: '';
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=) no-repeat 0 0;
    width: 12px;
    height: 8px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    top: 26px;
}

.select2-selection__rendered li:first-child {
    margin-left: 0;

}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 19px;
    padding-right: 20px;
    font-size: 15px;
    color: #000;
    padding-top: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-weight: 300;
}

.select2-results__option {
    font-size: 15px;
    font-weight: 300;

}

/*select2*/
.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 8px 19px;
    min-height: 55px;
    font-size: 1rem;
    color: #475F7B;
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

select.form-control {
    padding-top: 10px;
    transition: 0.15s;
}

.form-control:focus {
    color: #475F7B;
    background-color: #FFF;
    border-color: #5A8DEE;
    outline: 0;
    box-shadow: none;
}



/*  stats-section css */

.stats-wrapper {
    background: #006DD3;
    padding: 30px 20px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background pattern */
.stats-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/stats-wrapper-befour.png") center center no-repeat;
    z-index: 0;
    pointer-events: none;
}

.stats-box {
    text-align: left;
    position: relative;
    z-index: 1;
    padding-inline: 30px;
    width: 33%;
    text-align: center;
}

.stats-label {
    font-weight: 400;
    font-size: 22px;
}

.stats-value {
    font-weight: 600;
    font-size: 68px;
    line-height: 1;
    min-width: 200px;
}

/* Divider */
.stats-divider {
    width: 1px;
    height: 110px;
    background: #FFFFFF;
}

/*  stats-section end */

.counsellor-text {
    background: #E7FCF4;
    padding: 27px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.theme-btn {
    background: #00CF7B;
    width: 100%;
    border: 1px solid transparent;
    padding: 17px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 23px;
    color: #fff;
}

.theme-btn:hover {
    border: 1px solid #00CF7B;
    color: #00CF7B;
    background: transparent;
}

.section-title {
    color: #00CF7B;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 32px;
    background: rgb(0 159 94 / 10%);
    border-radius: 36px;
    margin-bottom: 30px;
    display: inline-block;
}

.section-heading {
    color: #002446;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 48px;
    line-height: 1;
}

.counsellor-section .section-header {
    margin-bottom: 100px;
}


/* why-Choose-section */
.why-Choose-section {
    background: #006DD3;
    position: relative;
}

.why-Choose-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/why-Choose-befour.png");
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.04;
}

.why-Choose-section .section-heading {
    color: #fff;
}

.section-info {
    max-width: 1100px;
    margin: 20px auto 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 33px;
}

.why-Choose-section .section-info {
    color: #fff;
}

.section-info {
    color: hsl(209deg 96% 21% / 50%);
}

.why-Choose-section .section-header {
    margin-bottom: 50px;
}

.feature-section {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 94px 74px;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 0 24px 38px 43px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 88px;
    height: 88px;
    background: #00c58e;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: -44px;
}

.feature-title {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 28px;
    color: #02386A;
}

.feature-description {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
    color: rgb(2 56 106 / 60%);
}

/* why-Choose-section end */



/*  our-courses  section start   */



.step-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}

.step-row:nth-child(odd) {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
}

.step-number {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #006DD3;
    color: #fff;
    text-align: center;
    line-height: 36px;
    margin-bottom: 16px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 44px;
}

.step-title {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 32px;
    color: #006DD3;
}

.step-row:nth-child(even) .step-number {
    background: #00b35a;
}

.step-row:nth-child(even) .step-title {
    color: #00CF7B;
}

.step-description {
    /* font-size: 14px;
    color: #555; */
    line-height: 1.6;
}

.step-image {
    flex: 1;
    text-align: center;
}

.step-image img {
    max-width: 95%;
    border-radius: 8px;
}

.our-courses p.section-info {
    margin-bottom: 62px;
}

.our-courses {
    padding-top: 84px;
    position: relative;
}

.our-courses {
    padding-top: 84px;
    position: relative;
    padding-bottom: 108px;
}

section.our-courses::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(358deg, #EAFFF6 0%, #FFFFFF 100%);
    width: 100%;
    height: 370px;
    z-index: -1;
}

.step-row:last-child {
    margin-bottom: 0;
}


/*  package-section start */
.package-section {
    padding-block: 80px;
    background: linear-gradient(358deg, #eaf9ff 0%, #FFFFFF 100%);
}

.pakage-right-img {
    text-align: end;
}

.package-cta-button {
    background: #006DD3;
    padding: 14px 48px;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 22px;
    color: #fff;
    border-radius: 36px;
    gap: 19px;
    padding-right: 62px;
    position: relative;
}

.package-cta-button:hover {
    background: #fff;
    color: #006DD3;
    border: 1px solid #006DD3;
}

.package-cta-button:hover svg path {
    fill: #006DD3;
}

.button-shap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 95px;
    height: 100%;
    background: url('../images/button-after-shap.png') no-repeat center center;
    background-size: contain;
}

.package-cta-button {
    margin-top: 55px;
}

/*  package-section end */

/* workflow-section  end*/
.workflow-section .section-title {
    color: #02386A;
    background: transparent;
    border: 1px solid #02386A;
}

.workflow-section {
    padding: 50px 0 80px;
    background: linear-gradient(111.15deg, rgb(182 215 245 / 30%) 58.58%, #FFFFFF 90.32%);
}

.workflow-wrapper {
    max-width: 870px;
    margin: auto;
}

.workflow-section .step-description {
    max-width: 725px;
    margin: auto;
    text-align: center;
}

.workflow-section .step-title {
    text-align: center;
    max-width: 725px;
    margin: auto;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 10px;
    color: #02386A;
}


.workflow-step {
    text-align: center;
    margin-top: 85px;
    box-shadow: 0px 1px 21.5px 0px #00000017;
    border-radius: 16px;
    padding: 0 16px 29px;
    background: #fff
}

.workflow-section .step-number {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-top: -48px;
    background: #00CF7B;
    font-weight: 600;
    font-size: 69px;
    margin-bottom: 16px;
}

/* workflow-section end*/


/* solution-section start*/
.solution-section {
    background: linear-gradient(110deg, #007EF3 10.78%, #12E690 109.19%);
    position: relative;
}

.solution-section .solution-right-img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.solution-section .section-heading {
    font-weight: 600;
    font-size: 78px;
    color: #fff;
    margin-top: 60px;
    display: block;
}

.solution-section p.section-info {
    color: rgb(255 255 255 / 80%);
    max-width: 690px;
    margin-left: 0;
}

.get-started-button {
    background: #FFA500;
    border: 1px solid transparent;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 23px;
    color: #fff;
    display: flex;
    gap: 19px;
    align-items: center;
    justify-content: center;
}

.get-started-button:hover {
    border: 1px solid #FFA500;
    color: #FFA500;
    background: transparent;
}

.get-started-button:hover svg path {
    fill: #FFA500;
}

.solution-stats-section {
    display: flex;
    gap: 18px;
    margin-top: 26px;
    margin-bottom: 51px;
    max-width: 544px;
    flex-wrap: wrap;
}

.get-started-button {
    margin-top: 50px;
    max-width: 544px;
}

.solution-stat-item {
    background: rgb(255 255 255 / 40%);
    padding: 14px 22px;
    color: #fff;
    border-radius: 16px;
    text-align: center;
    flex: 1;
}

.solution-stat-item .stat-number {
    font-weight: 700;
    font-size: 35px;
    text-align: center;
    display: block;
}

.solution-stat-item .stat-label {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
}

/* solution-section end*/

/* achievements-section start*/
.achievement-item {
    display: flex;
}

.achievement-item:not(:last-child) {
    margin-bottom: 20px;
}

.achievement-item {
    display: flex;
    border-radius: 16px;
    padding: 24px 39px;
    background: #E5FFF9;
    gap: 32px;
    align-items: center;
}

.achievement-number {
    font-weight: 700;
    font-size: 54px;
    color: #00CF7B;
    line-height: 1;
}

.achievement-label {
    font-weight: 400;
    font-size: 25px;
    color: #6F6F6F;
}

.achievement-item:last-child {
    background: #F1F8FF;
}

.achievement-item:last-child .achievement-number {
    color: #006DD3;
}

.achievements-section .section-info {
    max-width: 765px;
    margin-left: 0;
}

/* achievements-section end*/


/* counselling-section end*/
.counselling-slider .swiper-slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    overflow: hidden;
    height: 308px;
}

.counselling-section {
    background: linear-gradient(111.15deg, hsl(209deg 76% 84% / 29%) 20.93%, #FFFFFF 90.32%);
    padding: 70px 0 47px;
}

.counselling-section .section-header {
    margin-bottom: 77px;
}

.counselling-section .swiper-pagination {
    bottom: 10px !important;
}

.counselling-section .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid #02386A;
    opacity: 0.6;
    width: 12px;
    height: 12px;
}

.swiper.counselling-slider {
    padding-bottom: 50px;
}

.counselling-section .swiper-pagination-bullet-active {
    background: #02386A;
    opacity: 0.6;
}

/* counselling-section end*/

/* FAQ Section */
.faq-section {
    background-color: #fff;
    padding-top: 80px;
}


/* FAQ Tag */
.faq-tag {
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
}

/* FAQ Title */
.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

/* FAQ Accordion Custom Styles */
.faq-accordion .accordion-item {
    border: none;
    border: 1px solid #EBEBEB;
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 12px;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 20px;
    color: #1B1C1D;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.faq-accordion .accordion-body {
    /* font-size: 16px;
    color: #6B6D70; */
    padding-bottom: 0;
    padding-inline: 0;
}

.faq-accordion .section-heading {
    font-weight: 600;
    font-size: 80px;
}

.faq-accordion .section-heading .color-tag {
    color: #006DD3;
}

.faq-section .accordion-button::after {
    border: 1px solid #02386A;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-position: center;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-color: #006DD3;
    border: 1px solid #006DD3;
    background-image: url('data:image/svg+xml,<svg width="21" height="13" viewBox="0 0 21 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 10.6396L10.64 1.99965L19.28 10.6396" stroke="white" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    transform: unset;
}

/* Tools Accordion Custom Styles */

/* FAQ Tag */
.tools-tag {
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
}

/* FAQ Title */
.tools-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.tools-section {
    background-color: #fff;
    padding-top: 80px;
}

.tools-accordion .accordion-item {
    border: none;
    border: 1px solid #EBEBEB;
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 12px;
}

.tools-accordion .accordion-button {
    font-weight: 600;
    font-size: 20px;
    color: #1B1C1D;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
}

.tools-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.tools-accordion .accordion-body {
    /* font-size: 16px;
    color: #6B6D70; */
    padding-bottom: 0;
    padding-inline: 0;
}

.tools-accordion .section-heading {
    font-weight: 600;
    font-size: 80px;
}

.tools-accordion .section-heading .color-tag {
    color: #006DD3;
}


.tools-section .accordion-button::after {
    border: 1px solid #02386A;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-position: center;
}

.tools-section .accordion-button:not(.collapsed)::after {
    background-color: #006DD3;
    border: 1px solid #006DD3;
    background-image: url('data:image/svg+xml,<svg width="21" height="13" viewBox="0 0 21 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 10.6396L10.64 1.99965L19.28 10.6396" stroke="white" stroke-width="2.88" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    transform: unset;
}

/* faq section end  */

.heroLeftImg {
    position: relative;
}

.heroLeftImg::after {
    content: "";
    position: absolute;
    height: 524px;
    width: 524px;
    background-image: url(../assets/images/hero-befour-shap.png);
    background-repeat: no-repeat;
    left: -80px;
    bottom: -120px;
    background-size: contain;
    z-index: -1;
}

.hero-status-card {
    padding: 14px;
    background: #fff;
    box-shadow: 0px 3.2px 10.4px 0px #00000040;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 12px;
    position: absolute;
    min-width: 150px;
    font-weight: 400;
    font-size: 20px;
    color: #6F6F6F;
}

strong.number-text {
    font-weight: 700;
    font-size: 46px;
    color: #00CF7B;
    line-height: 1;
}

.map-info-section {
    padding: 40px 0;
}

.map-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.map-box {
    flex: 1.5;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.info-box {
    flex: 1;
    padding: 40px;
    background: linear-gradient(135deg, #f9f9f9, #fff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    transition: all 0.3s ease;
}

.info-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.info-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.view-map-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #4a6cf7;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .map-info-wrapper {
        flex-direction: column;
        height: auto;
    }

    .map-box {
        height: 300px;
        width: 100%;
    }

    .info-box {
        padding: 25px;
        text-align: center;
        border-left: none;
    }

    .view-map-btn {
        margin-top: 15px;
    }
}

.testimonials-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background: radial-gradient(ellipse at top, #e0f2fe, #f4f7fa 80%);

}

.testimonials-badge {
    font-weight: 400;
    font-size: 16px;
    padding: 10px 32px;
    border-radius: 36px;
    margin-bottom: 30px;
    display: inline-block;
    color: #02386A;
    background: transparent;
    border: 1px solid #02386A;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.2;
}

.subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 50px;
}

.carousel-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.nav-button {
    width: 60px;
    /* Wider than height for pill shape */
    height: 40px;
    min-width: 60px;
    border-radius: 20px;
    /* Half of height for perfect curve */
    background: #ea9500;
    ;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgb(234 149 0);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.nav-button.prev-button {
    left: -28px;
}

.nav-button.next-button {
    right: -28px;
}

.nav-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgb(234 149 0);
}

.nav-button svg {
    width: 18px;
    height: 18px;
}

.testimonial-card-wrapper {
    position: relative;
    width: 70%;
    max-width: 1100px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 50px 60px 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: opacity 0.3s ease-in-out;
}

.testimonial-card.fading {
    opacity: 0;
}

.stars-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.stars-badge img {
    width: 140px;
    height: auto;
    display: block;

}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
    min-height: 110px;
    /* Set a min-height to avoid layout shifts */
    padding: 0 70px;
    /* Add padding to prevent text from overlapping buttons */
}

.highlight {
    color: #00CF7B;
    ;
    font-weight: 700;
}

.user-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.user-icon {
    width: 40px;
    height: 40px;
    background: #ea9500;
    ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding-bottom: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #ea9500;
    ;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 960px) {
    .testimonial-text {
        padding: 0 50px;
    }

    .nav-button.prev-button {
        left: -28px;
    }

    .nav-button.next-button {
        right: -28px;
    }
}

.half-box {
    position: absolute;
    top: 0;
    width: 120px;
    /* Adjust width as needed for design */
    height: 100%;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 5;
    /* Below testimonial card & buttons */
    pointer-events: none;
    /* Prevent from interfering with buttons */
}

.half-box.left {
    left: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.half-box.right {
    right: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

@media (max-width: 768px) {
    .half-box {
        display: none;
        /* Make smaller on mobile */
    }
}

@media (max-width: 768px) {
    .testimonial-card-wrapper {
        position: relative;
        width: 300px;
        max-width: 1100px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 45px 30px 30px;
    }

    .carousel-section {
        gap: 15px;
    }

    .nav-button {
        width: 50px;
        height: 38px;
        min-width: 50px;
        border-radius: 19px;
    }

    .testimonial-text {
        font-size: 14px;
        min-height: 150px;
        padding: 0;
    }

    .nav-button.prev-button {
        left: -28px;
    }

    .nav-button.next-button {
        right: -28px;
    }

    .nav-button:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 207, 123, 0.4);
    }
}



.btn-primary {
    background-color: #ea9500;
    border: 1px solid#ea9500;
    padding: 14px 25px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    font-weight: 400;
    font-size: 16px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #007aff;
    color: #fff;
    z-index: -1;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:active {
    background-color: #ea9500 !important;
    border: 1px solid#ea9500 !important;
}

.btn-primary:hover {
    background-color: #ea9500;
    border: 1px solid#007aff;
}



@media all {
    .btn-primary {
        border-radius: 5px;
        position: relative;
        z-index: 2;
        overflow: hidden;
        box-shadow: 0 6px 16px rgb(255 112 42 / .24);
        -ms-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        -webkit-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        padding: 10px 20px;
        font-size: 15px;
        font-weight: 500;
    }

    .btn-primary:hover {
        box-shadow: 0 6px 16px rgb(13 94 244 / .24);
    }

    .btn-primary:before {
        content: "";
        position: absolute;
        height: 0%;
        left: 50%;
        top: 50%;
        width: 600%;
        background-color: #182a5a;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(60deg);
        -ms-transform: translateX(-50%) translateY(-50%) rotate(60deg);
        transform: translateX(-50%) translateY(-50%) rotate(60deg);
        z-index: -1;
        -webkit-transition: 0.7s ease;
        transition: 0.7s ease;
    }

    .btn-primary:hover::before {
        height: 560%;
    }

    .sticky-button {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
    }

    @media (max-width:768px) {
        .sticky-button {
            position: fixed;
            top: 25%;
            right: 17px;
            transform: translateY(-50%);
            z-index: 1000;
        }
    }

    #enquiryButton {
        writing-mode: vertical-rl;
        transform: rotate(0deg);
        padding: 8px 8px;
        border: none;
        cursor: pointer;
    }

}

/* Menubar Strip Styles */
/*.menubar-strip {*/
/*    position: fixed;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    background-color: #fff;*/
/*    z-index: 10;*/
/*    padding: 12px 10px;*/
/*    display: block;*/
/*    border-top: 2px solid #8f8f8f;*/
/*}*/

/*.menubar-strip ul li {*/
/*    list-style: none;*/
/*    display: flex;*/
/*    margin-right: -7px;*/
/*}*/

/*.menubar-strip ul li a {*/
/*    font-size: 14px;*/
/*    font-weight: 500;*/
/*    text-align: center;*/
/*    display: inline-block;*/
/*    color: #000000;*/
/*}*/

/*.menubar-strip ul li.active a {*/
/*    color: #007aff;*/
/*}*/

/*.menubar-strip ul li:hover a {*/
/*    color: #007aff;*/
/*}*/

/*.menubar-strip ul li figure {*/
/*    width: 45px;*/
/*    height: 45px;*/
/*    margin: 0 auto 5px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transition: all 0.3s ease-in-out;*/
/*    border-radius: 50%;*/
/*}*/

/*.menubar-strip ul li:hover figure {*/
/*    background-color: #007aff;*/
/*}*/

/*.menubar-strip ul li.active figure {*/
/*    background-color: #007aff;*/
/*}*/

/*.menubar-strip ul li.active figure img {*/
/*    filter: invert(1) brightness(5);*/
/*}*/

/*.menubar-strip ul li figure:hover img {*/
/*    filter: invert(1) brightness(5);*/
/*}*/

/*body {*/
/*    padding-bottom: 83px;*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .menubar-strip ul li figure {*/
        /*width: 40px;*/
/*        height: 40px;*/
/*        padding: 7px;*/
/*        margin-bottom: 0;*/
/*    }*/

/*    .menubar-strip ul li a {*/
/*        font-size: 13px;*/
/*    }*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .menubar-strip {*/
/*        display: none;*/
/*    }*/

/*    body {*/
/*        padding-bottom: 0;*/
/*    }*/
/*}*/

/* =========================
MOBILE GLASS MENU
Production Level
========================= */

.menubar-strip{
    position:fixed;
    bottom:5px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    max-width:500px;

    padding:12px 8px;

    border-radius:22px;

    background:rgba(255,255,255,0.55);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.15),
        inset 0 1px 1px rgba(255,255,255,0.6);

    border:1px solid rgba(255,255,255,0.6);

    z-index:9999;
}

/* MENU LIST */

.menubar-strip ul{
    display:flex;
    justify-content:space-around;
    align-items:center;
    list-style:none;
    margin:0;
    padding:0;
}

/* MENU ITEM */

.menubar-strip ul li{
    flex:1;
    text-align:center;
}

/* LINK */

.menubar-strip ul li a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;

    font-size:11px;
    font-weight:600;

    color:#111;

    transition:all .3s ease;
}

/* ICON CONTAINER */

.menubar-strip ul li figure{

    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:rgba(255,255,255,0.35);

    backdrop-filter:blur(10px);

    margin-bottom:4px;

    transition:all .25s ease;

}

/* ICON */

.menubar-strip ul li img{
    width:22px;
    height:22px;
    transition:all .25s ease;
}

/* HOVER EFFECT */

.menubar-strip ul li:hover figure{
    transform:translateY(-3px);
    background:rgba(0,122,255,0.9);
}

.menubar-strip ul li:hover img{
    filter:brightness(0) invert(1);
}

/* ACTIVE */

.menubar-strip ul li.active figure{
    background:#007aff;
}

.menubar-strip ul li.active img{
    filter:brightness(0) invert(1);
}

/* BODY SPACE */

body{
    padding-bottom:120px;
}

/* Hide bottom menu when mobile navbar is open */

body.scroll-off .menubar-strip{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateX(-50%) translateY(100px);
    transition:all .3s ease;
}

/* DESKTOP HIDE */

@media (min-width:992px){

    .menubar-strip{
        display:none;
    }

    body{
        padding-bottom:0;
    }

}

/* Hide Ai Sensy For Mobile*/
@media (max-width: 768px) {
  #df-btn-cont,
  iframe[id*="df-btn-cont"],
  div[id*="df-btn-cont"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* FOOTER BOTTOM LAYOUT */

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    padding:15px 0;
}

/* CENTER COPYRIGHT */

.footer-center{
    text-align:center;
    font-size:14px;
}

/* RIGHT LINKS */

.footer-right{
    position:absolute;
    right:0;
    font-size:14px;
}

/* LINKS */

.footer-bottom a{
    color:#fff;
    text-decoration:none;
}

.footer-bottom a:hover{
    text-decoration:underline;
}


/* MOBILE FIX */

@media (max-width:768px){

.footer-bottom{
    flex-direction:column;
    gap:8px;
}

.footer-right{
    position:static;
}

.footer-center{
    text-align:center;
    font-size:13px;
}

}
/* ============================================ */
/* V4Edu Premium CTA Button - MBBS Predictor    */
/* ============================================ */

@keyframes v4edu-line-flow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1000; }
}

@keyframes v4edu-btn-pulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(0, 86, 179, 0.45); }
  50% { box-shadow: 0 12px 32px rgba(0, 86, 179, 0.7); }
}

@keyframes v4edu-shine-sweep {
  0% { left: -100%; }
  60%, 100% { left: 120%; }
}

.v4edu-cta-container {
  text-align: center;
  margin: 30px 0;
  padding: 10px;
}

.v4edu-cta-wrap {
  position: relative;
  display: inline-block;
  padding: 6px;
}

.v4edu-cta-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.v4edu-line-blue,
.v4edu-line-gold {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  pathLength: 1000;
  stroke-dasharray: 200 800;
  animation: v4edu-line-flow 5s linear infinite;
}

.v4edu-line-blue {
  stroke: #0056b3;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 3px rgba(0, 86, 179, 0.6));
}

.v4edu-line-gold {
  stroke: #ffc107;
  stroke-dashoffset: -500;
  filter: drop-shadow(0 0 3px rgba(255, 193, 7, 0.7));
}

.v4edu-static-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 16px 42px;
  background: linear-gradient(135deg, #0056b3 0%, #0077cc 50%, #0056b3 100%);
  color: #ffffff !important;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  text-transform: capitalize;
  overflow: hidden;
  animation: v4edu-btn-pulse 2.5s ease-in-out infinite;
  transition: transform 0.3s ease, background 0.4s ease;
}

.v4edu-static-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: v4edu-shine-sweep 3.5s ease-in-out infinite;
  transform: skewX(-25deg);
}

.v4edu-static-btn:hover {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #0056b3 !important;
}

.v4edu-cta-tag {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  color: #ff5722;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

@media (max-width: 480px) {
  .v4edu-static-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  .v4edu-cta-tag {
    font-size: 11.5px;
    line-height: 1.5;
  }
}