h1, h2, h3, h4, h5, h6, span, div, label, p, a {
    color: var(--default-text-color, #000);
}

/* === Header Styles === */
.header-area {
    border-bottom: 1px solid #49ae4421;
    z-index: 9;
    position: relative;
    margin-bottom: -143px;
}

/* === Menu Styles === */
.header-menu {
    text-align: right;
}

.header-menu ul li {
    display: inline-block;
    margin-right: 57px;
}

.header-menu ul li:last-child {
    margin-right: 50px;
}

.header-menu-area ul {
    display: inline-block;
}

.auth-menu-area a {
    padding: 33px 5px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.5s;
    color: var(--primary-text-color, #001819);
}

.auth-menu-area i {
    display: inline-block;
    font-size: 17px;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}

.header-menu ul li a {
    display: flex;
    color: #fff;
    padding: 33px 0;
    font-size: 17px;
    font-weight: 500;
    transition: 0.5s;
}

/* === Navigation Styles === */
.header-menu ul li a.main-button-nav {
    max-width: 130px;
}

.header-menu ul li a:hover {
    color: var(--primary-color, #006BB3);
}

.header-menu ul li i {
    display: inline-block;
    font-size: 12px;
    position: relative;
    left: 6px;
    top: 6px;
}

.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: var(--navigation-background-color, #fff) !important;
    transition: 0.5s;
    z-index: 999 !important;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    animation-name: slideInDown;
}

.header-menu ul li.menu-item-has-children {
    position: relative;
}

.header-menu ul li .sub-menu {
    position: absolute;
    width: auto;
    display: grid;
    text-align: left;
    background: var(--navigation-background-color, #fff) !important;;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    top: 150%;
    z-index: 2;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--primary-color, #006BB3);
    border-radius: 3px 3px 0 0;
    overflow-y: auto;
    max-height: 600px;
    overflow-x: hidden;
    white-space: nowrap;
}

.header-menu ul li:hover .sub-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.header-menu ul li .sub-menu li a {
    display: block;
    padding: 8px 19px !important;
    color: #1e1e1e;
    width: 150%;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.header-menu ul li .sub-menu li a:hover {
    color: var(--text-on-primary-color, #fff) !important;
    background: var(--primary-color, #006BB3);
    transition: 0.5s;
}

/* === Hero Section Styles === */
.hero-area {
    background: #fff;
    background-size: cover;
    height: 950px;
    padding-top: 125px;
    position: relative;
}

.hero-style.hero-area {
    background: #fff;
}

.hero-content h4 {
    color: var(--primary-color, #006BB3);;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.hero-content h1 {
    font-size: 76px;
    color: #fff;
    font-weight: 800;
    line-height: 71px;
}

.hero-content p {
    opacity: 0.800;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
    width: 49%;
    margin: 20px 0 0;
}

.hero-slides .owl-dots {
    position: absolute;
    bottom: 42%;
    right: 56px;
}

.hero-slides .owl-dots .owl-dot {
    position: relative;
    z-index: 1;
    margin: 18px 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: var(--primary-color, #006BB3);;
}

.hero-slides .owl-dots .owl-dot.active {
    background-color: var(--primary-color, #006BB3);
    position: relative;
    width: 11px;
    height: 11px;
}

.hero-slides .owl-dots .owl-dot.active::after {
    position: absolute;
    width: 25px;
    height: 25px;
    z-index: 1;
    content: "";
    border: 2px solid var(--primary-color, #006BB3);
    left: -9px;
    top: -9px;
    border-radius: 50%;
    text-align: center;
}

/* === Button Styles === */
.fses-button {
    margin-top: 40px;
    display: inline-block;
}

.fses-button a {
    display: inline-block;
    background: var(--primary-color, #006BB3);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 40px;
    border-radius: 6px;
    border: 2px solid var(--primary-color, #006BB3);
    position: relative;
    z-index: 1;
}

.fses-button a:hover {
    color: var(--primary-color, #006BB3);
    transition: 0.5s;
}

.fses-button a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    border-radius: 5px;
    z-index: -1;
    transition: 0.5s;
}

.fses-button a:hover:before {
    width: 100%;
    left: 0;
}

.fses-button img {
    position: relative;
    top: -2px;
    left: 4px;
    display: inline-block !important;
    transition: 0.5s;
}

.fses-button img.two {
    position: relative;
    left: -58px;
    top: -2px;
    transition: 0.5s;
    z-index: 1;
    opacity: 0
}

.fses-button:hover img.two {
    opacity: 1;
}

.fses-button.two {
    display: inline-block;
    padding-left: 16px;
    border: transparent;
}

.fses-button.two a {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--gray-color, #006BB3);;
    padding: 14px 37px;
}

/* === About Section Styles === */
.about-area {
    background: url(../images/home1/about-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 80px 0 125px;
}

.about-thumb {
    position: relative;
    left: -45px;
}

img.about-thumb-shape {
    position: absolute;
    bottom: 18px;
    left: -6px;
}

.about-right {
    position: relative;
}

.single-about-box {
    margin-bottom: 30px;
}

.single-about-box:nth-child(3) {
    border-bottom: 1px solid #61616133;
    padding-bottom: 31px;
    margin-bottom: 3px;
}

.about-box-icon {
    float: left;
    margin-right: 24px;
    margin-top: 8px;
}

.about-box-content h4 {
    font-size: 24px;
    font-weight: 600;
}

.about-box-content p {
    overflow: hidden;
    margin: 14px 0 0;
    width: 80%;
}

.about-shape-1 {
    position: absolute;
    top: -42px;
    right: -153px;
}

.about-shape-2 {
    position: absolute;
    bottom: 0;
    left: 272px;
}

.section-title.left {
    margin-bottom: 49px;
}

.section-title.left img {
    margin-right: 12px;
}

.section-title.left h4 {
    text-transform: uppercase;
    color: var(--primary-color, #006BB3);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 26px;
}

.section-title.left h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 44px;
}

.section-title.center {
    margin-bottom: 49px;
}

.section-title.center img {
    margin-right: 12px;
}

.section-title.center h4 {
    text-transform: uppercase;
    color: var(--primary-color, #006BB3);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 26px;
}

.section-title.center h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 44px;
}

p.section-desc {
    width: 90%;
    margin: 26px 0 0;
}

#poress-row {
    background: #F6F6EE;
    margin-top: -93px;
    position: relative;
    z-index: 1;
}

#poress-row .section-title.left {
    margin-bottom: 0;
}

.porcess-thumb {
    position: relative;
    left: -12px;
}

/* === Process Section Styles === */
.process-left {
    position: relative;
    padding: 0 0 13px;
}

.process-shape {
    position: absolute;
    left: 257px;
    bottom: -3px;
}

.fses_news-area {
    padding: 192px 0 125px;
    background: url(../images/home1/fses_news-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -82px;
}

.fses_news-area .section-title.center {
    margin-bottom: 0;
}

.single-fses_news-box {
    text-align: center;
    margin-top: -71px;
}

.single-fses_news-thumb {
    position: relative;
    top: 80px;
    z-index: 1;
}

.fses_news-content {
    background: #fff;
    padding: 152px 0 38px;
    position: relative;
}

.fses_news-content:before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    left: 50%;
    bottom: 0;
    background: var(--primary-color, #006BB3);
    transition: 0.5s;
}

.single-fses_news-box:hover .fses_news-content:before {
    width: 100%;
    left: 0;
}

.fses_news-content h4 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 11px;
}

.fses_news-content p {
    margin: 0;
    color: var(--primary-color, #006BB3);
    font-size: 16px;
    font-weight: 500;
}

.fses_news-social-icon {
    margin-top: 28px;
}

.fses_news-social-icon ul li {
    display: inline-block;
    margin: 0 2px;
}

.fses_news-social-icon ul li i {
    border: 1px solid #d5dfda;
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    color: #7d8d85;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.fses_news-social-icon ul li i:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--primary-color, #006BB3);
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}

.fses_news-social-icon ul li i:hover:after {
    transform: scale(1);
}

.fses_news-social-icon ul li i:hover {
    color: #fff;
}

/* === Footer Styles === */
.footer-area {
    background: #000;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 125px 0 0px;
}

.footer-social-address {
    background: url(../images/home1/footer-social-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 49px 66px 55px;
    border-radius: 5px;
}

.footer-social-address-content h4 {
    font-size: 40px;
    color: #fff;
    margin: 0;
}

.footer-social-icon {
    text-align: right;
}

.footer-social-icon ul li {
    display: inline-block;
}

.footer-social-icon ul li.text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-right: 9px;
}

.footer-social-icon ul li i {
    display: inline-block;
    font-size: 16px;
    border: 2px solid #fff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 3px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.footer-social-icon ul li i:hover {
    color: var(--primary-color, #006BB3);
}

.footer-social-icon ul li i:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}

.footer-social-icon ul li i:hover:after {
    transform: scale(1);
}

.footer-area .row.add-footer-class {
    padding: 111px 0 0;
}

p.footer-desc {
    margin: 24px 0 0;
    color: #fff;
    opacity: 0.6;
}

.footer-contect-info {
    margin-top: 23px;
}

/* === Contact Section Styles === */
.footer-contact-info-title h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    padding-left: 30px;
    position: relative;
}

.footer-contact-info-title h4:before {
    position: absolute;
    content: "";
    width: 22px;
    height: 2px;
    left: 0;
    top: 11px;
    background: var(--primary-color, #006BB3);
}

.footer-contect-info ul li {
    color: #fff;
    margin-top: 18px;
}

.footer-contect-info ul li i {
    color: var(--primary-color, #006BB3);
    display: inline-block;
    margin-right: 12px;
}

.footer-widget-title h4 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 23px;
}

.footer-widget-menu ul li a {
    display: inline-block;
    color: #fff;
    opacity: 0.6;
    line-height: 40px;
    font-size: 16px;
    transition: 0.5s;
}

.footer-widget-menu ul li a:hover {
    color: var(--primary-color, #006BB3);
    opacity: 1;
}

.footer-widget-menu ul li i {
    font-size: 16px;
    color: #fff;
    display: inline-block;
    opacity: 0.6;
    margin-right: 8px;
    transition: 0.5s;
}

.footer-widget-menu ul li a:hover i {
    color: var(--primary-color, #006BB3);
    opacity: 1;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.single-newsletter-box input {
    background: transparent;
    width: 100%;
    height: 60px;
    border: 1px solid #ffffff47;
    border-radius: 5px;
    padding: 0 14px;
    outline: 0;
    color: #fff;
}

.single-newsletter-box input::placeholder {
    color: var(--primary-text-color, #001819);
    opacity: 0.5;
}

.single-newsletter-box button {
    background-color: var(--primary-color, #006BB3);
    width: 100%;
    padding: 16px 0;
    border: transparent;
    margin-top: 16px;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    border-radius: 5px;
}

.footer-bottom-area {
    padding: 96px 0 33px;
}

.footer-bottom-area .row.footer-bottom {
    border-top: 1px solid #ffffff3d;
    padding-top: 18px;
}

.footer-bottom-content h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.footer-bottom-content a {
    display: inline-block;
    color: var(--primary-color, #006BB3);
}

.header-sidbar-button {
    display: inline-block;
}

.header-sidbar-button i {
    font-size: 33px;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    position: relative;
    top: 8px;
    margin-left: 22px;
}

@keyframes rotateme2 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.section-title.center h4 {
    text-transform: uppercase;
    color: var(--primary-color, #006BB3);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 18px;
}

.breadcumb-area {
    background: url(../images/inner-images/breadcumb-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 272px 0 143px;
}

.breadcumb-title h4 {
    font-size: 46px;
    font-weight: 800;
    color: #ffff;
    padding-bottom: 13px;
}

.breadcumb-title h5 {
    color: #fff;
}

.breadcumb-content ul li {
    display: inline-block;
    margin: 0 5px;
    color: #fff;
}

.page-fses-auth .breadcumb-content ul li {
    display: inline-block;
    margin: 0 5px;
    color: var(--default-text-color, #000);
}

.page-fses-auth .breadcumb-content ul li a {
    display: inline-block;
    margin: 0 5px;
    color: var(--default-text-color, #000);
}

.page-fses-auth .breadcumb-content ul li i {
    color: var(--primary-color, #006BB3);
}

.breadcumb-content ul li.khela-hbe {
    opacity: 0.7;
    position: relative;
}

.breadcumb-content ul li.khela-hbe:before {
    position: absolute;
    content: "";
    width: 17px;
    height: 2px;
    left: -30px;
    top: 13px;
    background: #fff;
}

.breadcumb-content ul li a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.breadcumb-content ul li a:before {
    position: absolute;
    content: "";
    width: 17px;
    height: 2px;
    right: -30px;
    top: 13px;
    background: #fff;
}

.breadcumb-content ul li img {
    position: relative;
    top: -2px;
    padding-right: 6px;
}

.breadcrumbs-identified {
    margin: 120px 0 20px 0;
}

.fses_news-area.inner {
    margin-top: 0;
    padding: 108px 0 125px;
    background: #F6F6EE;
}

.widget-sidber {
    border-radius: 5px;
    background-color: #f7f6ee;
    padding: 32px 41px 29px;
    margin-bottom: 27px;
}

.widget-sidber-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 46px;
    position: relative;
}

.widget-sidber-content h4:before {
    position: absolute;
    content: "";
    width: 29px;
    height: 2px;
    left: 0;
    bottom: -8px;
    background: var(--primary-color, #006BB3);
}

.widget-category ul li img {
    margin-right: 12px;
    transition: 0.5s;
}

.widget-category ul li a:hover svg {
    filter: invert(1);
    transition: 0.5s;
}

.widget-category ul li a {
    background: var(--gray-color, #F5F5F7);
    padding: 14px 26px;
    width: 100%;
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 500;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.widget-category ul li a:hover {
    color: var(--text-on-primary-color, #FFFFFF);
    background: var(--primary-color, #006BB3);
    transition: 0.5s;
}

.widget-category ul li a:hover span {
    color: var(--text-on-primary-color, #FFFFFF);
    transition: 0.5s;
}

.widget-category ul li span {
    display: inline-block;
    float: right;
    font-size: 14px;
}

.widget-category ul li a:hover i {
    opacity: 1;
    color: #fff;
}

.widget-sidber-download-button a {
    display: inline-block;
    background: #00181A;
    width: 100%;
    color: #fff;
    padding: 15px 23px;
    border-radius: 5px;
    margin-bottom: 18px;
}

.widget-sidber-download-button a.active {
    background: var(--primary-color, #006BB3);
}

.widget-sidber-download-button i {
    color: var(--primary-color, #006BB3);
    display: inline-block;
    font-size: 22px;
    margin-right: 9px;
    position: relative;
    top: 3px;
}

.widget-sidber-download-button a.active i {
    color: #fff;
}

.widget-sidber-download-button span i {
    float: right;
    display: inline-block;
    font-size: 16px;
}

.widget-sidber-download-button a.active span i {
    color: #fff;
}

/* === Blog Section Styles === */
.blog-details-area {
    padding: 100px 0 100px;
    background-color: var(--content-background-color, #fff);
}

.blog-details-thumb {
    overflow: hidden;
}

.blog-details-thumb img {
    width: 100%;
    transition: 0.5s;
}

.blog-details-thumb img:hover {
    transform: scale(1.2) skew(-10deg);
}

.blog-details-content {
    padding: 27px 36px 20px;
    border: 1px solid #2222;
}

.blog-details-area .meta-blog span {
    display: inline-block;
    margin-right: 28px;
    font-weight: 500;
}

.blog-details-area span.mate-text {
    padding-left: 36px;
    position: relative;
}

.blog-details-area span.mate-text:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    left: 5px;
    top: 11px;
    background: var(--primary-color, #006BB3);
}

.blog-details-area .meta-blog i {
    display: inline-block;
    color: var(--primary-color, #006BB3);
    padding-right: 9px;
}

.blog-details-area .meta-blog img {
    margin-right: 8px;
    position: relative;
    top: -1px;
}

h4.blog-details-title {
    font-size: 32px;
    margin: 12px 0 19px;
}

p.blog-details-desc {
    font-size: 17px;
    margin-bottom: 25px;
}

.blog-details-author-talk {
    display: flex;
    gap: 26px;
    background: #F7F6EE;
    padding: 41px 51px 40px;
    margin-top: 48px;
}

.blog-details-quote img {
    position: relative;
    top: 8px;
}

.blog-details-author-title p {
    font-size: 20px;
    font-style: italic;
    line-height: 30px;
    color: #001819;
}

.blog-details-quote img {
    position: relative;
    top: 8px;
    color: #001819;
}

.blog-details-author-title span {
    margin-left: 58px;
    display: inline-block;
    color: #001819;
    position: relative;
}

.blog-details-author-title span:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: -58px;
    top: 12px;
    background: var(--primary-color, #006BB3);
}

h3.blog-details-title {
    font-size: 28px;
    margin: 54px 0 16px;
}

p.blog-details-desc.two {
    width: 95%;
}

.blog-details-list-item {
    margin-bottom: 40px;
}

.blog-details-list-item ul li {
    margin-bottom: 10px;
    font-size: 17px;
}

.blog-details-list-item ul li i {
    display: inline-block;
    color: var(--primary-color, #006BB3);
    font-size: 18px;
    margin-right: 16px;
}

h3.blog-details-title.two {
    font-size: 28px;
    margin: 38px 0 16px;
}

p.blog-details-desc.three {
    width: 100%;
}

.blog-details-socila-box {
    border: 1px solid #2222;
    border-top: transparent;
    padding: 19px 35px 18px;
    border-radius: 0 0 5px 5px;
}

.blog-details-category span a {
    display: inline-block;
    background: #F6F6EE;
    padding: 6px 16px;
    font-weight: 500;
    color: #001819;
    border-radius: 3px;
    margin-right: 7px;
    transition: 0.5s;
}

.blog-details-category span a:hover {
    background: var(--primary-color, #006BB3);
    color: var(--text-on-primary-color, #fff);
}

.blog-details-category span a.active-class {
    background: var(--primary-color, #006BB3);
    color: var(--text-on-primary-color, #fff);
}

.blog-details-social-icon {
    text-align: right;
}

.blog-details-social-icon ul li {
    display: inline-block;
}

.blog-details-social-icon ul li i {
    display: inline-block;
    background: #1974E9;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 13px;
    margin-left: 5px;
}

.blog-details-social-icon ul li:nth-child(2) i {
    background: #00AAE8;
}

.blog-details-social-icon ul li:nth-child(3) i {
    background: #016EAF;
}

.blog-details-social-icon ul li:nth-child(4) i {
    background: #B7071C;
}

.blog-details-post {
    margin-top: 40px;
}

.blog-post-box {
    display: flex;
    background: #f8f6f3;
    align-items: center;
    padding: 84px 21px 31px 43px;
    gap: 23px;
    margin: 0 13px;
}

.blog-post-box.style-two {
    text-align: right;
    padding: 85px 49px 31px 21px;
}

.blog-post-content a {
    display: inline-block;
    font-size: 20px;
    line-height: 26px;
    color: #001819;
    font-weight: 600;
    transition: 0.5s;
}

.blog-post-content a:hover {
    color: var(--primary-color, #006BB3);
}

.blog-post-content p {
    font-size: 14px;
    margin: 0;
    color: var(--primary-color, #006BB3);
}

.blog-details-post .owl-nav {
    position: relative;
}

.blog-details-post .owl-prev {
    position: absolute;
    top: -159px;
    left: 54px;
    font-size: 18px !important;
    color: #001819;
    font-weight: 500;
}

.blog-details-post .owl-prev i {
    color: var(--primary-color, #006BB3);
    display: inline-block;
    font-size: 13px;
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.blog-details-post .owl-next {
    position: absolute;
    top: -159px;
    right: 54px;
    font-size: 18px;
    color: #001819;
    font-weight: 500;
}

.blog-details-post .owl-next i {
    color: var(--primary-color, #006BB3);
    display: inline-block;
    font-size: 13px;
    margin-left: 5px;
}

.blog-details-post .owl-next i:hover {
    background: transparent;
}

.single-comment-area {
    background: #F6F6EE;
    padding: 49px 41px 56px;
    margin-top: 61px;
    border-radius: 5px;
}

.blog-details-comment-title h4 {
    font-size: 28px;
    margin: 0 0 28px;
}

.blog-details-comment {
    margin-bottom: 19px;
    position: relative;
    border: 1px solid #22222214;
    padding: 29px 29px 25px;
}

.blog-details-comment.style-two {
    margin-left: 105px;
}

.blog-details-comment-thumb {
    float: left;
    margin-right: 30px;
}

.blog-details-comment-content {
    overflow: hidden;
}

.blog-details-comment-content h2 {
    font-size: 20px;
    margin-top: 0;
    display: inline-block;
    font-weight: 700;
    margin-right: 30px;
}

.blog-details-comment-content p {
    font-size: 15px;
    margin: 13px 0 0;
}

.blog-details-comment-reply {
    position: absolute;
    right: 22px;
    top: 21px;
}

.blog-details-comment-reply a {
    background: var(--primary-color, #006BB3);
    padding: 3px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 2px;
    display: inline-block;
}

.blog-details-comment.reply {
    margin-left: 70px;
    padding-top: 35px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.blog-details-contact-title h4 {
    font-size: 23px;
    font-weight: 600;
    padding-bottom: 31px;
}

.blog-details-area .contact-input-box input {
    background: #fff;
    border: transparent;
    width: 100%;
    height: 60px;
    padding: 22px;
    outline: 0;
    margin-bottom: 11px;
}

.blog-details-area .contact-input-box textarea {
    background: #fff;
    border: transparent;
    width: 100%;
    height: 170px;
    padding: 12px 22px 0;
    outline: 0;
    margin-top: 11px;
    margin-bottom: 20px;
}

.input-check-box span {
    font-size: 15px;
    margin-left: 7px;
}

.blog-details-submi-button button {
    background: var(--primary-color, #006BB3);
    color: #fff;
    text-transform: uppercase;
    border: transparent;
    padding: 12px 26px;
    font-size: 15px;
    margin-top: 34px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    border: 2px solid var(--primary-color, #006BB3);
    border-radius: 5px;
    font-weight: 500;
}

.blog-details-submi-button button:hover {
    color: var(--primary-color, #006BB3);
}

.blog-details-submi-button button:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    transition: 0.5s;
    z-index: -1;
    border-radius: 5px;
}

.blog-details-submi-button button:hover:before {
    width: 100%;
    left: 0;
}

/* === Search Styles === */
.widget_search form {
    position: relative;
}

.widget_search input {
    border-radius: 4px;
    padding-left: 20px !important;
    height: 60px;
    width: 100% !important;
    position: relative;
    color: #012549;
    outline: 0 !important;
    border: transparent !important;
}

button.icons {
    border: 0;
    font-size: 16px;
    position: absolute;
    right: 14px;
    top: 20px;
    color: #1e1e1e;
    background: transparent;
    opacity: 0.7;
}

.sidber-widget-recent-post {
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    gap: 19px;
}

.recent-widget-content a {
    transition: 0.5s;
    color: #001819 !important;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    width: 95%;
    display: inline-block;
}

.sidber-widget-recent-post:hover .recent-widget-content a {
    color: var(--primary-color, '#006BB3') !important;
}

.recent-widget-content p {
    font-size: 14px;
    margin: 0;
    color: var(--primary-color, #006BB3);
}

.widget-catefories-tags a {
    display: inline-block;
    color: #101010;
    font-weight: 500;
    background: #fff;
    padding: 6px 19px;
    margin: 6px 3px;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

.widget-catefories-tags a:hover {
    color: #fff;
}

.widget-catefories-tags a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--primary-color, #006BB3);
    transition: 0.5s;
    z-index: -1;
}

.widget-catefories-tags a:hover:before {
    width: 100%;
    left: 0;
}

.fses-list-area {
    background: var(--content-background-color, #fff);
    padding: 40px 0 80px;
    min-height: 500px;
}

.single-blog-list-box {
    margin-bottom: 25px;
}

.single-blog-list-box:hover .blog-thumb img {
    transform: scale(1.2) skew(-10deg);
}

.blog-list-content {
    padding: 27px 36px 20px;
    border-bottom: 1px solid rgba(var(--border-color), 0.2);
}

.blog-list-content a {
    color: var(--primary-color, #006BB3);
}

.blog-list-content.news-title a {
    color: var(--default-text-color, #000);
    font-weight: 600;
}

.blog-list-area .meta-blog span {
    display: inline-block;
    margin-right: 28px;
    font-weight: 500;
}

.blog-list-area span.mate-text {
    padding-left: 36px;
    position: relative;
}

.blog-list-area span.mate-text:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    left: 5px;
    top: 11px;
    background: var(--primary-color, #006BB3);
}

.blog-list-area .meta-blog i {
    display: inline-block;
    color: var(--primary-color, #006BB3);
    padding-right: 9px;
}

.blog-list-area .meta-blog img {
    margin-right: 8px;
    position: relative;
    top: -1px;
}

p.blog-list-desc {
    font-size: 17px;
    margin-bottom: 7px;
}

.blog-list-button {
    border: 1px solid var(--primary-color, #006BB3);
    border-top: transparent;
    padding: 22px 35px;
    border-radius: 0 0 5px 5px;
}

.blog-list-button a {
    display: inline-block;
    font-size: 16px;
    color: #001819;
    font-weight: 500;
    transition: 0.5s;
}

.blog-list-button a:hover {
    color: var(--primary-color, #006BB3);
    transition: 0.5s;
}

.blog-list-button i {
    display: inline-block;
    position: relative;
    top: 2px;
    left: 4px;
    font-size: 17px;
}

.single-input-box select {
    width: 100%;
    height: 57px;
    outline: 0;
    color: var(--primary-text-color, #001819);
    background: var(--input-background-color, #FFFFFF) url("data:image/svg+xml;utf8,<svg fill='%23001819' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    border: 1px solid rgba(var(--border-color), 0.2);
    border-radius: 5px;
    padding: 0 21px;
    margin-bottom: 20px;
    -moz-appearance: none;
    -webkit-appearance: none;
}


.single-input-box select::-ms-expand {
    display: none;
}

.single-input-box input {
    width: 100%;
    height: 57px;
    outline: 0;
    color: var(--primary-text-color, #001819);
    background: var(--input-background-color, #FFFFFF);;
    border: 1px solid rgba(var(--border-color), 0.2);
    border-radius: 5px;
    padding: 0 21px;
    margin-bottom: 20px;
}

.single-input-box input::placeholder {
    color: var(--primary-text-color, #001819);
    opacity: 0.5;
}

.single-input-box textarea {
    width: 100%;
    height: 57px;
    outline: 0;
    color: var(--primary-text-color, #001819);
    background: var(--input-background-color, #FFFFFF);
    border: 1px solid rgba(var(--border-color), 0.2);
    border-radius: 5px;
    padding: 5px 5px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.single-input-box textarea::placeholder {
    color: var(--primary-text-color, #001819);
    opacity: 0.5;
}

.single-input-box-no-margin input {
    width: 100%;
    height: 57px;
    outline: 0;
    color: var(--primary-text-color, #001819);
    background: var(--input-background-color, #FFFFFF);;
    border: 1px solid rgba(var(--border-color), 0.2);
    border-radius: 5px;
    padding: 0 21px;
}

.single-input-box-no-margin input::placeholder {
    color: var(--primary-text-color, #001819);
    opacity: 0.5;
}

.single-input-box-no-margin textarea {
    width: 100%;
    height: 57px;
    outline: 0;
    color: var(--primary-text-color, #001819);
    background: var(--input-background-color, #FFFFFF);;
    border: 1px solid rgba(var(--border-color), 0.2);
    border-radius: 5px;
    padding: 5px 5px;
    margin-top: 12px;
}

.single-input-box-no-margin textarea::placeholder {
    color: var(--primary-text-color, #001819);
    opacity: 0.5;
}

.input-check input {
    width: 16px;
    height: 16px;
    position: relative;
    top: 3px;
    margin-right: 5px;
}

.input-check span {
    display: inline-block;
    font-size: 17px;
}

.contact-submit-button button {
    background: var(--primary-color, #006BB3);
    color: #fff;
    border: transparent;
    padding: 13px 25px;
    border-radius: 3px;
    margin-top: 35px;
    outline: 0;
    border: 2px solid var(--primary-color, #006BB3);
    transition: 0.5s;
}

.contact-submit-button button:hover {
    background: transparent;
    color: var(--primary-color, #006BB3);
    transition: 0.5s;
}

.home-fses.header-area {
    border-bottom: transparent;
    z-index: 9;
    position: relative;
}

.home-fses.header-area .row.add-bg {
    background: var(--navigation-background-color, #fff);
}

.home-fses.header-area .header-menu ul li {
    display: inline-block;
    margin-right: 51px;
}

.home-fses.header-area .header-menu ul li a {
    color: var(--primary-text-color, #001819);
}

.home-fses.header-area .header-button a {
    padding: 13px 37px;
    border-radius: 30px;
    margin-left: 36px;
    border: 2px solid var(--primary-color, #006BB3);
}

.home-fses.header-area .header-button a:before {
    border-radius: 30px !important;
}

.home-fses.header-area .header-button i {
    font-size: 18px;
    position: relative;
    left: 7px;
    top: 3px;
}

.home-fses .header-secrch-icon i {
    display: inline-block;
    color: var(--primary-color, #006BB3);
    font-size: 16px;
    cursor: pointer;
    background: #F4F5F9;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}

.hero-area.home-fses {
    background: url(../images/hero_home.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 600px;
    padding-top: 76px;
}

.hero-area.page-fses {
    background: url(../images/hero_landing.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 350px;
    padding-top: 76px;
}

.hero-area.page-fses-auth {
    height: 155px;
    padding-top: 90px;
    color: var(--default-text-color, #000);
    background: var(--content-background-color, #fff);
}

.home-fses .hero-content h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 34px;
}

.hero-area.home-fses .hero-content h1 {
    font-size: 76px;
    line-height: 90px;
    text-transform: uppercase;
}

.fses-button.style-five a {
    border-radius: 46px;
    font-size: 17px;
    font-weight: 600;
}

.home-fses .fses-button a:before {
    border-radius: 30px;
}

.fses-button.style-five i {
    display: inline-block;
    font-size: 24px;
    position: relative;
    left: 4px;
    top: 3px;
}

.home-fses .row.margin-top {
    margin-top: -67px;
}

.home-fses .single-feature-box {
    background: var(--gray-color, #F5F5F7);
    display: flex;
    align-items: center;
    padding: 26px 29px 37px;
    gap: 18px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;
}

.home-fses .single-feature-box.primary-border {
    border-bottom: solid 6px var(--primary-color, #006BB3);
}

.home-fses .single-feature-box.secondary-border {
    border-bottom: solid 6px var(--secondary-color, #006BB3);
}

.home-fses .feature-content h4 {
    font-size: 20px;
    font-weight: 600;
}

.home-fses .feature-content p {
    margin: 9px 0 0;
    color: var(--secondary-text-color, #5F6A77);
}

.home-fses .single-feature-shape {
    position: absolute;
    right: -89px;
    bottom: -59px;
    z-index: -1;
    transition: 0.5s;
}

.home-fses .single-feature-box:hover .single-feature-shape {
    right: -3px;
    bottom: 0;
}

.home-fses.about-area {
    background: var(--content-background-color, #fff);
    padding: 80px 0 123px;
}

.home-fses.about-area .section-title.left {
    margin-bottom: 39px;
}

.home-fses.about-area .about-thumb {
    position: relative;
    left: 0;
}

.home-fses .about-item-box {
    display: flex;
    align-items: center;
    gap: 35px;
}

.home-fses .about-list-item ul li {
    color: var(--primary-text-color, #001819);
    line-height: 24px;
    padding-top: 40px;
}

.home-fses .about-list-item ul li i {
    display: inline-block;
    font-size: 10px;
    color: var(--secondary-color, #FEC643);
    margin-right: 15px;
}

.home-fses.about-area .fses-button {
    margin-top: 48px;
    display: inline-block;
}

.home-fses .section-title.left img {
    margin-right: 10px;
    position: relative;
    top: -1px;
}

.home-fses .section-title.left h4 {
    text-transform: uppercase;
    color: var(--primary-color, #006BB3);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 21px;
}

.home-fses .section-title.left h1 {
    font-size: 35px;
    font-weight: 700;
    line-height: 45px;
}

.home-fses .section-title.center img {
    margin-right: 9px;
    margin-top: -3px;
}

.home-fses .section-title.center img.images-2 {
    position: relative;
    left: 10px;
}

.home-fses .section-title.center h4 {
    text-transform: uppercase;
    color: var(--primary-color, #006BB3);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 18px;
}

.home-fses .section-title.center h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 49px;
}

/* === Service Section Styles === */
.home-fses.services-title-area {
    background: #F7F7F7;
    padding: 100px 0 315px;
}

.home-fses.services-title-area p.section-desc {
    width: 90%;
    margin: -34px 0 0;
}

.home-fses.service-area {
    padding: 2px 0 0;
    background: none;
}

.home-fses.service-area .row.upper {
    position: relative;
    top: -339px;
    margin-left: 274px;
}

.home-fses .single-service-box {
    position: relative;
    padding: 20px 28px 40px;
    background: #fff;
    text-align: center;
    border-radius: 3px;
    overflow: inherit;
    margin: 34px 16px;
}

.home-fses .service-thumb {
    position: relative;
    overflow: hidden;
}

.home-fses .service-thumb img {
    width: 100%;
    padding: 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.home-fses .single-service-box:hover .service-thumb img {
    transform: scale(1.2) skew(-10deg);
}

.home-fses .service-icon {
    position: absolute;
    bottom: 0;
    right: 0;
}

.home-fses .services-content h4 {
    font-size: 22px;
    margin: 29px 0 11px;
}

.home-fses .service-button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -24px;
}

.home-fses .service-button a {
    display: inline-block;
    background: var(--primary-color, #006BB3);
    color: #fff;
    font-weight: 600;
    padding: 4px 30px 11px;
    border-radius: 30px;
    transition: 0.5s;
}

.home-fses .service-button i {
    display: inline-block;
    font-size: 28px;
    position: relative;
    top: 7px;
}

.home-fses.why-choose-area {
    background: url(../images/home6/why-choose-us-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 360px 0 123px;
    margin-top: -586px;
}

.home-fses .why-choose-thumb {
    position: relative;
    left: -325px;
}

.home-fses.why-choose-area .section-title.left h1 {
    color: #fff;
}

.home-fses .why-choose-us-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 41px;
}

.home-fses .choose-us-content h4 {
    font-size: 20px;
    color: #fff;
    margin: 0;
}

.home-fses .choose-us-content p {
    margin: 9px 0 0;
}

.home-fses.pricing-area {
    padding: 100px 0 100px;
    background: var(--gray-color, #F5F5F7);
}

.home-fses .single-pricing-box {
    padding: 25px 25px 15px;
    position: relative;
    z-index: 1;
    border-top: solid 2px var(--primary-color, #006BB3);
    border-bottom: solid 2px var(--primary-color, #006BB3);
    margin-bottom: 25px;
}

.home-fses.news-area {
    padding: 100px 0 100px;
    background: var(--gray-color, #F5F5F7);
}

.home-fses .single-news-box {
    padding: 25px 25px 15px;
    position: relative;
    z-index: 1;
    min-height: 230px;
    border-top: solid 2px var(--secondary-color, #FEC643);
    border-bottom: solid 2px var(--secondary-color, #FEC643);
    margin-bottom: 25px;
}

.home-fses .pricing-text h4 {
    font-size: 18px;
    color: var(--primary-color, #006BB3);
    font-weight: 500;
    background: #F7F7F7;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 0 30px 30px 0;
    position: relative;
    left: -42px;
}

.home-fses .pricing-plan-content h1 {
    font-size: 50px;
    display: inline-block;
    margin-top: 30px;
}

.home-fses .pricing-plan-content span {
    display: inline-block;
    font-weight: 500;
    margin-left: 7px;
}

.home-fses .pricing-plan-content p {
    margin: 24px 0 33px;
}

.home-fses .pricing-list-item ul li {
    position: relative;
    margin-left: 29px;
    margin-bottom: 15px;
}

.home-fses .pricing-list-item ul li:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    left: -24px;
    top: 9px;
    background: var(--primary-color, #006BB3);
    border-radius: 50%;
}

.home-fses.pricing-area .single-pricing-box .fses-button {
    margin-top: 40px;
    display: inherit;
    text-align: center;
}

.home-fses.pricing-area .single-pricing-box .fses-button a {
    padding: 15px 40px;
}

.home-fses .pricing-shape-1 {
    position: absolute;
    top: 45px;
    right: 46px;
}

.home-fses .pricing-shape-2 {
    position: absolute;
    right: 0;
    bottom: 36px;
    z-index: -1;
}

.home-fses.fses_news-area {
    padding: 122px 0 125px;
    background: var(--content-background-color, #fff);;
    margin-top: 0;
}

.home-fses .single-fses_news-box {
    text-align: center;
    margin-top: 0;
}

.home-fses .fses_news-thumb {
    overflow: hidden;
    position: relative;
}

.home-fses .fses_news-thumb:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -201px;
    background-image: linear-gradient(0deg, rgba(73, 175, 69, 0.9999999999999999) 0%, rgba(255, 255, 255, 0) 64%);
    transition: 0.5s;
}

.home-fses .single-fses_news-box:hover .fses_news-thumb:before {
    bottom: 0;
}

.home-fses .fses_news-thumb img {
    width: 100%;
}

.home-fses .fses_news-social-icon {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 0;
    transition: 0.5s;
    opacity: 0;
}

.home-fses .single-fses_news-box:hover .fses_news-social-icon {
    bottom: 30px;
    opacity: 1;
}

.home-fses .fses_news-social-icon ul li i {
    border: 1px solid #fff;
    display: inline-block;
    width: 37px;
    height: 37px;
    line-height: 37px;
    border-radius: 50%;
    color: #ffff;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.home-fses .fses_news-social-icon ul li i:hover {
    color: var(--primary-color, #006BB3);
}

.home-fses .fses_news-social-icon ul li i:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}

.home-fses .fses_news-social-icon ul li i:hover:after {
    transform: scale(1);
}

.home-fses .fses_news-content {
    background: #F7F7F7;
    padding: 25px 0 26px;
    position: relative;
}

.home-fses .fses_news-content:before {
    background: transparent;
}

.home-fses .fses_news-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
}

.home-fses.footer-area {
    background: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 123px 0 95px;
    position: relative;
}

.home-fses p.footer-desc {
    margin: 38px 0 0;
    color: #fff;
    opacity: 0.6;
    width: 78%;
}

.home-fses .footer-social-icon {
    text-align: left;
    margin-top: 31px;
}

.home-fses .footer-social-icon ul li i {
    border: transparent;
    background: #0B2F21;
}

.home-fses .footer-widget-title h4 {
    margin-bottom: 31px;
}

.home-fses .footer-widget-menu p {
    width: 75%;
    color: #95958f;
    margin-bottom: 21px;
}

.home-fses .footer-widget-menu ul {
    display: inline-block;
    margin-right: 18px;
}

.home-fses .footer-widget-menu ul li {
    color: #95958f;
    margin-bottom: 13px;
}

.home-fses .footer-widget-menu ul li i {
    font-size: 14px;
    color: #fff;
    opacity: 1;
}

.home-fses .footer-widget-blog {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 27px;
}

.home-fses .footer-widget-blog-content a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    line-height: 21px;
    transition: 0.5s;
}

.home-fses .footer-widget-blog-content a:hover {
    color: var(--primary-color, #006BB3);
}

.home-fses .footer-widget-blog-content p {
    font-size: 14px;
    color: #fff;
    opacity: 0.5;
    margin: 4px 0 0;
    padding-left: 0;
    position: relative;
}

.home-fses .footer-shpae {
    position: absolute;
    right: 66px;
    top: 66px;
}

.footer-bottom.home-fses {
    background-color: #000;
    padding: 25px 0 22px;
}

.home-fses .footer-bottom-content p {
    margin: 0;
}

.home-fses .footer-bottom-content ul li {
    display: inline-block;
    margin: 0 17px;
}

.footer-bottom-content ul {
    text-align: right;
}

.footer-bottom-content ul li a {
    display: inline-block;
    color: #95958f;
    font-weight: 500;
    transition: 0.5s;
}

.footer-bottom-content ul li a:hover {
    color: var(--primary-color, #006BB3);
}

.feature-area.home-fses {
    background: var(--content-background-color, #fff);
}

.splitting .char {
}

@keyframes slide-in {
    from {
        transform: translateY(-1em) rotate(-.5turn) scale(0.5);
        opacity: 0;
    }
}

.prgoress_indicator {
    position: fixed;
    right: 26px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--primary-color, #006BB3);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear !important;
}

.prgoress_indicator:hover ::after {
    color: var(--primary-color, #006BB3);
}

.prgoress_indicator:hover ::before {
    opacity: 1;
}

.prgoress_indicator svg path {
    fill: none;
}

.prgoress_indicator svg.progress-circle path {
    stroke: var(--primary-color, #006BB3);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear !important;
}

/* === Loader Styles === */
.loader-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 0.8s 1s ease;
    z-index: 99999;
}

.loader {
    position: relative;
    display: block;
    z-index: 201;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    transition: all 1s 1s ease;
    border: 3px solid transparent;
    border-top-color: #f3297c;
    -webkit-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.loader:before {
    position: absolute;
    content: '';
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: #10eb9b;
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:after {
    position: absolute;
    content: '';
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-right-color: #fff;
    -webkit-animation: spin 2.5s linear infinite;
    -moz-animation: spin 2.5s linear infinite;
    -o-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper .loder-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #111;
    z-index: 2;
}

.loader-wrapper .loder-section.left-section {
    left: 0;
    transition: 1s 1.4s ease;
}

.loader-wrapper .loder-section.right-section {
    right: 0;
    transition: 1s 1.4s ease;
}

.loaded .loder-section.left-section {
    left: -100%;
}

.loaded .loder-section.right-section {
    right: -100%;
}

.loaded .loader-wrapper {
    visibility: hidden;
}

.loaded .loader {
    top: -100%;
    opacity: 0;
}

a.arrow-right {
    color: var(--primary-color, #006BB3);
}

.fses-tab .nav-tabs .nav-link {
    background-color: #fff;
    color: #000;
    border: 1px solid #dee2e6;
    border-bottom: none;
}

.fses-tab .nav-tabs .nav-link.active {
    background-color: var(--gray-color, #F5F5F7);
!important;
    font-weight: 700;
}

.fses-tab .tab-pane.active {
    background-color: var(--gray-color, #F5F5F7);
!important;
    color: #999 !important;
    padding: 25px;
    min-height: 200px;
}

.fses-tab .nav-tabs .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
}

.fses-tab .modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #6c757d;
    transition: all 0.3s;
}

.fses-tab .modal-header {
    border-bottom: none !important;
}

.fses-tab .modal-xl-custom {
    min-width: 750px;
}

@media (max-width: 768px) {
    .fses-tab .modal-xl-custom {
        min-width: 95%;
    }
}

.evrotrust-logo {
    width: 160px;
    height: auto;
    margin-bottom: 25px;
}

.fses-tab h4 {
    margin-bottom: 25px;
}

.fses-gray-panel-simple {
    background-color: var(--gray-color, #F5F5F7);
!important;
    color: #999 !important;
    padding: 25px;
    margin: 2px;
}

.fses-gray-panel-simple label {
    font-weight: 600;
    padding-bottom: 6px;
}

.fses-gray-panel-simple h6 {
    margin-bottom: 15px;
    margin-top: 4px;
    font-size: 15px !important;
}

.fses-gray-panel {
    background-color: var(--gray-color, #F5F5F7);
!important;
    color: #999 !important;
    padding: 25px;
    min-height: 200px;
    margin: 2px;
}

.fses-gray-panel label {
    font-weight: 600;
    padding-bottom: 6px;
}

.fses-gray-panel h6 {
    margin-bottom: 15px;
    margin-top: 4px;
    font-size: 15px !important;
}

.fses-primary-button {
    display: inline-block;
    background: var(--primary-color, #006BB3);
    color: var(--text-on-primary-color, #FFFFFF);
    font-size: 17px;
    font-weight: 500;
    padding: 14px 40px;
    border-radius: 50px;
    border: 2px solid var(--primary-color, #006BB3);
    position: relative;
    z-index: 1;
}

.fses-primary-button:before {
    transform: scale(1);
}

.fses-primary-button:before {
    transform: scale(1);
}

.fses-primary-button:hover, .fses-primary-button:hover span {
    background: transparent;
    color: var(--primary-text-color, #001819);
    transition: 0.5s;
}

.fses-primary-button-circle {
    display: inline-block;
    background: var(--primary-color, #006BB3);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 14px;
    border-radius: 50px;
    border: 2px solid var(--primary-color, #006BB3);
    position: relative;
    z-index: 1;
    width: 57px;
    height: 57px;
}

.fses-primary-button-circle:before {
    transform: scale(1);
}

.fses-primary-button-circle:before {
    transform: scale(1);
}

.fses-primary-button-circle:hover {
    background: transparent;
    color: var(--primary-color, #006BB3);
    transition: 0.5s;
}

.fses-secondary-button {
    display: inline-block;
    background: var(--secondary-color, #FEC643);
    color: var(--text-on-secondary-color,#001819) !important;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 40px;
    border-radius: 50px;
    border: 2px solid var(--secondary-color, #FEC643);
    position: relative;
    z-index: 1;
}

.fses-secondary-button span {
    color: var(--text-on-secondary-color,#001819) !important;
}

.fses-secondary-button i {
    display: inline-block;
    font-size: 24px;
    position: relative;
    left: 4px;
    top: 3px;
}

.fses-secondary-button:hover, .fses-secondary-button:hover span {
    background: transparent;
    transition: 0.5s;
    color: var(--primary-text-color, #001819);
}

.fses-topnav-submenu ul {
    position: absolute;
    inset: 0px auto auto 0px;
    padding-top: 0px;
    margin: 10px !important;
    transform: translate3d(961px, 24.5px, 0px);
    border-top: 5px solid var(--primary-color, #006BB3) !important;
    background: var(--navigation-background-color, #fff) !important;;
    width: auto;
    overflow-y: auto;
    max-height: 600px;
    overflow-x: hidden;
    white-space: nowrap;
    text-align: left;
    background: #fff;
    border-radius: 3px 3px 0 0;
}

.fses-topnav-submenu ul li a {
    display: block;
    padding: 8px 19px !important;
    color: var(--default-text-color, #000);
    width: 150%;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.fses-topnav-submenu a.dropdown-item:hover {
    color: var(--text-on-primary-color, #FFFFFF) !important;
    background: var(--primary-color, #006BB3);
    transition: 0.5s;
}

.fses-topnav-submenu a.dropdown-item:hover svg {
    filter: invert(1);
    transition: 0.5s;
}

.search-container {
    display: flex;
    align-items: center;
    border: 1px solid rgba(var(--border-color), 0.2);
    border-radius: 0.25rem;
    padding: 0;
    margin: 2px;
    height: 59px;
    color: var(--primary-text-color, #001819);
    background: var(--input-background-color, #FFFFFF);
}

.search-icon {
    padding: 0.375rem 0.75rem;
    color: #6c757d;
    background: white;
    border-right: none;
    color: var(--primary-text-color, #001819);
    background: var(--input-background-color, #FFFFFF);
}

.search-input {
    flex-grow: 1;
    border: none;
    width: 100%;
    height: 57px;
    outline: 0;
    color: var(--primary-text-color, #001819);
    background: var(--input-background-color, #FFFFFF);
    padding: 0 21px;
}

.search-input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.search-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    white-space: nowrap;
    background: var(--primary-color, #006BB3);
    color: var(--text-on-primary-color, #FFFFFF);
    height: 100%;
    padding: 13px 25px;
    outline: 0;
    transition: 0.5s;
}

.search-btn:hover {
    background: transparent;
    color: var(--default-text-color, #000);
    transition: 0.5s;
}

.reports-table-container {
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    margin: 2px;
}


/* Optional: Add scrollbar styling for better appearance */
.reports-table-container::-webkit-scrollbar {
    height: 8px;
}

/*.reports-table-container::-webkit-scrollbar-track {*/
/*    background: #f1f1f1;*/
/*}*/

/*.reports-table-container::-webkit-scrollbar-thumb {*/
/*    background: #888;*/
/*    border-radius: 4px;*/
/*}*/

/*.reports-table-container::-webkit-scrollbar-thumb:hover {*/
/*    background: #555;*/
/*}*/

.reports-table {
    width: 100%;
    min-width: 1200px;
    margin: 2px;
    color: var(--default-text-color, #000);
}

.reports-table thead {
    background: var(--gray-color, #F5F5F7);
}

.reports-table thead td {
    width: 14.25%;
    padding: 20px 10px;
}

.reports-table tbody td {
    width: 14.25%;
    padding: 20px 10px;
    text-align: center;
}

.reports-table tbody td:first-child {
    text-align: left;
}

.reports-table tbody td.bolded {
    font-weight: 600;
}

.reports-table tbody tr:nth-child(odd) {
    background-color: var(--content-background-color, #fff);
}

.reports-table tbody tr:nth-child(even) {
    background-color: rgba(var(--primary-alpha-color), 0.1);;
}

.reports-total {
    background: var(--gray-color, #F5F5F7) !important;
}

.auth-user {
    display: none;
}

.java-fallback-message {
    display: block;
    background: var(--input-background-color, #FFFFFF);
    border: 1px solid rgba(var(--border-color), 0.2);
    padding: 15px;
    margin-top: 10px;
}

.java-fallback-message h4 {
    color: var(--error-color, #C2131B);
}

.welcome-text-area {
    padding: 50px;
    text-align: center;
    background: rgba(21, 27, 40, 0.4);
    color: #fff;
}

.header-logo img {
    width: 300px;
    height: auto;
}

.swal2-container .privacy {
    display: flex !important;
}

.swal2-container .privacy a {
    color: var(--primary-color, #006BB3);
}

.swal2-container .swal2-actions {
    min-width: max-content;
}

.swal2-container .swal2-actions .swal2-confirm {
    background: var(--primary-color, #006BB3) !important;
}

.swal2-container .swal2-actions .swal2-cancel {
    background: var(--error-color, #C2131B) !important;
}

@media (max-width: 990.98px) {
    .swal2-container .privacy {
        display: grid !important;
    }

    .mobile-only {
        display: block !important;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .hero-area.home-fses {
        height: 430px;
    }

    .home-fses .single-pricing-box, .home-fses .single-news-box {
        border-bottom: none;
    }

    .hero-area.page-fses-auth {
        height: 100px;
    }

    .breadcrumbs-identified {
        margin: 0 0 20px 0;
    }

    .single-input-box select {
        margin-bottom: 0px;
    }

    .auth-user {
        pointer-events: auto !important;
        display: block;
        position: absolute;
        float: right;
        right: 60px;
        top: 16px;
        z-index: 1001;
    }

    .auth-user button {
        background: var(--primary-color, #006BB3);
        color: var(--text-on-primary-color, #FFFFFF);
        font-size: 17px;
        font-weight: 500;
        border-radius: 50%;
        border: 2px solid var(--primary-color, #006BB3);
        width: 32px;
        height: 32px;
    }

    .home-fses.footer-area {
        padding: 0 0 0 15px;
    }

    .hero-area {
        height: min-content !important;
    }
}