/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/@xz/fonts@1/serve/plus-jakarta-display.min.css"); */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --global-font: 'Poppins', sans-serif;
	--bg: #182431;                /* page background */
    --card-radius: 12px;
    --gap: 24px;
    --text: #ffffff;
    --muted: rgba(255,255,255,.8);
    --overlay: rgba(8,12,18,.45); /* default darkener on images */
    --overlay-strong: rgba(255,140,66,.25); /* warm tint on hover/active */
    --shadow: 0 12px 28px rgba(0,0,0,.35);
    --accent: #ffb574;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    font-size: 20px;
    color: #333;
}

.btn1 {
    pointer-events: auto;
    cursor: pointer;
    background: #000;
    padding: 15px 20px;
    color: #fff;
    margin: 0;
    font-size: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.btn1 span {
    position: relative;
}

.btn1::before,
.btn1::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn1::before {
    content: '';
    background: linear-gradient(135deg, #20EEEF 0%, #1071BB 100%);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.btn1:hover::before {
    transform: translate3d(0, -100%, 0);
}

.red-color{
    color: #f00;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 300ms ease-in-out;
    z-index: 5;
    backdrop-filter: blur(10px);
    background: #00101C;
}

.home .header {
    background: transparent;
}

.header .btn {
    box-shadow: 0px 0px 4px 1px rgb(0 0 0 / 7%);
    order: 1;
	border-radius: 1px;
}

.btn:hover {
    transform: scale(1.065) translateY(0) !important;
}

.header.scrolled {
    box-shadow: 0px 0px 4px 1px rgb(0 0 0 / 7%);
}

.header.scrolled:after {
    display: block;
}

.header.header-dark {
    background: #00101C;
}

.header .logo a {
    display: block;
}

.nav.main-navigation {
    transition: all ease 0.4s;
    height: 0;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    overflow: hidden;
}

.nav.main-navigation.open-menu {
    height: 100vh;
    background: #00101C;
}

.active-menu {
    overflow: hidden;
}

.hamburger {
    width: 30px;
    height: 30px;
    padding: 7px;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to bottom, #20EEEF 0%, #1D7188 100%);
    cursor: pointer;
    display: flex;
    order: 2;
}

.hamburger .lines {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
}

.hamburger .lines {
    transition: all ease 0.4s;
}

.hamburger.active .lines:nth-child(2) {
    display: none;
}

.hamburger.active .lines:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .lines:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.main-navigation .menu {
    padding: 20px 0;
}

.nav.main-navigation .menu li a {
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    padding: 10px;
    display: block;
    font-weight: 600;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon-arrow {
    background: url('../images/arrow.svg') no-repeat;
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: all 300ms ease-in-out;
}

.home .inner-page-spacer {
    display: none;
}

.inner-page-spacer {
    height: 100px;
}

.banner {
    height: 430px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.banner-video {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .container {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.banner .content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    text-align: center;
    height: 90%;
}

.banner p {
    font-family: var(--global-font);
    font-weight: 400;
}

.text-one,
.text-two {
  display: none;      /* initially hidden before JS runs */
  opacity: 0;
  transform: scale(0.8);
}

/* Zoom In */
.zoomIn {
  animation: zoomIn 1s forwards;
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Zoom Out */
.zoomOut {
  animation: zoomOut 1s forwards;
}
@keyframes zoomOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.8); }
}
.rules-section {
    background: linear-gradient(to bottom, #00101C 0%, #00101C 100%);
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.banner h1{
    font-weight: 600;
}

.rules-section h2 {
    position: relative;
    text-align: center; 
	font-weight: 400px;
}

.rules-banner {
    position: relative;
}

.rules-banner::after {
    content: '';
    background: url('../images/rules-gradient.png') no-repeat;
    background-size: cover;
    width: 100%;
    height: 200px;
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    margin: auto;
}

.rules-outer {
    background: linear-gradient(180deg, rgba(0, 16, 28, 0) 3.34%, #00101C 27.27%);
}

.rules-section .container {
    margin-top: -70px;
    position: relative;
    z-index: 1;
}

.rules-box,
.benefits-box {
    border: 1px solid #FEFEFE;
    max-height: 500px;
    overflow-y: auto;
    position: relative;
}

.rules-box h3 {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
}

.rules-box .first-row .box,
.rules-box .second-row .box,
.rules-box .third-row .box,
.benefits-box .first-row .box {
    border-bottom: 1px solid #FEFEFE;
}

.benefits-box .second-row .box:not(:last-child) {
    border-bottom: 1px solid #FEFEFE;
}

.rules-box .first-row .box-1 {
    background: url('../images/box-gradient.jpg') no-repeat;
    background-size: cover;
}

.rules-box .third-row .box-3 {
    border: none;
    background: url('../images/box-gradient-2.png') no-repeat;
    background-size: 100% 100%;
    height: 250px;
    align-items: start;
    padding-top: 24px;
}

.rules-box .second-row .box-1 {
    height: 250px;
}

.rules-box .first-row .box-3 {
    padding-right: 0;
    height: 200px;
}

.rules-box .first-row .box-3 .inner-box{
    height: 100%;
}
.rules-box .first-row .box-3 .inner-box h3 {
    max-width: 690px;
    width: 100%;
    white-space: normal;
    margin-top: auto;
}

.rules-box .box,
.benefits-box .box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.rules-box .inner-box {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    position: relative;
}

.rules-box .build-img {
    width: 176px;
    flex: none;
}

.rules-box .build-img img {
    display: block;
}

.rules-box .second-row .box-2 h3 {
    text-align: left;
}

.rules-box .first-row .inner-box h3 {
    white-space: nowrap;
}

.rules-box .third-row .lower-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.rules-box .third-row .box-1 {
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 32px;
    padding: 20px;
}

.icons-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icons-wrap .icon {
    width: 32px;
    height: 32px;
}

.icons-wrap .icon i {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.box .upper-box {
    width: 80px;
    height: 80px;
    margin-left: auto;
}

.potential-section {
    color: #000000;
    padding: 40px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #fff;
}

.potential-section .career-decision {
    padding-bottom: 30px;
    border-bottom: 1px solid #D9D9D9;
}

.potential-section p {
    margin-bottom: 20px;
    color: #161616;
    font-family: var(--global-font);
    font-weight: 500;
}

.potential-section .career-decision p {
    font-style: italic;
}

.potential-section .career-img {
    margin-bottom: 20px;
}

.potential-section .career-img img {
    border-radius: 1px;
}

.service-section {
    color: #000000;
    padding: 40px 0 80px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #fff;
}

.service-slider .slides {
    border: 2px solid #E2E2E2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 10px;
    transition: all ease 0.4s;
}

.service-slider .slides h3 {
    margin-bottom: 12px;
}

.service-slider .slides p {
    color: #161616;
    line-height: 1.3;
    margin-bottom: 1px;
}

.slide-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 32px;
}

.service-slider .slides:hover {
    border-color: #136f82;
    background: linear-gradient(177.67deg, #20EFEF -150.1%, #1D71B8 266.28%);
    box-shadow: 0 10px 50px #00000078;
}

.service-slider .slides:hover h3,
.service-slider .slides:hover p {
    color: #fff;
}

.service-slider .slides:hover img {
    filter: brightness(0) invert(1);
}

.service-slider .slick-arrow {
    text-indent: -999999px;
    background: url('../images/slider-btn.svg') no-repeat;
    background-size: 27px;
    background-position: center center;
    width: 40px;
    height: 40px;
    border: solid 1px #E2E2E2;
    position: absolute;
    top: 100%;
    cursor: pointer;
}

.service-slider .slick-arrow:hover {
    border-color: #00101C;
    filter: brightness(0%);
}

.service-slider .slick-prev {
    left: 0;
    right: 48px;
    margin: 10px auto;

}

.service-slider .slick-next {
    transform: rotate(180deg);
    right: 0;
    left: 46px;
    margin: 10px auto;
}

.top-content {
    background-color: #01101C;
    text-align: center;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.top-content h2 {
    background: linear-gradient(135deg, #20EEEF 0%, #1071BB 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-content .btn {
    color: #ffffff;
    border: 1px solid #ffffff;
    background-color: transparent;
    border-radius: 28px;
    font-weight: 500;
}

.top-content .btn .icon-arrow {
    filter: brightness(0) invert(1);
}

.top-content .btn:hover {
    color: #fff;
    border-color: #01101C;
}

.earning-wrap {
    position: relative;
    margin-top: 32px;
}

.creator-earning {
    position: relative;
}

.earning-wrap:after {
    position: absolute;
    content: '';
    background: linear-gradient(180deg, rgba(1, 16, 28, 0) 0%, #01101C 100%);
    width: calc(100% - 30px);
    height: 165px;
    bottom: 0;
    left: 0;
}

.earningScrollbar {
    overflow: auto;
    position: relative;
    max-height: 400px;
    margin-top: 30px;
}

.earningScrollbar .mCSB_scrollTools .mCSB_draggerRail {
    background-color: #434343;
}

.earningScrollbar .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #8A8A8A;
    width: 6px;
}

.earningScrollbar .mCSB_scrollTools {
    opacity: 1;
}

.earning-box:not(:last-child) {
    margin-bottom: 10px;
}

.earning-box img {
    height: 100%;
}

.our-process {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.slick-list {
    overflow: visible !important;
}


.process-slider p {
    font-family: var(--global-font);
    font-size: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.process-slider .slide-number {
    background: linear-gradient(177.67deg, #20EFEF -150.1%, #1D71B8 266.28%);
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 20px;
    flex: none;
}

.process-slider .slides {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border: 6px solid rgba(255, 255, 255, 0.4);
    min-height: 200px;
    margin-right: 20px;
    transition: all ease 0.4s;
}

.process-slider .slides.slick-active {
    filter: none;
}

.process-slider .slides .slide-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.process-slider .slick-arrow {
    position: absolute;
    top: -60px;
    right: 0;
    text-indent: -999999px;
    background: url('../images/slider-btn.svg') no-repeat;
    background-size: 27px;
    background-position: center center;
    width: 40px;
    height: 40px;
    border: solid 1px #E2E2E2;
    filter: brightness(0) invert(1);
    cursor: pointer;
}

.process-slider .slick-arrow:hover {
    border-color: #00101C;
    filter: brightness(0%);
}

.process-slider .slick-prev {
    right: 50px;
}

.process-slider .slick-next {
    transform: rotate(180deg);
}

.other-benefits {
    padding: 40px 0;
    position: relative;
    z-index: 2;
    background-position: top center !important;
}

.other-benefits .logo {
    width: 96px;
}

.benefits-box {
    background-color: rgba(0, 0, 0, 0.2);
}

.benefits-box h3 {
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 24px;
}

.benefits-box .profile {
    width: 56px;
    flex: none;
}
.benefits-box .profile img{
	border-radius: 50%;
    height: 56px;
    object-fit: cover;
}


.para-content p {
    font-family: var(--global-font);
    font-style: italic;
    color: #161616;
    text-align: left;
    font-size: 18px;
}

.content-left .bottom-box .box-1 {
    flex-direction: column;
    gap: 20px;
    color: #000000;
    background-color: #ffffff;
}

.content-left .bottom-box .box-1 h3 {
    font-family: var(--global-font);
    font-style: italic;
    font-size: 20px;
    font-weight: 500;
    text-shadow: none;
}

.content-left .bottom-box .box-1 p {
    font-family: var(--global-font);
}

.benefits-box .second-row .box-3 {
    background-color: #ffffff;
}

.about-section {
    color: #000000;
    text-align: center;
    padding: 40px 0;
    position: relative;
    z-index: 2;
    background: #fff;
    overflow: hidden;
}

.heading{
	margin-bottom: 35px;
}

.about-section .heading h2{
	margin-bottom: 10px
}

.about-section h3 {
    color: #161616;
    font-family: var(--global-font);
    font-weight: 500;
}

.about-section h3 .italic-text {
    font-style: italic;
}

.about-section .heading h2 {
    margin-bottom: 10px;
}

.sub-heading {
    font-size: 16px;
    color: #161616;
	font-family: var(--global-font);
}

.about-section .content-para {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    text-align: left;
    color: #161616;
    margin-bottom: 20px;
    margin: 0 auto;
	width: 100%;
}

.about-section .primary-para {
    margin-bottom: 16px;
}

.about-section .content-para p{
	margin-top: 20px;
	margin-bottom: 10px;
	font-family: var(--global-font);
	line-height: 1.8;
}

.about-section .secondary-heading {
    font-family: var(--global-font);
    font-weight: 500;
}

.about-section .content-img {
    margin-bottom: 20px;
}

.about-section .content-img img {
    border-radius: 1px;
}

.footer-spacer {
    display: none;
}

.footer {
    background-color: #01101C;
    padding: 50px 20px 0 20px;
    overflow: hidden;
    position: static;
    z-index: 1;
    bottom: 0;
    width: 100%;
}

.footer .logo {
    width: 200px;
    margin: 0 auto 20px;
}

.footer-form {
    border: 1px solid #FEFEFE;
    padding: 20px 20px 40px 20px;
    margin-bottom: 20px;
}

.footer-copyright p{
	color: #9c9c9c !important;
}
.footer .btn {
    background: linear-gradient(135deg, #20EEEF 0%, #1071BB 100%);
    color: #ffffff;
    display: flex;
    margin: 0 auto;
    max-width: 200px;
    padding: 10px;
    width: 100%;
}

.footer .btn .icon-arrow {
    filter: brightness(0) invert(1);
}

.footer .btn:hover {
    background: #fff;
    color: #1D71B8;
}

.submit-block p {
    margin: 0px;
}

.submit-block p>span {
    position: relative;
    font-weight: 700;
    border: none;
    border-radius: 0;
    overflow: hidden;
    color: #fff;
    pointer-events: auto;
    cursor: pointer;
    background: #fff;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    display: flex;
    max-width: 478px;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
}

.submit-block p>span input {
    color: #fff;
    border: none;
    position: relative;
    background: transparent;
    cursor: pointer;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    padding: 13px 10px;
}

.submit-block p>span:before,
.submit-block p>span:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.submit-block p>span::before {
    content: '';
    background: linear-gradient(135deg, #20EEEF 0%, #1071BB 100%);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.submit-block p>span:hover input {
    color: #000;
}

.submit-block p>span:hover::before {
    transform: translate3d(0, -100%, 0);
}

.footer-form .wpcf7-spinner {
    position: static;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    margin: 0;
}

.form-block {
    margin-bottom: 30px;
}

.form-block .form-control {
    display: block;
    width: 100%;
    background-color: transparent;
    border: 1px solid #FEFEFE;
    padding: 12px 19px 9px;
    color: #C7C7C7;
}

.form-block .form-control:focus,
.form-block .form-control:focus-visible {
    border-color: #1fe2ea;
    outline: #1fe2ea;
}

.form-control::placeholder {
    font-family: var(--global-font);
    color: #C7C7C7;
    font-style: italic;
}

.form-block label {
    position: absolute;
    left: 15px;
    top: 12px;
    padding: 0 5px;
    pointer-events: none;
    transition: all 0.2s ease;
    font-size: 15px;
    font-family: var(--global-font);
    color: #C7C7C7;
    font-style: italic;
}

.form-block.active label {
    top: -23px;
    left: 0;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.4;
}

.wpcf7-not-valid-tip {
    text-align: left;
    margin-top: 5px;
}

.social-handles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.social-handles .icons {
    width: 24px;
    height: 24px;
    transition: all 300ms ease-in-out;
}

.social-handles .icons:hover {
    opacity: 0.7;
}

.footer p {
    color: #161616;
    text-align: center;
    position: relative;
}

.page-template-default p {
    margin: 15px 0;
    line-height: 1.4;
}

.footerLinks {
    margin-bottom: 10px;
}

.footerLinks ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerLinks ul li {
    list-style-type: none;
}

.footerLinks ul li a {
    display: block;
    position: relative;
    color: #9c9c9c;
    padding: 0px 10px;
}

.footerLinks ul li a:after {
    position: absolute;
    content: "/";
    left: -4px;
}

.footerLinks ul li:first-child a:after {
    display: none;
}

/* Blog style */
.blog-listing-section {
    padding-top: 0;
    padding-bottom: 80px;
}

.single-post-image{
    position: relative;
    overflow: hidden;
}

.single-post-image::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

.single-post-image img {
    display: block;
    object-fit: cover;
    height: 100%;
}

.single-post-image h1{
    color: #fff;
    position: absolute;
    z-index: 1;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 32px;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-family: var(--Jakarta);
}

.single-post-content,
.single-post-content p{
    font-family: var(--Jakarta);
}

.single-post .inner-page-spacer {
    display: none;
}

.single-entry-content img{
    width: auto;
}

.blog-categories {
    padding: 20px 0;
    margin-bottom: 3rem;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    position: relative;
    overflow-x: auto;
}

.blog-categories ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: auto;
    row-gap: 10px;
}

.blog-categories ul li a {
    font-size: 14px;
    letter-spacing: 2.33px;
    text-transform: uppercase;
    padding: 0 1rem;
    color: #000;
}

.blog-categories ul li a:hover,
.blog-categories ul li a.active {
    color: #1D71B8;
}

.blog-archive-outer {
    margin-bottom: 40px;
}

.popular-post-outer h3 {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--global-font);
}

.popular-post-list .post-wrap {
    padding: 20px 0;
    border-top: 1px solid #dbdbdb;
}

.popular-post-list .post-wrap .postThumbnail img {
    height: 250px;
    width: 100%;
}

.post-wrap {
    position: relative;
    overflow: hidden;
    transition: all ease 0.4s;
}

.post-wrap .postThumbnail {
    margin-bottom: 20px;
    overflow: hidden;
}

.post-wrap .postThumbnail img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 165px;
    transition: all ease 0.4s;
}

.post-wrap:hover .postThumbnail img {
    transform: scale(1.1);
}

.postContent {
    position: relative;
}

.post-cat {
    margin-bottom: 15px;
}

.post-cat a {
    font-size: 14px;
    color: #222222;
    font-family: var(--global-font);
}

.postContent h4 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    margin: 0;
}

.postContent h4 a {
    color: #242424;
}

.popular-post-list {
    display: grid;
}

.popular-post-list .post-wrap .postContent h4 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
}

.popular-post-list .post-wrap {
    display: grid;
    gap: 4%;
}


.popular-post-list .post-wrap .postThumbnail {
    margin-bottom: 0;
}

.featured-posts {
    position: relative;
}

.featured-post {
    position: relative;
    overflow: hidden;
}

.featured-thumbnail {
    overflow: hidden;
}

.featured-thumbnail img {
    display: block;
    transition: all ease 0.4s;
}

.featured-posts:hover img {
    transform: scale(1.1);
}

.featured-content {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 10px 20px;
    max-width: 80%;
    width: 100%;
}

.featured-content a {
    color: #000;
}

.featured-content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
}

.featured-content h3 a {
    color: #161616;
}

.post-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.post-list-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}


.loadMore-wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.loadMore-wrap .btn1 {
    margin-top: 30px;
    max-width: 180px;
    width: 100%;
}

.page-header h2 {
    color: #000;
}

.single section.site-main {
    padding-top: 50px;
    padding-bottom: 60px;
}

.single-post-content-wrap {
    position: relative;
}

.single-post-content {
    padding: 30px;
    position: relative;
    background: #fff;
    margin-top: 0;
    width: 100%;
}

.article-meta {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.article-meta a {
    color: #000;
    box-shadow: none !important;
    font-family: var(--Jakarta);
}

.article-meta .post-date {
    color: #616161;
}

.single h1,
.single h2,
.single h3,
.single h4,
.single h5,
.single h6 {
    font-family: var(--Jakarta);
    font-weight: 700;
    line-height: 1.3;
}

.single-post-content h1.post-title {
    font-size: 34px;
    margin-bottom: 1rem;
}

.single-post-content h1 {
    font-size: 32px;
    margin-bottom: 1rem;

}

.single-post-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.single-post-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.single-post-content h4 {
    font-size: 22px;
    margin-bottom: 18px;
}

.single-post-content h5 {
    font-size: 18px;
    margin-bottom: 20px;
}

.single-post-content h6 {
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.single-post-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #161616;
    margin: 30px 0;
    margin-top: 0;
}

.single-post-content a:not(.line) {
    -webkit-box-shadow: inset 0 -8px 0 rgba(197, 207, 216, 0.4);
    box-shadow: inset 0 -8px 0 rgba(197, 207, 216, 0.4);
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #000;
}

.single-post-content a:not(.line):hover {
    -webkit-box-shadow: inset 0 -20px 0 rgba(197, 207, 216, 0.4);
    box-shadow: inset 0 -20px 0 rgba(197, 207, 216, 0.4);
}

.single-post-content-wrap nav.navigation.post-navigation {
    margin-top: 40px;
}

.single-post-content-wrap nav.navigation.post-navigation .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    border-top: solid 1px #ddd;
    padding-top: 20px;
}

.single-post-content-wrap nav.navigation.post-navigation .nav-links a {
    color: #000;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    max-width: 300px;
    width: 100%;
    font-family: var(--global-font);
}

.single-post-content-wrap nav.navigation.post-navigation .nav-links a .nav-title{
    color: #161616;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-post-content-wrap iframe {
    width: 100%;
    margin: 30px 0;
    display: block;
}

.single-post-content-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.single-post-content {
    flex: unset;
}

.sticky-posts-wrap {
    margin-top: 40px;
    width: 100%;
}

.sidebar-profile-grid {
    display: grid;
    grid-template-columns: 32% 1fr;
    grid-gap: 12px;
    margin-bottom: 20px;
}

.sidebar-profile-head span {
    grid-column: 1 / 2;
    text-align: right;
}

.name-desnton {
    margin: 0;
    font-size: 16px;
    grid-column: 2 / 3;
}

.name-desnton span {
    display: block;
    text-align: left;
}

span.desnton {
    font-size: 10px;
    margin-top: 5px
}

.profile-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-content p {
    margin: 0;
    font-size: 12px;
    line-height: 22px;
}

.page-template-default .entry-header {
    text-align: center;
}

.page-template-default h3 {
    margin: 30px 0 10px 0;
    font-size: 23px;
}

.page-template-default p {
    margin: 15px 0;
    line-height: 1.4;
    color: #161616;
}

.page-template-default .site-main{
    padding-bottom: 60px;
}

.banner-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Change opacity/color as needed */
    z-index: 1; /* Overlay above background, below content */
}
.banner-video .text-one, .banner-video .text-two, .banner-video .content-bottom{
	position: relative;
    z-index: 2;
}
.text-black{
	color: #000;
}
.text-center{
	text-align: center;
}


  .wrap{
    max-width: 1080px;
    padding: 56px 20px 80px;
    margin: 0 auto;
  }

  .section-title{
    font-weight: 800;
    font-size: clamp(22px, 2vw + 12px, 36px);
    letter-spacing: .3px;
    margin: 0 0 22px;
  }

  .grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
  }
  .service-grid{
	margin-top: 40px;
	margin-bottom: 40px;
   }
	.margin-5{
		margin-top: 100px;
		margin-bottom: 100px;
	}

  /* Card */
  .card{
    position: relative;
    overflow: hidden;
    border-radius: var(--card-radius);
    min-height: 340px;
    isolation: isolate;
/*     box-shadow: var(--shadow); */
    background: #000; /* fallback */
    transform: translateZ(0);
	cursor: pointer;
	transition: transform .6s ease;
    will-change: transform;
  }

  /* Background image via inline style */
  .card::before{
    content: "";
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(.9) contrast(1.05);
    z-index: 0;
    transition: transform .6s ease;
    will-change: transform;
  }

  /* Dim / color overlay */
  .card::after{
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 80%),
      var(--overlay);
    z-index: 1;
    transition: background .3s ease, opacity .3s ease;
  }

  /* Content */
  .card-content{
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 20px;
    display: grid;
    align-content: start;
    gap: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
  }

  .num{
    font-weight: 800;
    font-size: 50px;
    opacity: .9;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .title{
    margin: 0;
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(16px, 1.1vw + 12px, 22px);
  }

  .cta{
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .04em;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
  }

  /* Hover / focus */
  .card:hover::before{ transform: scale(1.06); }
  .card:hover{ transform: scale(1.06); }
  .card:hover::after{ background: linear-gradient(177.67deg, #20efefad -150.1%, #1d71b8 266.28%); }
  .card:hover .cta{ opacity: 1; transform: translateY(0); }

  /* Responsive */
  @media (max-width: 980px){
    .grid{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 620px){
    .grid{ grid-template-columns: 1fr; }
    .card{ min-height: 300px; }
  }

/* .first-blog-of-page{
	cursor: pointer;
	transition: transform .6s ease;
    will-change: transform;	
}
.first-blog-of-page:hover .left-side-of-blog, .first-blog-of-page:hover .right-side-of-blog{
	transform: scale(1.06);
} */
.left-side-of-blog, .right-side-of-blog{
	cursor: pointer;
	transition: transform .6s ease;
    will-change: transform;	
}
.first-blog-of-page:hover .left-side-of-blog{
	transform: scale(1.04);
}
.first-blog-of-page .right-side-of-blog{
	box-shadow: 0 6px 12px 0 #14142b0d;
}
.first-blog-of-page .right-side-of-blog:hover{
	transform: scale(1.02);
	box-shadow: 0 12px 18px 0 #14142b0d;
}
.blog-item-card{
	cursor: pointer;
	box-shadow: 0 6px 12px 0 #14142b0d;
	transition: transform .6s ease;
    will-change: transform;	
	
}
.blog-item-card:hover{
	transform: scale(1.02);
	box-shadow: 0 12px 18px 0 #14142b0d;
}

/* ----- layout ----- */
.logo-bar {
  --padY: 50px;
  --padX: clamp(16px, 4vw, 32px);
  --gap: clamp(20px, 3vw, 40px);
  --height: 45px;           /* logo image height */
  --bg: #fff;
  --border: #e9edf1;

  position: relative;
  z-index: 4;
  background: var(--bg);
  padding: var(--padY) var(--padX);
  width: 100%;
}


.logo-bar__inner{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.logo-bar__title{
  margin: 0px 0px 25px;
  font: 700 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: #111;
  white-space: nowrap;
}

/* logo list */
.logo-bar__list{
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--gap);
  margin: 0;
  padding: 0;
  flex-wrap: wrap; /* wrap on narrow screens */
}

/* each logo */
.logo img{
  display: block;
  height: var(--height);
  width: auto;
  transition: filter .2s ease, transform .2s ease;
}

/* subtle hover focus effect */
.logo img:hover,
.logo img:focus{
  filter: none;
  transform: translateY(-1px);
}

/* compact on very small screens */
@media (max-width: 520px){
  .logo-bar__title{ font-size: 12px; }
  .logo-bar{ --height: 28px; }
	.logo-bar__list{
		flex-wrap: nowrap;
		justify-content: center;
	}
   .logo-bar__list .logo{
		width: 15%;
	}
	.logo img{
		height: auto;
		width: 100%;
		transition: filter .2s ease, transform .2s ease;
	}
	#simple-chat-button--text{
		display: none !important;
		font-size: 10px !important'';
		right: 65px !important;
		  border-radius: 5px !important;
		  padding: 4px 8px !important;
	}
}

/* optional dark mode tweak */
@media (prefers-color-scheme: dark){
  .logo-bar{
    --bg: #0b0c0f;
    --border: #1b1d23;
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
  }
  .logo-bar__title{ color:#a9b0bd; }
  .logo-bar::before{ filter: drop-shadow(-1px 1px 0 var(--border)); }
}


/* home page reviews section */

/* container */
.reviewsCarousel{  margin:60px 20px; padding:30px 20px; text-align:center; }
.reviewsCarousel__title{ margin:0 0 60px; color: black;}

/* wrapper + arrows overlay (arrows don't consume width) */
.reviewsCarousel__wrap{ position:relative; }
.reviewsCarousel__track{ width:100%; }            /* Slick mounts here — DO NOT set display:flex */
.reviewsCarousel__arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(0,0,0,.55); color:#fff; border:0; width:38px; height:38px;
  border-radius:50%; font-size:22px; line-height:38px; cursor:pointer; z-index:2;
}
.reviewsCarousel__prev{ left:-6px; }
.reviewsCarousel__next{ right:-6px; }
.reviewsCarousel__arrow:hover{ background:rgba(0,0,0,.75); }

/* cards — NO width/flex rules here */
.reviewCard{ padding: 10px 16px; box-sizing:border-box; }
.reviewCard__avatar{
  width:110px; height:110px; border-radius:50%; object-fit:cover;
  margin:0 auto 10px; display:block;
  box-shadow:0 0 0 6px #fff, 0 0 0 1px #e3e8ef;
}
.reviewCard__name{ margin:6px 0 6px; font-weight:700; color: black;}
.reviewCard__quote{ max-width:36ch; margin:0 auto; line-height:1.6; color:#374151; text-align: start; }

/* dots (scoped) */
.reviewsCarousel__dots{ margin-top:16px; }
.reviewsCarousel__dots .slick-dots{ display:flex!important; justify-content:center; gap:8px; }
.reviewsCarousel__dots .slick-dots li{ list-style:none; }
.reviewsCarousel__dots .slick-dots button{
  width:8px; height:8px; border-radius:50%; border:0; background:#cbd5e1; padding:0; text-indent:-9999px;
}
.reviewsCarousel__dots .slick-dots .slick-active button{ background:#111827; }
.reviewsCarousel .slick-list{
  overflow: hidden !important; /* only 4 visible */
}
/* optional vertical dotted dividers on wide screens */
@media (min-width: 1025px){
  .reviewsCarousel .slick-slide .reviewCard{ position:relative; }
  .reviewsCarousel .slick-active .reviewCard::after{
    content:""; position:absolute; top:6px; bottom:6px; right:-8px;
    border-right:2px dotted #cfd6df;
  }
  /* hide divider after last visible slide (approx) */
  .reviewsCarousel .slick-active:last-child .reviewCard::after{ display:none; }
}


/* FAQs */


/* Section shell */
.faqsSection{
  padding: 15px 20px 90px;
  display: none;
}
.home.page-template-template-home .faqsSection{
	display: block;
}

.faqsSection__wrap{
  max-width: 1100px;
  margin: 0 auto;
}
.faqsSection__title{
  text-align:center;
  color:#fff;
  font: 800 40px/1.1 system-ui,-apple-system,Segoe UI,Roboto,Arial;
  letter-spacing:.6px;
  margin: 0 0 28px;
}

/* Accordion */
.faqsAccordion{ display:flex; flex-direction:column; gap:18px; }
.faqsAccordion__item{
  overflow:hidden;
  background:#08bdf2;           /* cyan card */
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

/* Trigger */
.faqsAccordion__trigger{
  width:100%;
  display:flex;
  align-items:center;
  gap:16px;
  text-align:left;
  padding:18px 24px;
  color:#fff;
  background:transparent;
  border:0;
  cursor:pointer;
  font: 700 22px/1.3 system-ui,-apple-system,Segoe UI,Roboto,Arial;
}
.faqsAccordion__question{ flex:1; }

/* + / – icon */
.faqsAccordion__icon{
  width:22px; height:22px; border-radius:50%;
  display:inline-grid; place-items:center;
  font-weight:800;
  position:relative;
}
.faqsAccordion__icon::before,
.faqsAccordion__icon::after{
  content:""; position:absolute; background:#fff; inset:auto;
  width:14px; height:2px; border-radius:2px; left:4px; top:10px;
}
.faqsAccordion__icon::after{ transform:rotate(90deg); }           /* plus vertical bar */
.faqsAccordion__trigger[aria-expanded="true"] .faqsAccordion__icon::after{ display:none; } /* show minus when open */

/* Panel */
.faqsAccordion__panel{
  padding: 0 24px 0;
  background:#08bdf2;
  color: rgba(255,255,255,.92);
  font: 500 18px/1.7 system-ui,-apple-system,Segoe UI,Roboto,Arial;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s ease;
}

.faqsAccordion__panel p{
	color: white;
	text-align: left;
}

.faqsAccordion__item.is-open .faqsAccordion__panel{
  padding: 4px 24px 22px;
  max-height: 500px; /* large enough for your longest answer */
}

/* Divider effect between items */
.faqsAccordion__item + .faqsAccordion__item{ margin-top:12px; }

@media (max-width: 640px){
  .faqsSection__title{ font-size:32px; }
  .faqsAccordion__trigger{ font-size:18px; padding:16px 18px; }
  .faqsAccordion__panel{ font-size:16px; }
}


.blog-post-content p{
	margin-bottom: 20px;
}

.blog-post-content p b{
	margin-bottom: 20px;
/* 	font-weight: 700;
	font-size: 38px;
	line-height: 42px; */
	color: #14142b;
}
.opacity-0{
	opacity: 0;
}
.blog-post-content ol{
	margin-bottom: 20px;
}
.blog-post-content li b{
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 38px;
	line-height: 42px;
	color: #14142b;
}
.wpcf7 form.sent .wpcf7-response-output{
	color: #46b450;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	color: #ffb900;
}