/*
 * All CSS
 #-Preeloader
 #-Button
 #-Header
 #-Mobile Menu
 #-Breadcrumb
 #-Single Post
 #-Blog Sidebar
*/
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    /*
     * BDJ Global Brand System
    */

    --body-bg: #ffffff;
    --white-bg: #ffffff;
    --section-bg: #f4f6f8;

    --primary-bg: #071b33;
    --headding-bg: #071b33;
    --header-top-bg: #061526;

    --body-color: #445658;
    --primary-color: #0b5ea8;
    --secondary-color: #c8cdd2;
    --headding-color: #071b33;
    --white-color: #ffffff;

    --border-color: #eef1f4;
    --ct-border-color: #dfe5ea;
    --ct-border-color2: #d5dce2;
    --ct-border-color3: #e8ecef;

    --no-change-color1: #071b33;
    --dark-bg: #071b33;

    /*
     * BDJ Custom Colors
    */

    --bdj-navy: #071b33;
    --bdj-deep-navy: #061526;
    --bdj-blue: #0b2748;
    --bdj-medium-blue: #123b63;
    --bdj-accent-blue: #0b5ea8;
    --bdj-silver: #c8cdd2;
    --bdj-light-silver: #eef1f4;
    --bdj-graphite: #1e2329;
    --bdj-muted: #6b7886;
    --bdj-white: #ffffff;

    /*
     * Typography
    */

    --body-font: "Catamaran", sans-serif;
    --headding-font: "Jost", sans-serif;
    --bdj-display-font: "Times New Roman", Georgia, serif;
}

/*
 * BDJ Dark Theme
*/

[data-bs-theme="dark"] {
    --body-bg: #10293a;
    --white-bg: #10293a;
    --section-bg: #10293a;

    --primary-bg: linear-gradient(135deg, #071b33 0%, #0b2748 52%, #123b63 100%);
    --headding-bg: #071b33;
    --header-top-bg: #061526;

    --body-color: #b8c0c8;
    --primary-color: #6fa8dc;
    --secondary-color: #c8cdd2;
    --headding-color: #ffffff;
    --white-color: #ffffff;

    --border-color: rgba(255, 255, 255, 0.10);
    --ct-border-color: rgba(226, 232, 240, 0.12);
    --ct-border-color2: rgba(225, 225, 225, 0.14);
    --ct-border-color3: rgba(236, 236, 236, 0.16);

    --no-change-color1: #071b33;
    --dark-bg: #061526;

    --bdj-navy: #071b33;
    --bdj-deep-navy: #061526;
    --bdj-blue: #0b2748;
    --bdj-medium-blue: #123b63;
    --bdj-accent-blue: #6fa8dc;
    --bdj-silver: #c8cdd2;
    --bdj-light-silver: #eef1f4;
    --bdj-graphite: #1e2329;
    --bdj-muted: #b8c0c8;
    --bdj-white: #ffffff;
}

/*
 * BDJ Blue Theme
 * Recommended for the homepage.
*/

[data-bs-theme="blue"] {
    --body-bg: #071b33;
    --white-bg: #071b33;
    --section-bg: #071b33;

    --primary-bg: linear-gradient(135deg, #061526 0%, #071b33 45%, #0b2748 100%);
    --headding-bg: #071b33;
    --header-top-bg: #04101e;

    --body-color: #b8c0c8;
    --secondary-color: #c8cdd2;
    --headding-color: #ffffff;
    --white-color: #ffffff;

    --border-color: rgba(255, 255, 255, 0.10);
    --ct-border-color: rgba(226, 232, 240, 0.12);
    --ct-border-color2: rgba(225, 225, 225, 0.14);
    --ct-border-color3: rgba(236, 236, 236, 0.16);

    --no-change-color1: #071b33;
    --dark-bg: #061526;

    --bdj-navy: #071b33;
    --bdj-deep-navy: #061526;
    --bdj-blue: #0b2748;
    --bdj-medium-blue: #123b63;
    --bdj-accent-blue: #8fbde8;
    --bdj-silver: #c8cdd2;
    --bdj-light-silver: #eef1f4;
    --bdj-graphite: #1e2329;
    --bdj-muted: #b8c0c8;
    --bdj-white: #ffffff;
}

/*
 * Base Reset
*/

body {
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: var(--body-color);
    font-family: var(--body-font);
    font-weight: 400;
    font-style: normal;
    background-color: var(--body-bg);
}

a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

*::-moz-selection {
    background: var(--primary-color);
    color: #ffffff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: #ffffff;
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: #ffffff;
    text-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headding-color);
    font-weight: 700;
    font-family: var(--headding-font);
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.4s;
    -webkit-transition: all 0.4s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
}

p {
    color: var(--body-color);
    line-height: 26px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*
 * BDJ Global Helpers
*/

.bdj-display-title {
    font-family: var(--bdj-display-font);
    font-weight: 500;
    letter-spacing: -0.5px;
}

.bdj-eyebrow {
    color: var(--bdj-silver);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bdj-text-silver {
    color: var(--bdj-silver);
}

.bdj-text-muted {
    color: var(--bdj-muted);
}

.bdj-bg-navy {
    background-color: var(--bdj-navy);
}

.bdj-bg-deep-navy {
    background-color: var(--bdj-deep-navy);
}

.bdj-bg-gradient {
    background: var(--primary-bg);
}

/*
 * Button Overrides
*/

.button-1 {
    background: var(--primary-bg);
    color: var(--white-color);
}

.button-1:hover {
    color: var(--white-color);
}

[data-bs-theme="dark"] .button-1,
[data-bs-theme="blue"] .button-1 {
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    color: #071b33;
}

[data-bs-theme="dark"] .button-1:hover,
[data-bs-theme="blue"] .button-1:hover {
    color: #071b33;
}

/*
 * Section Title Overrides
*/

[data-bs-theme="dark"] .section-title h2,
[data-bs-theme="blue"] .section-title h2 {
    color: #ffffff;
}

[data-bs-theme="dark"] .section-title p,
[data-bs-theme="blue"] .section-title p {
    color: rgba(255, 255, 255, 0.72);
}

/*Scroll Area*/
.scroll-area {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.scroll-area i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
}

.section-bg {
    background-color: var(--section-bg);
}

.section-padding {
    padding: 100px 0px;
}

.section-padding-2 {
    padding-top: 100px;
    padding-bottom: 70px;
}

.section-padding-80 {
    padding: 80px 0px;
}

.section-padding-70 {
    padding: 70px 0px;
}

.section-padding-50 {
    padding: 50px 0px;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/*
 * Preeloader
*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--bdj-deep-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent #fff transparent #fff;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*
 * Button
*/
.button-1 {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 16px 30px;
    background: var(--primary-color);
    color: var(--white-color);
    line-height: 1.2;
    overflow: hidden;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.button-1:hover {
    color: var(--white-color);
}

.button-1::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--headding-color);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}

.button-1:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

/*
 * Header
*/
.header {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
}

.header.header3 {
    position: relative;
}

.header-top {
    background-color: var(--header-top-bg);
    padding: 15px 0;
}

.ht-left-sec span {
    display: inline-flex;
    margin-right: 14px;
    font-weight: 500;
    color: var(--white-color);
    align-items: center;
    line-height: 1;
}

.ht-left-sec span:last-child {
    margin-right: 0px;
}

.ht-left-sec span i {
    margin-right: 5px;
}

.top-social span {
    display: inline-block;
    margin-right: 20px;
}

.top-social span:last-child {
    margin-right: 0px;
}

.top-social span a {
    color: var(--white-color);
    font-size: 14px;
}

.top-social span a svg {
    width: 15px;
    height: 15px;
    fill: var(--white-color);
}

.header .logo img.sticky-logo {
    display: none;
}

.header .button-1::after {
    background-color: var(--white-bg);
}

.header .button-1:hover {
    color: var(--headding-color);
}

/*
 * #-Mobile Menu
*/
.off_canvars_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    cursor: crosshair;
    background: #232323;
    top: 0;
}

.off_canvars_overlay.active {
    opacity: 0.5;
    visibility: visible;
}

.offcanvas_menu {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .offcanvas_menu {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas_menu {
        display: block;
    }
}

.offcanvas_menu_wrapper {
    width: 290px;
    position: fixed;
    background: var(--white-bg);
    z-index: 9999999;
    top: 0;
    height: 100vh;
    transition: 0.5s;
    left: 0;
    margin-left: -300px;
    padding: 20px 0px 30px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper.active {
    margin-left: 0;
}

.offcanvas_menu_wrapper .slinky-theme-default {
    background: inherit;
    min-height: 300px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper .header_search_box {
    display: block;
}

.offcanvas_main_menu>li.menu-item-has-children.menu-open>span.menu-expand {
    transform: rotate(180deg);
}

.offcanvas_main_menu>li ul li.menu-item-has-children.menu-open span.menu-expand {
    transform: rotate(180deg);
}

.offcanvas_main_menu li {
    position: relative;
}

.offcanvas_main_menu li:last-child {
    margin: 0;
}

.offcanvas_main_menu li span.menu-expand {
    position: absolute;
    right: 1px;
    width: 50px;
    height: 51px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--section-bg);
}

.offcanvas_main_menu li a {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    padding: 0px 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--body-color);
    padding-top: 10px;
    line-height: 30px;
    letter-spacing: 1px;
}

.offcanvas_main_menu li ul.sub-menu>li a {
    font-size: 15px;
    padding: 6px 26px;
}

.offcanvas_main_menu li a:hover {
    color: var(--primary-color);
}

.offcanvas_footer {
    margin-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.offcanvas_footer span a {
    font-size: 14px;
}

.offcanvas_footer span a:hover {
    color: var(--primary-color);
}

.slinky-theme-default a:not(.back) {
    padding: 10px 0;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}

.slinky-theme-default a:not(.back):hover {
    background: inherit;
    color: var(--primary-color);
}

.canvas_close {
    position: absolute;
    top: 10px;
    right: 13px;
}

.canvas_close a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    width: 32px;
    height: 32px;
    display: block;
    text-align: center;
    line-height: 32px;
    border: 1px solid #ededed;
    border-radius: 50%;
    color: #333;
}

.canvas_close a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.mobile-logo {
    margin-bottom: 30px;
    text-align: center;
}

.canvas_open_full {
    display: none;
}

.offcanvas_main_menu li ul.sub-menu>li span.menu-expand {
    height: 42px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .canvas_open {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .canvas_open {
        right: 20px;
        top: 27px;
        display: block;
        width: 36px;
    }
}

/*
 * BDJ Global Header
*/

.bdj-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(7, 27, 51, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 999;
    transition: all 0.35s ease;
    padding-top: 10px;
}

.bdj-header.sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(7, 27, 51, 0.08);
    box-shadow: 0 12px 35px rgba(7, 27, 51, 0.08);
}

.bdj-logo img {
    max-width: 235px;
    height: auto;
    transition: all 0.3s ease;
}

.bdj-logo img.sticky-logo {
    display: none;
}

.bdj-header.sticky .bdj-logo img.main-logo {
    display: none;
}

.bdj-header.sticky .bdj-logo img.sticky-logo {
    display: inline-block;
}

.bdj-menu {
    float: right;
    margin-right: 34px;
}

.bdj-menu ul {
    margin: 0;
    padding: 0;
}

.bdj-menu ul li {
    display: inline-block;
    position: relative;
}

.bdj-menu ul li a {
    display: inline-block;
    padding: 34px 13px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bdj-menu ul li a:hover {
    color: #c8cdd2;
}

.bdj-header.sticky .bdj-menu ul li a {
    color: #071b33;
}


.bdj-menu ul li.menu-item-has-children>a {
    padding-right: 26px;
}

.bdj-menu ul li.menu-item-has-children>a::after {
    content: "\f107";
    position: absolute;
    right: 10px;
    top: calc(50% - 6px);
    font-family: "Font Awesome 6 Pro";
    font-size: 12px;
    line-height: 1;
}

.bdj-menu ul li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #ffffff;
    padding: 14px 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 25px 65px rgba(7, 27, 51, 0.16);
    transform: scaleY(0);
    transform-origin: top center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.bdj-menu ul li:hover>ul {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

.bdj-menu ul li>ul li {
    display: block;
    width: 100%;
    padding: 0;
}

.bdj-menu ul li>ul li a {
    display: block;
    width: 100%;
    padding: 11px 24px;
    color: #071b33 !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}


.bdj-header-cta {
    float: right;
    padding-top: 20px;
}

.bdj-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    color: #071b33;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease;
}

.bdj-nav-button:hover {
    color: #071b33;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.bdj-header.sticky .bdj-nav-button {
    background: #071b33;
    color: #ffffff;
    border-color: #071b33;
    box-shadow: 0 12px 28px rgba(7, 27, 51, 0.18);
}

.bdj-header.sticky .bdj-nav-button:hover {
    color: #ffffff;
    background: #0b2748;
}

.bdj-header .canvas_open_full {
    display: none;
}

.bdj-header .canvas_open {
    text-align: right;
}

.bdj-header .canvas_open a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
}

.bdj-header.sticky .canvas_open a {
    color: #071b33;
    border-color: rgba(7, 27, 51, 0.25);
}

/*
 * BDJ Mobile Menu
*/

.bdj-mobile-menu-wrapper {
    width: 320px;
    background: #ffffff;
    padding: 28px 0 36px;
}

.bdj-mobile-logo {
    margin-bottom: 28px;
    padding: 0 24px;
    text-align: left;
}

.bdj-mobile-logo img {
    max-width: 210px;
    height: auto;
}

.bdj-mobile-menu li a {
    color: #071b33;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(7, 27, 51, 0.08);
}

.bdj-mobile-menu li a:hover {
    color: #0b5ea8;
}

.bdj-mobile-menu li ul.sub-menu>li a {
    padding: 9px 34px;
    font-size: 14px;
    font-weight: 500;
    background: #f4f6f8;
}

.bdj-mobile-cta {
    padding: 28px 24px 0;
}

.bdj-mobile-cta .bdj-nav-button {
    width: 100%;
    background: #071b33;
    color: #ffffff;
    border-color: #071b33;
}

/*
 * BDJ Mobile Header Menu End Alignment Fix
*/

@media only screen and (max-width: 991px) {
    .bdj-header-cta {
        display: none;
    }

    .bdj-header .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .bdj-header .col-md-6.col-4,
    .bdj-header .col-md-8.col-5,
    .bdj-header .col-4,
    .bdj-header .col-5 {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-left: auto;
    }

    .bdj-header .canvas_open_full {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        margin-left: auto;
        float: none !important;
    }

    .bdj-header .canvas_open {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        text-align: right;
    }

    .bdj-header .canvas_open a {
        margin-left: auto;
        margin-right: 0;
    }
}

@media only screen and (max-width: 575px) {
    .bdj-header {
        padding: 12px 0;
        min-height: 84px;
    }

    .bdj-logo img {
        max-width: 185px;
    }

    .bdj-header .canvas_open_full {
        justify-content: flex-end;
    }

    .bdj-header .canvas_open a {
        width: 42px;
        height: 42px;
        font-size: 18px;
        margin-left: auto;
    }

    .bdj-mobile-menu-wrapper {
        width: 300px;
    }
}

/*
 * BDJ Global Logo With Text
*/

.bdj-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.bdj-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.bdj-logo-name {
    color: #ffffff;
    font-family: "Times New Roman", Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.bdj-logo-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* Sticky Header Logo Text */

.bdj-header.sticky .bdj-logo-name {
    color: #071b33;
}

.bdj-header.sticky .bdj-logo-subtitle {
    color: rgba(7, 27, 51, 0.72);
}

/* Logo Image Switch */

.bdj-logo .sticky-logo {
    display: none;
}

.bdj-header.sticky .bdj-logo .main-logo {
    display: none;
}

.bdj-header.sticky .bdj-logo .sticky-logo {
    display: inline-block;
}

/* Header column adjustment for larger logo */

.bdj-header .col-lg-3 {
    flex: 0 0 auto;
    width: 32%;
}

.bdj-header .col-lg-9 {
    flex: 0 0 auto;
    width: 68%;
}

/* Responsive */

@media only screen and (max-width: 1199px) {
    .bdj-logo-name {
        font-size: 24px;
        letter-spacing: 2.2px;
    }

    .bdj-logo-subtitle {
        font-size: 10px;
        letter-spacing: 2.4px;
    }

    .bdj-logo-link {
        gap: 12px;
    }
}

@media only screen and (max-width: 991px) {

    .bdj-header .col-lg-3,
    .bdj-header .col-lg-9 {
        width: auto;
    }

    .bdj-logo-name {
        font-size: 23px;
    }

    .bdj-logo-subtitle {
        font-size: 10px;
    }

    .bdj-logo-icon {
        width: 50px;
        max-width: 50px;
    }
}

@media only screen and (max-width: 575px) {
    .bdj-logo-name {
        font-size: 18px;
        letter-spacing: 1.6px;
    }

    .bdj-logo-subtitle {
        font-size: 8px;
        letter-spacing: 1.7px;
        margin-top: 6px;
    }

    .bdj-logo-link {
        gap: 9px;
    }
}

/*
 * BDJ Core Pillars Section
*/

.bdj-core-pillars-section {
    position: relative;
    z-index: 5;
    background: none;
    padding: 0 0 90px;
}

.bdj-core-pillars-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: -125px;
    position: relative;
    z-index: 10;
}

.bdj-core-pillar-card {
    position: relative;
    min-height: 210px;
    padding: 34px 28px 30px;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.28);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.bdj-core-pillar-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 35%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 55%);
    opacity: 0;
    transition: all 0.35s ease;
}

.bdj-core-pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.bdj-core-pillar-card:hover::before {
    opacity: 1;
}

.bdj-pillar-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8cdd2;
    font-size: 34px;
}

.bdj-pillar-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.35s ease;
}

.bdj-core-pillar-card:hover .bdj-pillar-icon::after {
    opacity: 1;
    transform: scale(1);
}

.bdj-pillar-content {
    position: relative;
    z-index: 2;
}

.bdj-pillar-content h3 {
    color: #ffffff;
    font-family: "Times New Roman", Georgia, serif;
    font-size: 26px;
    line-height: 1.18;
    font-weight: 500;
    margin-bottom: 14px;
}

.bdj-pillar-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/*
 * Responsive
*/

@media only screen and (max-width: 1199px) {
    .bdj-core-pillars-wrapper {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -95px;
    }
}

@media only screen and (max-width: 767px) {
    .bdj-core-pillars-section {
        padding: 30px 0 30px;
    }

    .bdj-core-pillars-wrapper {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .bdj-core-pillar-card {
        min-height: auto;
    }

    .bdj-pillar-content h3 {
        font-size: 24px;
    }
}

/*
 * BDJ About Section
*/

.bdj-about-section {
    position: relative;
    background-color: var(--section-bg);
    overflow: hidden;
}

.bdj-about-section .container {
    position: relative;
    z-index: 2;
}

.bdj-about-img {
    position: relative;
    padding: 28px;
}

.bdj-about-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(200, 205, 210, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 18px;
    transform: rotate(-2deg);
}


.bdj-about-img img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 14px;
    filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.35));
}

.bdj-about-content {
    padding-left: 24px;
}

.bdj-section-title h4 {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #c8cdd2;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.bdj-section-title h4::after {
    content: "";
    width: 44px;
    height: 1px;
    background: rgba(200, 205, 210, 0.7);
}

.bdj-section-title h2 {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 24px;
}

.bdj-about-content .text {
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.bdj-about-info {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(200, 205, 210, 0.16);
    border-radius: 10px;
    height: 100%;
    transition: all 0.35s ease;
}

.bdj-about-info:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 205, 210, 0.32);
}

.bdj-about-info .icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8cdd2;
    font-size: 28px;
    border: 1px solid rgba(200, 205, 210, 0.25);
    border-radius: 50%;
}

.bdj-about-info .info h4 {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.bdj-about-info .info p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14.5px;
    line-height: 1.65;
}

.bdj-about-content .about-btn .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .bdj-section-title h2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .bdj-about-img {
        padding: 16px;
    }

    .bdj-section-title h2 {
        font-size: 32px;
    }

    .bdj-about-content .text {
        font-size: 16px;
    }

    .bdj-about-info {
        padding: 22px 18px;
    }
}

/*
 * BDJ Services Section
*/

.bdj-services-section {
    position: relative;
    background-color: var(--section-bg);
    overflow: hidden;
}

.bdj-services-section .container {
    position: relative;
    z-index: 2;
}

.bdj-services-section .bdj-section-title h4 {
    justify-content: center;
}


.bdj-services-section .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-services-section .bdj-section-title p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-service-card {
    position: relative;
    height: 100%;
    padding: 34px 30px 32px;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.bdj-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 60%);
    opacity: 0;
    transition: all 0.35s ease;
}

.bdj-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 205, 210, 0.42);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.bdj-service-card:hover::before {
    opacity: 1;
}

.bdj-service-card .icon {
    position: relative;
    z-index: 2;
    margin-bottom: 26px;
}

.bdj-service-card .icon .ic {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8cdd2;
    font-size: 34px;
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.35s ease;
}

.bdj-service-card:hover .icon .ic {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.48);
    transform: scale(1.04);
}

.bdj-service-card .content {
    position: relative;
    z-index: 2;
}

.bdj-service-card .content h2 {
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 27px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 15px;
}

.bdj-service-card .content p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.bdj-service-card .content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8cdd2;
    font-size: 15px;
    font-weight: 700;
}

.bdj-service-card .content a:hover {
    color: #ffffff;
}

.bdj-service-card .content a i {
    transition: all 0.3s ease;
}

.bdj-service-card .content a:hover i {
    transform: translateX(4px);
}

.bdj-services-bottom {
    margin-top: 20px;
}

.bdj-services-bottom .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-services-section .bdj-section-title h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 575px) {
    .bdj-services-section .bdj-section-title h2 {
        font-size: 31px;
    }

    .bdj-service-card {
        padding: 30px 24px;
    }

    .bdj-service-card .content h2 {
        font-size: 24px;
    }
}

/*
 * BDJ Why Choose Us Section
*/

.bdj-why-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}


.bdj-why-section .container {
    position: relative;
    z-index: 2;
}

.bdj-why-img {
    position: relative;
    padding: 26px;
}

.bdj-why-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(200, 205, 210, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(200, 205, 210, 0.16);
    border-radius: 18px;
    transform: rotate(2deg);
}

.bdj-why-img img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 14px;
    filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.35));
}

.bdj-why-content .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-why-content .bdj-section-title p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 34px;
}

.bdj-strength-list {
    margin-top: 18px;
}

.bdj-strength-item {
    margin-bottom: 24px;
}

.bdj-strength-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bdj-strength-heading p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.bdj-strength-heading b {
    color: #c8cdd2;
    font-size: 15px;
    font-weight: 700;
}

.bdj-strength-item .progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    overflow: hidden;
}

.bdj-strength-item .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c8cdd2 0%, #ffffff 100%) !important;
    border-radius: 999px;
}

.bdj-why-note {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(200, 205, 210, 0.16);
    border-radius: 12px;
}

.bdj-why-note span {
    color: #c8cdd2;
    font-size: 24px;
    line-height: 1;
}

.bdj-why-note p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15.5px;
    line-height: 1.7;
}

/*
 * BDJ Process Section
*/

.bdj-process-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}

.bdj-process-section .container {
    position: relative;
    z-index: 2;
}

.bdj-process-section .bdj-section-title h4 {
    justify-content: center;
}

.bdj-process-section .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-process-section .bdj-section-title p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-timeline-box {
    position: relative;
    height: 100%;
    padding: 34px 28px 30px;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.bdj-timeline-box::before {
    content: "";
    position: absolute;
    top: 48px;
    right: -34px;
    width: 110px;
    height: 1px;
    background: rgba(200, 205, 210, 0.28);
}

.bdj-timeline-box:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 205, 210, 0.42);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.bdj-timeline-box .timeline-date {
    margin-bottom: 24px;
}

.bdj-timeline-box .timeline-date span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    min-width: 94px;
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.bdj-timeline-box .timeline-content h4 {
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 27px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 14px;
}

.bdj-timeline-box .timeline-content p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.75;
}

.bdj-process-bottom {
    margin-top: 22px;
}

.bdj-process-bottom .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-why-content {
        margin-top: 40px;
    }

    .bdj-why-content .bdj-section-title h2,
    .bdj-process-section .bdj-section-title h2 {
        font-size: 38px;
    }

    .bdj-timeline-box::before {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .bdj-why-img {
        padding: 16px;
    }

    .bdj-why-content .bdj-section-title h2,
    .bdj-process-section .bdj-section-title h2 {
        font-size: 31px;
    }

    .bdj-why-note {
        padding: 20px;
    }

    .bdj-timeline-box {
        padding: 30px 24px;
    }

    .bdj-timeline-box .timeline-content h4 {
        font-size: 24px;
    }
}

/*
 * BDJ Expertise Section
*/

.bdj-expertise-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}

.bdj-expertise-section .container {
    position: relative;
    z-index: 2;
}

.bdj-expertise-section .bdj-section-title h4 {
    justify-content: center;
}

.bdj-expertise-section .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-expertise-section .bdj-section-title p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-expertise-card {
    position: relative;
    height: 100%;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.bdj-expertise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 205, 210, 0.42);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.bdj-expertise-card .thumb {
    position: relative;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.10), transparent 45%),
        linear-gradient(135deg, rgba(200, 205, 210, 0.08), rgba(255, 255, 255, 0.02));
}

.bdj-expertise-icon {
    position: relative;
    z-index: 2;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8cdd2;
    font-size: 46px;
    border: 1px solid rgba(200, 205, 210, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.045);
    transition: all 0.35s ease;
}

.bdj-expertise-card:hover .bdj-expertise-icon {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
    transform: scale(1.05);
}

.bdj-expertise-card .content {
    padding: 26px 22px 30px;
    text-align: center;
}

.bdj-expertise-card .content p {
    color: #c8cdd2;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bdj-expertise-card .content h4 {
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-expertise-section .bdj-section-title h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 575px) {
    .bdj-expertise-section .bdj-section-title h2 {
        font-size: 31px;
    }

    .bdj-expertise-card .thumb {
        min-height: 190px;
    }

    .bdj-expertise-icon {
        width: 86px;
        height: 86px;
        font-size: 40px;
    }

    .bdj-expertise-card .content h4 {
        font-size: 25px;
    }
}

/*
 * BDJ About Page
*/

.bdj-breadcrumb-section {
    position: relative;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}



.bdj-breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.bdj-breadcrumb-section .content h2 {
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 18px;
}

.bdj-breadcrumb-section .content ul {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.bdj-breadcrumb-section .content ul li,
.bdj-breadcrumb-section .content ul li a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    font-weight: 600;
}

.bdj-breadcrumb-section .content ul li a:hover {
    color: #ffffff;
}

/*
 * About Intro
*/

.bdj-about-page-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}

.bdj-about-page-section .container {
    position: relative;
    z-index: 2;
}

.bdj-about-page-image img {
    border-radius: 14px;
    filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.32));
}

.bdj-about-contact {
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 12px;
}

.bdj-about-contact .icon {
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
}

.bdj-about-contact .con strong {
    color: #ffffff;
}

.bdj-about-contact .con a {
    color: #c8cdd2;
}

.bdj-about-page-content .bdj-section-title h2 {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 24px;
}

.bdj-about-page-content .text {
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.bdj-about-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 14px;
}

.bdj-about-list ul li i {
    color: #c8cdd2;
    font-size: 18px;
    margin-top: 4px;
}

/*
 * Mission Vision Values
*/

.bdj-mvv-section,
.bdj-values-section,
.bdj-about-cta-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}

.bdj-mvv-section .bdj-section-title h4,
.bdj-values-section .bdj-section-title h4,
.bdj-process-section .bdj-section-title h4 {
    justify-content: center;
}

.bdj-mvv-section .bdj-section-title h2,
.bdj-values-section .bdj-section-title h2,
.bdj-process-section .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-mvv-section .bdj-section-title p,
.bdj-process-section .bdj-section-title p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-mvv-card,
.bdj-value-card,
.bdj-process-card {
    position: relative;
    height: 100%;
    padding: 34px 30px;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.bdj-mvv-card:hover,
.bdj-value-card:hover,
.bdj-process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 205, 210, 0.42);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.bdj-mvv-card .icon,
.bdj-value-card .icon,
.bdj-process-card .icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8cdd2;
    font-size: 32px;
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 24px;
}

.bdj-mvv-card h3,
.bdj-value-card h4,
.bdj-process-card h3 {
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 14px;
}

.bdj-mvv-card p,
.bdj-value-card p,
.bdj-process-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.75;
}

/*
 * About CTA
*/

.bdj-about-cta-box {
    position: relative;
    padding: 70px 50px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 18px;
    overflow: hidden;
}

.bdj-about-cta-box h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-about-cta-box p {
    max-width: 760px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-about-cta-box .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-breadcrumb-section .content h2 {
        font-size: 48px;
    }

    .bdj-about-page-content {
        margin-top: 40px;
    }

    .bdj-about-page-content .bdj-section-title h2,
    .bdj-mvv-section .bdj-section-title h2,
    .bdj-values-section .bdj-section-title h2,
    .bdj-process-section .bdj-section-title h2,
    .bdj-about-cta-box h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 575px) {
    .bdj-breadcrumb-section .content h2 {
        font-size: 38px;
    }

    .bdj-about-page-content .bdj-section-title h2,
    .bdj-mvv-section .bdj-section-title h2,
    .bdj-values-section .bdj-section-title h2,
    .bdj-process-section .bdj-section-title h2,
    .bdj-about-cta-box h2 {
        font-size: 31px;
    }

    .bdj-about-cta-box {
        padding: 50px 24px;
    }

    .bdj-mvv-card,
    .bdj-value-card,
    .bdj-process-card {
        padding: 30px 24px;
    }
}

/*
 * BDJ Services Page
*/

.bdj-services-page-intro,
.bdj-services-page-section,
.bdj-service-approach-section,
.bdj-services-cta-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}

.bdj-services-page-intro .container,
.bdj-services-page-section .container,
.bdj-service-approach-section .container,
.bdj-services-cta-section .container {
    position: relative;
    z-index: 2;
}

.bdj-services-intro-content .bdj-section-title h2,
.bdj-service-approach-content .bdj-section-title h2,
.bdj-services-page-section .bdj-section-title h2,
.bdj-process-section .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-services-intro-content p,
.bdj-service-approach-content .bdj-section-title p,
.bdj-services-page-section .bdj-section-title p,
.bdj-process-section .bdj-section-title p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-services-page-section .bdj-section-title h4,
.bdj-process-section .bdj-section-title h4 {
    justify-content: center;
}

.bdj-services-page-section .bdj-section-title p,
.bdj-process-section .bdj-section-title p {
    max-width: 720px;
    margin: 0 auto;
}

.bdj-services-intro-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 14px;
    margin-top: 28px;
}

.bdj-services-intro-points span {
    display: inline-flex;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 14px;
    font-weight: 600;
}

.bdj-services-intro-image,
.bdj-service-approach-image {
    position: relative;
    padding: 24px;
}

.bdj-services-intro-image::before,
.bdj-service-approach-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(200, 205, 210, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(200, 205, 210, 0.16);
    border-radius: 18px;
    transform: rotate(2deg);
}

.bdj-services-intro-image img,
.bdj-service-approach-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 14px;
    filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.35));
}

/*
 * Service Cards
*/

.bdj-services-page-card {
    position: relative;
    height: 100%;
    padding: 36px 30px 32px;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.bdj-services-page-card .h-bg-image {
    opacity: 0.08;
}

.bdj-services-page-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 205, 210, 0.42);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.bdj-services-page-card .icon {
    position: relative;
    z-index: 2;
    margin-bottom: 26px;
}

.bdj-services-page-card .icon .ic {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8cdd2;
    font-size: 34px;
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.35s ease;
}

.bdj-services-page-card:hover .icon .ic {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.48);
    transform: scale(1.04);
}

.bdj-services-page-card .content {
    position: relative;
    z-index: 2;
}

.bdj-services-page-card .content h2 {
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 27px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 15px;
}

.bdj-services-page-card .content p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.bdj-services-page-card .content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8cdd2;
    font-size: 15px;
    font-weight: 700;
}

.bdj-services-page-card .content a:hover {
    color: #ffffff;
}

.bdj-services-page-card .content a i {
    transition: all 0.3s ease;
}

.bdj-services-page-card .content a:hover i {
    transform: translateX(4px);
}

/*
 * Services Contact Box
*/

.bdj-services-contact-section {
    position: relative;
    padding: 34px 36px;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 14px;
    overflow: hidden;
}

.bdj-services-contact-section .icon {
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
}

.bdj-services-contact-section p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.7;
}

.bdj-services-contact-section .button-2 {
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    border-color: transparent;
}

/*
 * Approach List
*/

.bdj-approach-list {
    margin-top: 34px;
}

.bdj-approach-item {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(200, 205, 210, 0.14);
}

.bdj-approach-item:first-child {
    padding-top: 0;
}

.bdj-approach-item span {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
}

.bdj-approach-item h4 {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.bdj-approach-item p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.7;
}

/*
 * CTA
*/

.bdj-services-cta-box {
    position: relative;
    padding: 70px 50px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 18px;
    overflow: hidden;
}

.bdj-services-cta-box h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-services-cta-box p {
    max-width: 760px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-services-cta-box .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-services-intro-content {
        margin-bottom: 40px;
    }

    .bdj-services-intro-content .bdj-section-title h2,
    .bdj-service-approach-content .bdj-section-title h2,
    .bdj-services-page-section .bdj-section-title h2,
    .bdj-process-section .bdj-section-title h2,
    .bdj-services-cta-box h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 575px) {

    .bdj-services-intro-content .bdj-section-title h2,
    .bdj-service-approach-content .bdj-section-title h2,
    .bdj-services-page-section .bdj-section-title h2,
    .bdj-process-section .bdj-section-title h2,
    .bdj-services-cta-box h2 {
        font-size: 31px;
    }

    .bdj-services-intro-image,
    .bdj-service-approach-image {
        padding: 16px;
    }

    .bdj-services-page-card {
        padding: 30px 24px;
    }

    .bdj-services-contact-section {
        padding: 30px 24px;
    }

    .bdj-services-contact-section .button-2 {
        margin-top: 18px;
    }

    .bdj-services-cta-box {
        padding: 50px 24px;
    }
}

/*
 * BDJ Footer
*/

.bdj-footer {
    position: relative;
    background: #061526;
    overflow: hidden;
}

.bdj-footer .footer-bg-dot {
    opacity: 0.05;
}

.bdj-footer-top {
    position: relative;
    background:
        radial-gradient(circle at 18% 18%, rgba(143, 189, 232, 0.08), transparent 34%),
        linear-gradient(180deg, #071b33 0%, #061526 100%);
    padding-top: 100px;
    padding-bottom: 70px;
}

.bdj-footer-top .container {
    position: relative;
    z-index: 2;
}

/*
 * Footer Logo
*/

.bdj-footer-logo {
    margin-bottom: 26px;
}

.bdj-footer-logo a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.bdj-footer-logo img {
    width: 135px;
    max-width: 135px;
    height: auto;
    flex-shrink: 0;
}

.bdj-footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.bdj-footer-logo-name {
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.bdj-footer-logo-subtitle {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 8px;
}

.bdj-footer-brand .content {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 26px;
}

/*
 * Footer Social
*/

.bdj-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bdj-footer-social span {
    display: inline-flex;
}

.bdj-footer-social span a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c8cdd2;
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 50%;
    font-size: 15px;
    transition: all 0.35s ease;
}

.bdj-footer-social span a:hover {
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    border-color: transparent;
    transform: translateY(-3px);
}

/*
 * Footer Widgets
*/

.bdj-footer-widget h2 {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 26px;
    position: relative;
}

.bdj-footer-widget h2::after {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    margin-top: 12px;
    background: rgba(200, 205, 210, 0.75);
}

.bdj-footer-widget ul.menu {
    float: none;
    margin: 0;
}

.bdj-footer-widget ul.menu li {
    display: block;
    margin-bottom: 12px;
}

.bdj-footer-widget ul.menu li:last-child {
    margin-bottom: 0;
}

.bdj-footer-widget ul.menu li a {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.4;
    font-weight: 500;
    padding: 0;
    transition: all 0.3s ease;
}

.bdj-footer-widget ul.menu li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/*
 * Footer Contact
*/

.bdj-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.bdj-footer-contact li:last-child {
    margin-bottom: 0;
}

.bdj-footer-contact .icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    border-radius: 50%;
    font-size: 16px;
}

.bdj-footer-contact .content h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bdj-footer-contact .content p,
.bdj-footer-contact .content p a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.55;
}

.bdj-footer-contact .content p a:hover {
    color: #ffffff;
}

.bdj-footer-cta {
    margin-top: 28px;
}

.bdj-footer-cta .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 22px;
}

/*
 * Footer Bottom
*/

.bdj-footer-bottom {
    background: #04101e;
    border-top: 1px solid rgba(200, 205, 210, 0.10);
}

.bdj-copy-text p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.6;
}

.bdj-footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.bdj-footer-legal a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    font-weight: 500;
}

.bdj-footer-legal a:hover {
    color: #ffffff;
}



/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-footer-top {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .bdj-footer-legal {
        justify-content: flex-start;
        margin-top: 12px;
    }
}

@media only screen and (max-width: 575px) {
    .bdj-footer-logo-name {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .bdj-footer-logo-subtitle {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .bdj-footer-logo img {
        width: 56px;
        max-width: 56px;
    }

    .bdj-footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .bdj-copy-text p {
        font-size: 14px;
    }
}

/*
 * No Search Card
*/
.no-search-results-content {
    background: var(--white-bg);
    position: relative;
    border: 1px solid var(--ct-border-color3);
    border-radius: 4px;
    transition: all 0.3s ease;
    padding: 25px 30px;
}

.no-search-results-content h2.page-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.no-search-results-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.no-search-from form {
    max-width: 380px;
    position: relative;
}

.no-search-from form label {
    width: calc(100% - 95px);
    float: left;
}

.no-search-from form input.search-field {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.no-search-from form input.search-field:focus {
    border-color: var(--primary-color);
}

.no-search-from form input.search-submit {
    width: 90px;
    overflow: hidden;
    margin-left: 5px;
    padding: 13px 0px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    background: var(--headding-color);
    color: var(--white-color);
    transition: all 0.3s ease;
}

.no-search-from form input.search-submit:hover {
    background: var(--primary-color);
}

/*
 * BDJ 404 Page
*/

.bdj-error-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}

.bdj-error-section .container {
    position: relative;
    z-index: 2;
}

.bdj-error-content {
    position: relative;
    padding: 70px 50px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.24);
}

.bdj-error-mark {
    margin-bottom: 24px;
}

.bdj-error-mark span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    font-family: var(--bdj-display-font);
    font-size: 54px;
    line-height: 1;
    font-weight: 500;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.bdj-error-content h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-error-content p {
    max-width: 660px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.bdj-error-actions .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bdj-error-link {
    color: #c8cdd2;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.bdj-error-link:hover {
    color: #ffffff;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-error-content h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 575px) {
    .bdj-error-content {
        padding: 50px 24px;
    }

    .bdj-error-mark span {
        width: 120px;
        height: 120px;
        font-size: 44px;
    }

    .bdj-error-content h2 {
        font-size: 31px;
    }

    .bdj-error-actions {
        flex-direction: column;
        gap: 16px;
    }
}

/*
 * BDJ Industries Page
*/

.bdj-industries-intro-section,
.bdj-industries-section,
.bdj-industry-approach-section,
.bdj-industries-cta-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}

.bdj-industries-intro-section .container,
.bdj-industries-section .container,
.bdj-industry-approach-section .container,
.bdj-industries-cta-section .container {
    position: relative;
    z-index: 2;
}

.bdj-industries-intro-content .bdj-section-title h2,
.bdj-industry-approach-content .bdj-section-title h2,
.bdj-industries-section .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-industries-intro-content p,
.bdj-industry-approach-content .bdj-section-title p,
.bdj-industries-section .bdj-section-title p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-industries-section .bdj-section-title h4 {
    justify-content: center;
}

.bdj-industries-section .bdj-section-title p {
    max-width: 720px;
    margin: 0 auto;
}

.bdj-industries-intro-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 14px;
    margin-top: 28px;
}

.bdj-industries-intro-points span {
    display: inline-flex;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 14px;
    font-weight: 600;
}

.bdj-industries-intro-image,
.bdj-industry-approach-image {
    position: relative;
    padding: 24px;
}

.bdj-industries-intro-image::before,
.bdj-industry-approach-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(200, 205, 210, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(200, 205, 210, 0.16);
    border-radius: 18px;
    transform: rotate(2deg);
}

.bdj-industries-intro-image img,
.bdj-industry-approach-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 14px;
    filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.35));
}

/*
 * Industry Cards
*/

.bdj-industry-card {
    position: relative;
    height: 100%;
    padding: 36px 30px 32px;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
}


.bdj-industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 205, 210, 0.42);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.bdj-industry-card:hover::before {
    opacity: 1;
}

.bdj-industry-card .icon {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8cdd2;
    font-size: 34px;
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 26px;
    transition: all 0.35s ease;
}

.bdj-industry-card:hover .icon {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.48);
    transform: scale(1.04);
}

.bdj-industry-card h3 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 15px;
}

.bdj-industry-card p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.bdj-industry-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8cdd2;
    font-size: 15px;
    font-weight: 700;
}

.bdj-industry-card a:hover {
    color: #ffffff;
}

.bdj-industry-card a i {
    transition: all 0.3s ease;
}

.bdj-industry-card a:hover i {
    transform: translateX(4px);
}

/*
 * Industry Approach
*/

.bdj-industry-approach-list {
    margin-top: 34px;
}

.bdj-industry-approach-item {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(200, 205, 210, 0.14);
}

.bdj-industry-approach-item:first-child {
    padding-top: 0;
}

.bdj-industry-approach-item span {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
}

.bdj-industry-approach-item h4 {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.bdj-industry-approach-item p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.7;
}

/*
 * CTA
*/

.bdj-industries-cta-box {
    position: relative;
    padding: 70px 50px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 18px;
    overflow: hidden;
}

.bdj-industries-cta-box h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-industries-cta-box p {
    max-width: 760px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-industries-cta-box .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-industries-intro-content {
        margin-bottom: 40px;
    }

    .bdj-industries-intro-content .bdj-section-title h2,
    .bdj-industry-approach-content .bdj-section-title h2,
    .bdj-industries-section .bdj-section-title h2,
    .bdj-industries-cta-box h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 575px) {

    .bdj-industries-intro-content .bdj-section-title h2,
    .bdj-industry-approach-content .bdj-section-title h2,
    .bdj-industries-section .bdj-section-title h2,
    .bdj-industries-cta-box h2 {
        font-size: 31px;
    }

    .bdj-industries-intro-image,
    .bdj-industry-approach-image {
        padding: 16px;
    }

    .bdj-industry-card {
        padding: 30px 24px;
    }

    .bdj-industries-cta-box {
        padding: 50px 24px;
    }
}

/*
 * BDJ Insights Page
*/

.bdj-insights-intro-section,
.bdj-featured-insight-section,
.bdj-insights-grid-section,
.bdj-insights-cta-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}


.bdj-insights-intro-section .container,
.bdj-featured-insight-section .container,
.bdj-insights-grid-section .container,
.bdj-insights-cta-section .container {
    position: relative;
    z-index: 2;
}

.bdj-insights-intro-content .bdj-section-title h2,
.bdj-insights-grid-section .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-insights-intro-content p,
.bdj-insights-grid-section .bdj-section-title p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-insights-grid-section .bdj-section-title h4 {
    justify-content: center;
}

.bdj-insights-grid-section .bdj-section-title h4::before {
    content: "";
    width: 44px;
    height: 1px;
    background: rgba(200, 205, 210, 0.7);
}

.bdj-insights-grid-section .bdj-section-title p {
    max-width: 720px;
    margin: 0 auto;
}

.bdj-insights-intro-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 14px;
    margin-top: 28px;
}

.bdj-insights-intro-points span {
    display: inline-flex;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 14px;
    font-weight: 600;
}

.bdj-insights-intro-image {
    position: relative;
    padding: 24px;
}

.bdj-insights-intro-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(200, 205, 210, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(200, 205, 210, 0.16);
    border-radius: 18px;
    transform: rotate(2deg);
}

.bdj-insights-intro-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 14px;
    filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.35));
}

/*
 * Featured Insight
*/

.bdj-featured-insight-box {
    position: relative;
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 18px;
    overflow: hidden;
}

.bdj-featured-insight-image img {
    width: 100%;
    border-radius: 14px;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.28));
}

.bdj-featured-insight-content {
    padding-left: 20px;
}

.bdj-insight-category {
    display: inline-flex;
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bdj-featured-insight-content h2 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-featured-insight-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.bdj-featured-insight-content .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/*
 * Insight Cards
*/

.bdj-insight-card {
    height: 100%;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.bdj-insight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 205, 210, 0.42);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.bdj-insight-card-image {
    height: 230px;
    overflow: hidden;
}

.bdj-insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.45s ease;
}

.bdj-insight-card:hover .bdj-insight-card-image img {
    transform: scale(1.06);
}

.bdj-insight-card-content {
    padding: 28px 26px 30px;
}

.bdj-insight-card-content span {
    display: inline-flex;
    color: #c8cdd2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bdj-insight-card-content h3 {
    margin-bottom: 15px;
}

.bdj-insight-card-content h3 a {
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 27px;
    line-height: 1.2;
    font-weight: 500;
}

.bdj-insight-card-content h3 a:hover {
    color: #c8cdd2;
}

.bdj-insight-card-content p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.bdj-insight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8cdd2;
    font-size: 15px;
    font-weight: 700;
}

.bdj-insight-link:hover {
    color: #ffffff;
}

.bdj-insight-link i {
    transition: all 0.3s ease;
}

.bdj-insight-link:hover i {
    transform: translateX(4px);
}

/*
 * CTA
*/

.bdj-insights-cta-box {
    position: relative;
    padding: 70px 50px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 18px;
    overflow: hidden;
}

.bdj-insights-cta-box h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-insights-cta-box p {
    max-width: 760px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-insights-cta-box .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-insights-intro-content {
        margin-bottom: 40px;
    }

    .bdj-insights-intro-content .bdj-section-title h2,
    .bdj-insights-grid-section .bdj-section-title h2,
    .bdj-insights-cta-box h2 {
        font-size: 38px;
    }

    .bdj-featured-insight-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .bdj-featured-insight-content h2 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 575px) {

    .bdj-insights-intro-content .bdj-section-title h2,
    .bdj-insights-grid-section .bdj-section-title h2,
    .bdj-insights-cta-box h2 {
        font-size: 31px;
    }

    .bdj-featured-insight-box {
        padding: 22px;
    }

    .bdj-featured-insight-content h2 {
        font-size: 30px;
    }

    .bdj-insights-intro-image {
        padding: 16px;
    }

    .bdj-insight-card-content {
        padding: 26px 22px 28px;
    }

    .bdj-insights-cta-box {
        padding: 50px 24px;
    }
}

/*
 * BDJ Careers Page
*/

.bdj-careers-intro-section,
.bdj-careers-culture-section,
.bdj-career-areas-section,
.bdj-open-roles-section,
.bdj-careers-cta-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}

.bdj-careers-intro-section .container,
.bdj-careers-culture-section .container,
.bdj-career-areas-section .container,
.bdj-open-roles-section .container,
.bdj-careers-cta-section .container {
    position: relative;
    z-index: 2;
}

.bdj-careers-intro-content .bdj-section-title h2,
.bdj-career-areas-content .bdj-section-title h2,
.bdj-careers-culture-section .bdj-section-title h2,
.bdj-open-roles-section .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-careers-intro-content p,
.bdj-career-areas-content .bdj-section-title p,
.bdj-careers-culture-section .bdj-section-title p,
.bdj-open-roles-section .bdj-section-title p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-careers-culture-section .bdj-section-title h4,
.bdj-open-roles-section .bdj-section-title h4 {
    justify-content: center;
}

.bdj-careers-culture-section .bdj-section-title p,
.bdj-open-roles-section .bdj-section-title p {
    max-width: 720px;
    margin: 0 auto;
}

.bdj-careers-intro-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 14px;
    margin-top: 28px;
}

.bdj-careers-intro-points span {
    display: inline-flex;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 14px;
    font-weight: 600;
}

.bdj-careers-intro-image,
.bdj-career-areas-image {
    position: relative;
    padding: 24px;
}

.bdj-careers-intro-image img,
.bdj-career-areas-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 14px;
    filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.35));
}

/*
 * Culture Cards
*/

.bdj-career-value-card,
.bdj-role-card {
    position: relative;
    height: 100%;
    padding: 34px 30px 32px;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.bdj-career-value-card:hover,
.bdj-role-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 205, 210, 0.42);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.bdj-career-value-card .icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8cdd2;
    font-size: 32px;
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 24px;
}

.bdj-career-value-card h4 {
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 27px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 14px;
}

.bdj-career-value-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.75;
}

/*
 * Career Areas
*/

.bdj-career-area-list {
    margin-top: 34px;
}

.bdj-career-area-item {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(200, 205, 210, 0.14);
}

.bdj-career-area-item:first-child {
    padding-top: 0;
}

.bdj-career-area-item span {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    border-radius: 50%;
    font-size: 20px;
}

.bdj-career-area-item h4 {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.bdj-career-area-item p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.7;
}

/*
 * Role Cards
*/

.bdj-role-card>span {
    display: inline-flex;
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bdj-role-card h3 {
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 15px;
}

.bdj-role-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.bdj-role-card ul {
    margin-bottom: 24px;
}

.bdj-role-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14.5px;
    margin-bottom: 8px;
}

.bdj-role-card ul li i {
    color: #c8cdd2;
}

.bdj-role-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8cdd2;
    font-size: 15px;
    font-weight: 700;
}

.bdj-role-card a:hover {
    color: #ffffff;
}

.bdj-role-card a i {
    transition: all 0.3s ease;
}

.bdj-role-card a:hover i {
    transform: translateX(4px);
}

/*
 * Careers CTA
*/

.bdj-careers-cta-box {
    position: relative;
    padding: 70px 50px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 18px;
    overflow: hidden;
}

.bdj-careers-cta-box h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-careers-cta-box p {
    max-width: 760px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-careers-cta-box .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-careers-intro-content {
        margin-bottom: 40px;
    }

    .bdj-careers-intro-content .bdj-section-title h2,
    .bdj-career-areas-content .bdj-section-title h2,
    .bdj-careers-culture-section .bdj-section-title h2,
    .bdj-open-roles-section .bdj-section-title h2,
    .bdj-careers-cta-box h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 575px) {

    .bdj-careers-intro-content .bdj-section-title h2,
    .bdj-career-areas-content .bdj-section-title h2,
    .bdj-careers-culture-section .bdj-section-title h2,
    .bdj-open-roles-section .bdj-section-title h2,
    .bdj-careers-cta-box h2 {
        font-size: 31px;
    }

    .bdj-careers-intro-image,
    .bdj-career-areas-image {
        padding: 16px;
    }

    .bdj-career-value-card,
    .bdj-role-card {
        padding: 30px 24px;
    }

    .bdj-careers-cta-box {
        padding: 50px 24px;
    }
}

/*
 * BDJ Careers Additional Sections
*/

.bdj-careers-profile-section,
.bdj-careers-environment-section,
.bdj-career-path-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}


.bdj-careers-profile-section .container,
.bdj-careers-environment-section .container,
.bdj-career-path-section .container {
    position: relative;
    z-index: 2;
}

.bdj-careers-profile-section .bdj-section-title h4,
.bdj-career-path-section .bdj-section-title h4 {
    justify-content: center;
}

.bdj-careers-profile-section .bdj-section-title h2,
.bdj-careers-environment-section .bdj-section-title h2,
.bdj-career-path-section .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-careers-profile-section .bdj-section-title p,
.bdj-careers-environment-section .bdj-section-title p,
.bdj-career-path-section .bdj-section-title p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

@media only screen and (max-width: 991px) {

    .bdj-careers-profile-section .bdj-section-title h2,
    .bdj-careers-environment-section .bdj-section-title h2,
    .bdj-career-path-section .bdj-section-title h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 575px) {

    .bdj-careers-profile-section .bdj-section-title h2,
    .bdj-careers-environment-section .bdj-section-title h2,
    .bdj-career-path-section .bdj-section-title h2 {
        font-size: 31px;
    }
}

/*
 * BDJ Contact Page
*/

.bdj-contact-intro-section,
.bdj-contact-section,
.bdj-contact-cta-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}

.bdj-contact-intro-section .container,
.bdj-contact-section .container,
.bdj-contact-cta-section .container {
    position: relative;
    z-index: 2;
}

.bdj-contact-intro-content .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-contact-intro-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-contact-intro-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 14px;
    margin-top: 28px;
}

.bdj-contact-intro-points span {
    display: inline-flex;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 14px;
    font-weight: 600;
}

.bdj-contact-intro-image {
    position: relative;
    padding: 24px;
}

.bdj-contact-intro-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(200, 205, 210, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(200, 205, 210, 0.16);
    border-radius: 18px;
    transform: rotate(2deg);
}

.bdj-contact-intro-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 14px;
    filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.35));
}

/*
 * Contact Information
*/

.bdj-contact-list {
    height: 100%;
}

.bdj-contact-info-item {
    display: flex;
    gap: 18px;
    padding: 28px 24px;
    margin-bottom: 18px;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 14px;
    transition: all 0.35s ease;
}

.bdj-contact-info-item:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 205, 210, 0.42);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.bdj-contact-info-item .icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    border-radius: 50%;
    font-size: 20px;
}

.bdj-contact-info-item .con h4 {
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bdj-contact-info-item .con p,
.bdj-contact-info-item .con p a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.65;
}

.bdj-contact-info-item .con p a:hover {
    color: #ffffff;
}

/*
 * Contact Form
*/

.bdj-contact-form {
    padding: 42px 38px;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.2);
}

.bdj-contact-form h2 {
    color: #ffffff;
    font-size: 38px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 12px;
}

.bdj-contact-form>p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.bdj-contact-form .single-input label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 9px;
}

.bdj-contact-form .single-input input,
.bdj-contact-form .single-input textarea,
.bdj-contact-form .single-input select {
    width: 100%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 8px;
    padding: 15px 16px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.bdj-contact-form .single-input select {
    height: 56px;
    appearance: auto;
}

.bdj-contact-form .single-input textarea {
    min-height: 150px;
    resize: vertical;
}

.bdj-contact-form .single-input input::placeholder,
.bdj-contact-form .single-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.bdj-contact-form .single-input input:focus,
.bdj-contact-form .single-input textarea:focus,
.bdj-contact-form .single-input select:focus {
    border-color: rgba(200, 205, 210, 0.48);
    background: rgba(255, 255, 255, 0.09);
}

.bdj-contact-form button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}
/*
 * BDJ Contact Select Dropdown Fix
*/

.bdj-contact-form .single-input select {
    width: 100%;
    height: 56px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 205, 210, 0.26);
    border-radius: 8px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    cursor: pointer;
}

.bdj-contact-form .single-input select:focus {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.09);
    border-color: rgba(200, 205, 210, 0.55);
}

.bdj-contact-form .single-input select option {
    color: #071b33;
    background-color: #ffffff;
}

/* Hide empty white dropdown issue in some browsers */
.bdj-contact-form .single-input select option:disabled {
    color: rgba(7, 27, 51, 0.55);
}
/*
 * Contact CTA
*/

.bdj-contact-cta-box {
    position: relative;
    padding: 70px 50px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 18px;
    overflow: hidden;
}

.bdj-contact-cta-box h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-contact-cta-box p {
    max-width: 760px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-contact-cta-box .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-contact-intro-content {
        margin-bottom: 40px;
    }

    .bdj-contact-intro-content .bdj-section-title h2,
    .bdj-contact-cta-box h2 {
        font-size: 38px;
    }

    .bdj-contact-form {
        padding: 36px 30px;
    }
}

@media only screen and (max-width: 575px) {

    .bdj-contact-intro-content .bdj-section-title h2,
    .bdj-contact-cta-box h2 {
        font-size: 31px;
    }

    .bdj-contact-intro-image {
        padding: 16px;
    }

    .bdj-contact-info-item {
        padding: 24px 20px;
    }

    .bdj-contact-form {
        padding: 30px 22px;
    }

    .bdj-contact-form h2 {
        font-size: 30px;
    }

    .bdj-contact-cta-box {
        padding: 50px 24px;
    }
}

/*
 * BDJ Legal Pages
*/

.bdj-legal-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}

.bdj-legal-section .container {
    position: relative;
    z-index: 2;
}

.bdj-legal-content {
    padding: 54px 48px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.22);
    border-radius: 18px;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.24);
}

.bdj-legal-header {
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(200, 205, 210, 0.16);
}

.bdj-legal-header span {
    display: inline-flex;
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.bdj-legal-header h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-legal-header p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bdj-legal-block {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(200, 205, 210, 0.12);
}

.bdj-legal-block:last-of-type {
    border-bottom: none;
}

.bdj-legal-block h3 {
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 14px;
}

.bdj-legal-block p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.bdj-legal-block p:last-child {
    margin-bottom: 0;
}

.bdj-legal-block a {
    color: #c8cdd2;
    font-weight: 700;
}

.bdj-legal-block a:hover {
    color: #ffffff;
}

.bdj-legal-note {
    margin-top: 34px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 205, 210, 0.16);
    border-radius: 12px;
}

.bdj-legal-note p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-legal-content {
        padding: 44px 34px;
    }

    .bdj-legal-header h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 575px) {
    .bdj-legal-content {
        padding: 34px 22px;
    }

    .bdj-legal-header h2 {
        font-size: 31px;
    }

    .bdj-legal-block h3 {
        font-size: 24px;
    }
}

.header.sticky-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.header.sticky-header.sticky .logo img {
    display: none;
}

.header.sticky-header.sticky .logo img.sticky-logo {
    display: block;
}

.sticky .menu ul li a {
    color: var(--headding-color);
}

.sticky .menu ul li:hover>a {
    color: var(--primary-color);
}

.sticky.header .button-1::after {
    background-color: var(--headding-bg);
}

.sticky.header .button-1:hover {
    color: var(--white-color);
}

.header-color.header .logo img {
    display: none;
}

.header-color.header .logo img.sticky-logo {
    display: block;
}

.header-color .menu ul li a {
    color: var(--headding-color);
}

.header-color .menu ul li:hover>a {
    color: var(--primary-color);
}

.header-color.header .button-1::after {
    background-color: var(--no-change-color1);
}

.header.header-color .button-1:hover {
    color: var(--white-color);
}

/*
 * Blog Standard
*/
.blog-standard-card {
    background: var(--white-bg);
    position: relative;
    border: 1px solid var(--ct-border-color3);
    /*    border-radius: 4px;*/
    transition: all 0.3s ease;
}

/*.blog-standard-card:hover {
    box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}*/
.blog-standard-card .content {
    padding: 40px 40px;
    position: relative;
}

.blog-standard-card .content .postbox__meta {
    margin-bottom: 7px;
}

.blog-standard-card .content .postbox__meta ul li {
    font-size: 14px;
    color: var(--body-color);
    margin-right: 30px;
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
    text-transform: capitalize;
}

.blog-standard-card .content .postbox__meta ul li:last-child {
    margin-right: 0px;
}

.blog-standard-card .content .postbox__meta ul li i {
    color: var(--headding-color);
    transform: translateY(0px);
    font-size: 16px;
    margin-right: 2px;
}

.blog-standard-card .content .title {
    margin-bottom: 20px;
    margin-top: 10px;
}

.blog-standard-card .content .title h3 {
    font-size: 34px;
    font-weight: 600;
    line-height: 36px;
}

.blog-standard-card .content .title h3 a {
    font-family: var(--headding-font);
    color: var(--headding-color);
}

.blog-standard-card .content .title h3:hover a {
    color: var(--primary-color);
}

.blog-standard-card .content p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

.blog-standard-card .content .button-read a {
    padding: 14px 32px;
}

[data-bs-theme="dark"] .sticky .menu ul li a {
    color: var(--no-change-color1);
}

[data-bs-theme="dark"] .sticky .menu ul li>ul li a {
    color: var(--white-color);
}

[data-bs-theme="dark"] .sticky .menu ul li:hover>a {
    color: var(--primary-color);
}

[data-bs-theme="dark"] .button-1:hover {
    color: var(--no-change-color1);
}

[data-bs-theme="dark"] .header .button-1:hover {
    color: var(--white-color);
}

[data-bs-theme="blue"] .sticky .menu ul li a {
    color: var(--no-change-color1);
}

[data-bs-theme="blue"] .sticky .menu ul li>ul li a {
    color: var(--white-color);
}

[data-bs-theme="blue"] .sticky .menu ul li:hover>a {
    color: var(--primary-color);
}

[data-bs-theme="blue"] .button-1:hover {
    color: var(--no-change-color1);
}

[data-bs-theme="blue"] .header .button-1:hover {
    color: var(--white-color);
}

[data-bs-theme="blue"] .services-card-item {
    background: linear-gradient(360deg, #03092a00, rgb(41 35 237 / 24%));
}

[data-bs-theme="blue"] .services-card-item:after {
    background: linear-gradient(-190deg, #03092a00, rgb(41 35 237 / 24%));
}

[data-bs-theme="blue"] .services-card-item:hover {
    background: transparent;
}

[data-bs-theme="blue"] .news-ticker .scroll div span {
    color: transparent;
}

[data-bs-theme="blue"] .services-card-item .content a i {
    font-size: 17px;
    transform: rotate(-45deg);
}

.ct-about-us-image.position-relative .ab-im-content {
    right: 0;
    position: absolute;
    bottom: 50px;
    z-index: 9;
}

[data-bs-theme="blue"] .site-footer {
    background-color: var(--body-bg);
}

[data-bs-theme="blue"] .footer-bottom {
    background: var(--section-bg);
}

.menu ul li.mega-menu>ul {
    width: 1000px;
    max-width: 1000px;
    min-width: 1000px;
    left: -380px;
    right: 0;
}

.menu ul li.mega-menu>ul.sub-menu {
    display: grid;
}

.mega-menu-columns-2>.sub-menu {
    grid-template-columns: repeat(2, 1fr);
}

.mega-menu-columns-3>.sub-menu {
    grid-template-columns: repeat(3, 1fr);
}

.mega-menu-columns-4>.sub-menu {
    grid-template-columns: repeat(4, 1fr);
}

.mega-menu-columns-5>.sub-menu {
    grid-template-columns: repeat(5, 1fr);
}

.mega-menu-columns-6>.sub-menu {
    grid-template-columns: repeat(6, 1fr);
}

.menu ul li.mega-menu>ul.sub-menu li a:after {
    display: none;
}

.menu ul li.mega-menu>ul.sub-menu li ul.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    left: 0;
    position: relative;
    top: 0;
    box-shadow: none;
    /*    padding: 0;*/
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.header-color .menu li.mega-menu>ul.sub-menu li:hover>a {
    color: var(--headding-color);
}

.header-color .menu li.mega-menu>ul.sub-menu li a:hover {
    color: var(--primary-color);
}

.menu ul li.mega-menu:first-child>ul {
    left: -280px;
}

/*
 * CodexUnicTheme Addons All Custom Css this file
 * 
 * #-Transition
 * #-Vedio Button
 * #-Hero Section
 * #-Section Title
 * #-Service Card
 * #-About Us
 * #-Counter
 * #-Why Choose Us
 * #-Banner Section
 * #-Team
 * #-Testimonial
 * #-Work In Progress
 * #-Pricing Plan
 * #-Hero Slider
 * #-Industry We Serve
 * #-Contact Us
*/
/*
 * Only for icon Color or Speasic Color
*/
:root {
    --ct-green-color: #11b587;
    --ct-pink-color: #f21c83;
    --ct-purple-color: #9542f4;
    --ct-blue-color: #2f69f9;
    --ct-common-pink-2: #ff3975;
    --ct-common-pink-3: #f21c83;
    --ct-common-pink-4: #e349e3;
}

.ml-70 {
    margin-left: 70px;
}

.pr-100 {
    padding-right: 100px;
}

/*
 * #-Transition
*/
a,
button,
.services-card-item-style2,
.services-card-item-style2:after,
.services-card-item-style2 .icon,
.services-card-item-style2 .icon svg,
.services-card-item-style2 .content p,
.ct-about-us-section .content .ab-info .icon i,
.ct-about-us-section .content .ab-info .icon,
.services-card-item .content a i,
.services-card-item .content p,
.services-card-item .content h2,
.services-card-item:after,
.services-card-item,
.hero-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-bullet-active:after,
.ct-pricing-plan-section ul.nav li button::after,
.ct-pricing-plan-section ul.nav li button,
.ct-price-card,
.button-2,
.services-card-item-style3,
.services-card-item-style3 .services__shape-1,
.services-card-item-style3 .services__shape-2,
.services-card-item .icon .ic,
.services-card-item-style3 .icon .ic,
.services-card-item-style3 .icon .ic svg,
.services-card-item-style3 .content h2,
.services-card-item-style3 .content p,
.services-card-item-style3 a i,
.services-card-item-style3 a,
.ct-tab-image-left .nav.nav-tabs .nav-link .nav-item-signle,
.ct-tab-image-left .nav.nav-tabs .nav-link .nav-item-signle .number span,
.hero-nav i,
.ct-industry-item,
.ct-industry-item .icon,
.ct-industry-item .icon svg,
.ct-industry-item .icon i,
.ct-industry-item h2,
.ct-industry-item2,
.ct-industry-item2 .icon,
.ct-industry-item2 .icon svg,
.ct-industry-item2 .icon i,
.ct-industry-item2 h2,
.ct-industry-item2 a:after,
.single-input input,
.single-input select,
.single-input textarea,
.services-card-item-4,
.services-card-item-4:after,
.testimonial-slider-full-2 .tes-nav i,
.services-card-item-style4,
.services-card-item-style4:after,
.services-card-item-style4 .icon,
.services-card-item-style4 .icon i,
.services-card-item-style4 .icon svg,
.ct-pricing-p-section2 .list-p-s .si-item .icon,
.ct-pricing-p-section2 .ct-p-t-s ul li,
.ct-pricing-card2,
.services-card-item-style5 .content h2,
.services-card-item-style5,
.project-item-single .thumbnail img,
.work-in-progress-card,
.services-card-item-style4 .content a.read-m i,
.testimonial-left-rating .tes-nav i,
.services-card-item.style-6 .h-bg-image,
.ct-industry-item2 .content h2,
.services-card-item-style6,
.services-card-item-style6 .content a.read-m i,
.service-nav i,
.services-card-item-style7,
.services-card-item-style7-full,
.services-card-item-style7-full .t-icon h3,
.services-card-item-style7 .t-icon .icon i,
.services-card-item-style7 .content p,
.step-card,
.step-card .step-badge span,
.step-card h3.title,
.step-card p,
.ct-about-us-section5 .content .ab-info .icon i,
.ct-about-us-section5 .content .ab-info .icon,
.services-card-item-style8,
.services-card-item-style8 .read-more a.read-m {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (min-width: 1200px) {
    .custom-col {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

/*
 * Common Css
*/
.background-fixed {
    background-attachment: fixed;
}

.white-bg {
    background-color: var(--white-bg);
}

/*
 * #-Vedio Button
*/
.video-btn a {
    background: var(--white-color);
    height: 100px;
    width: 100px;
    text-align: center;
    border-radius: 50%;
    line-height: 100px;
    font-size: 30px;
    -webkit-transition: 0.5s -webkit-animation ripple-red 1s linear infinite;
    animation: ripple-red 1s linear infinite;
    -webkit-transition: 0.5s;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

@-webkit-keyframes ripple-red {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3),
            0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3),
            0 0 0 30px rgba(2241, 42, 2, 0);
    }
}

@-webkit-keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(54, 48, 255, 0.3), 0 0 0 10px rgba(54, 48, 255, 0.3),
            0 0 0 20px rgba(54, 48, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(54, 48, 255, 0.3), 0 0 0 10px rgba(54, 48, 255, 0.3), 0 0 0 20px rgba(54, 48, 255, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(54, 48, 255, 0.3), 0 0 0 20px rgba(54, 48, 255, 0.3),
            0 0 0 30px rgba(54, 48, 255, 0);
        box-shadow: 0 0 0 10px rgba(54, 48, 255, 0.3), 0 0 0 20px rgba(54, 48, 255, 0.3),
            0 0 0 30px rgba(2241, 42, 2, 0);
    }
}

@-webkit-keyframes ripple-blue-18 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(54, 48, 255, 0.3), 0 0 0 6px rgba(54, 48, 255, 0.3),
            0 0 0 12px rgba(54, 48, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(54, 48, 255, 0.3), 0 0 0 6px rgba(54, 48, 255, 0.3), 0 0 0 12px rgba(54, 48, 255, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 6px rgba(54, 48, 255, 0.3), 0 0 0 12px rgba(54, 48, 255, 0.3),
            0 0 0 18px rgba(54, 48, 255, 0);
        box-shadow: 0 0 0 6px rgba(54, 48, 255, 0.3), 0 0 0 12px rgba(54, 48, 255, 0.3), 0 0 0 18px rgba(54, 48, 255, 0);
    }
}

.video-btn span {
    display: none;
}

/*img-animation**********************/
.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

/* BDJ Global Hero Section */

.bdj-hero-section {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #071b33;
}

.bdj-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 27, 51, 0.96) 0%, rgba(7, 27, 51, 0.86) 42%, rgba(7, 27, 51, 0.45) 100%),
        radial-gradient(circle at 75% 40%, rgba(200, 205, 210, 0.18), transparent 35%);
    z-index: 1;
}

.bdj-hero-section .container {
    position: relative;
    z-index: 2;
}

.bdj-hero-content h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.bdj-hero-content h2 {
    color: #ffffff;
    font-family: "Times New Roman", Georgia, serif;
    font-size: 68px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    max-width: 720px;
}

.bdj-hero-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 36px;
}

.bdj-hero-content .h-button {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.bdj-hero-content .button-1 {
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    color: #071b33;
    padding: 16px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bdj-hero-content .button-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.bdj-outline-button {
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bdj-outline-button:hover {
    background-color: #ffffff;
    color: #071b33;
    border-color: #ffffff;
}

.bdj-hero-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 36px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.bdj-hero-points span {
    position: relative;
}

.bdj-hero-points span:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -14px;
    color: #c8cdd2;
}

.bdj-hero-image {
    text-align: center;
    position: relative;
}

.bdj-hero-image img {
    max-width: 92%;
    height: auto;
    filter: drop-shadow(0 35px 55px rgba(0, 0, 0, 0.45));
}

/* Responsive */

@media (max-width: 1199px) {
    .bdj-hero-content h2 {
        font-size: 56px;
    }
}

@media (max-width: 991px) {
    .bdj-hero-image img {
        display: none;
    }

    .bdj-hero-section {
        min-height: auto;
        padding: 140px 0 90px;
    }

    .bdj-hero-content {
        margin-bottom: 60px;
    }

    .bdj-hero-content h2,
    .bdj-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 575px) {
    .bdj-hero-content h2 {
        font-size: 40px;
    }

    .bdj-hero-content p {
        font-size: 16px;
    }

    .bdj-hero-points span:not(:last-child)::after {
        display: none;
    }
}

/*
 * Common BG Style
*/

.ct-hero-section,
.ct-hero-section2,
.ct-hero-section3,
.ct-video-banner-image .banner-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


/*
 * #-Section Title
*/
.ct-section-title h4 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0px;
    display: inline-block;
    padding: 0px 80px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.ct-section-title h4:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    top: calc(50% - 1.5px);
    left: 0;
}

.ct-section-title h4:before {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    top: calc(50% - 1.5px);
    right: 0;
}

.ct-section-title.text-left h4 {
    padding-left: 0;
}

.ct-section-title.text-left h4:after {
    display: none;
}

.ct-section-title.text-right h4 {
    padding-right: 0;
}

.ct-section-title.text-right h4:before {
    display: none;
}

.ct-section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.ct-section-title h2 span {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.ct-section-title h2 span:after {
    background-repeat: no-repeat;
    bottom: -10px;
    content: "";
    height: 20px;
    position: absolute;
    right: 0;
    width: 201px;
    z-index: -1;
}

.ct-section-title h4.style-2:before {
    display: none;
}

.ct-section-title h4.style-2 {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: capitalize;
    border: 1px solid var(--ct-border-color);
    display: inline-flex;
    padding: 8px 24px;
    border-radius: 30px;
    line-height: 24px;
    background: #e2e8f04d;
    margin-bottom: 18px;
}

.ct-section-title h4.style-2:after {
    display: none;
}

.ct-section-title p {
    font-size: 16px;
    font-weight: 500;
}

/*
 * #-Service Card
*/

.services-card-item-style2 {
    text-align: center;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
    border-top: 6px solid var(--primary-color);
    position: relative;
    z-index: 1;
    padding: 30px 25px;
    background: var(--white-bg);
    height: 100%;
}

.services-card-item-style2:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: var(--headding-color);
    z-index: -1;
}

.services-card-item-style2:hover:after {
    height: 100%;
}

.services-card-item-style2 .icon {
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f5f8;
    border-radius: 50%;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
    color: transparent;
    font-size: 50px;
    line-height: 1;
}

.services-card-item-style2 .icon svg {
    width: 50px;
    fill: var(--primary-color);
}

.services-card-item-style2:hover .icon svg {
    fill: var(--white-color);
}

.services-card-item-style2:hover .icon {
    -webkit-text-stroke-color: var(--white-color);
    background: var(--primary-color);
}

.services-card-item-style2 .icon .im img {
    max-width: 50px;
    width: 50px;
}

.services-card-item-style2 .icon .im.hover img.img-hover {
    display: none;
}

.services-card-item-style2:hover .icon .im.hover img {
    display: none;
}

.services-card-item-style2:hover .icon .im.hover img.img-hover {
    display: block;
}

.services-card-item-style2 .content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 25px;
}

.services-card-item-style2 .content h2 a {
    color: var(--headding-color);
}

.services-card-item-style2:hover .content h2 a {
    color: var(--white-color);
}

[data-bs-theme="dark"] .services-card-item-style2:hover .content h2 a {
    color: var(--no-change-color1);
}

[data-bs-theme="dark"] .services-card-item-style2 .content h2 a:hover {
    color: var(--primary-color);
}

[data-bs-theme="dark"] .services-card-item-style2:hover .content p {
    color: var(--no-change-color1);
}

[data-bs-theme="blue"] .services-card-item-style2:hover .content h2 a {
    color: var(--no-change-color1);
}

[data-bs-theme="blue"] .services-card-item-style2 .content h2 a:hover {
    color: var(--primary-color);
}

[data-bs-theme="blue"] .services-card-item-style2:hover .content p {
    color: var(--no-change-color1);
}

.services-card-item-style2 .content h2 a:hover {
    color: var(--primary-color);
}

.services-card-item-style2 .content p {
    font-size: 15px;
    color: var(--body-color);
    line-height: 25px;
}

.services-card-item-style2:hover .content p {
    color: var(--white-color);
}

.services-card-item-style3 {
    border: 1px solid var(--ct-border-color2);
    position: relative;
    z-index: 1;
    padding: 50px 30px;
    padding-top: 50px;
    padding-right: 25px;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.services-card-item-style3:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.services-card-item-style3 .services__shape-1 {
    position: absolute;
    top: -40px;
    right: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 111;
}

.services-card-item-style3 .services__shape-2 {
    position: absolute;
    top: 0;
    right: -30px;
    visibility: hidden;
    opacity: 0;
    z-index: 11;
}

.services-card-item-style3:hover .services__shape-1 {
    top: 0;
    visibility: visible;
    opacity: 1;
}

.services-card-item-style3:hover .services__shape-2 {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.services-card-item-style3 .icon {
    margin-bottom: 25px;
}

.services-card-item-style3 .icon .ic {
    font-size: 45px;
    color: var(--primary-color);
    line-height: 1.1;
}

.services-card-item-style3:hover .icon .ic {
    color: var(--white-color);
}

.services-card-item-style3 .icon .ic svg {
    width: 45px;
    fill: var(--primary-color);
}

.services-card-item-style3:hover .icon .ic svg {
    fill: var(--white-color);
}

.services-card-item-style3 .content h2 {
    font-size: 22px;
    margin-bottom: 1rem;
}

.services-card-item-style3 .content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.services-card-item-style3:hover .content h2,
.services-card-item-style3:hover .content p {
    color: var(--white-color);
}

.services-card-item-style3 a {
    border: 1px solid var(--ct-border-color2);
    padding: 8px 22px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--headding-color);
    padding-right: 40px;
    position: relative;
    line-height: 25px;
}

.services-card-item-style3 a i {
    position: absolute;
    top: 13px;
    right: 23px;
}

.services-card-item-style3:hover a {
    color: var(--white-color);
}

.services-card-item-style3 a:hover {
    color: var(--headding-color);
    transform: scale(1.1);
    background: var(--white-bg);
    border: 1px solid var(--white-bg);
}

.services-card-item-4 {
    box-shadow: rgb(17 12 46 / 8%) 0px 8px 20px 2px;
    position: relative;
    padding: 30px 20px 20px;
    height: 100%;
    background-color: var(--white-bg);
}

.services-card-item-4.large-size {
    padding: 30px 35px 20px;
}

.services-card-item-4.large-size .icon img {
    max-width: 80px;
    width: 100%;
}

.services-card-item-4.large-size .icon {
    margin-bottom: 35px;
    margin-top: 10px;
}

.services-card-item-4.large-size .content h2 {
    font-size: 22px;
    font-weight: 500;
}

.services-card-item-4:after {
    position: absolute;
    width: 0%;
    height: 2.5px;
    content: "";
    clear: both;
    display: block;
    top: 0;
    left: auto;
    right: 0;
    background: var(--primary-bg);
}

.services-card-item-4.ct-green-color:after {
    background: var(--ct-green-color);
}

.services-card-item-4.ct-pink-color:after {
    background: var(--ct-pink-color);
}

.services-card-item-4.ct-purple-color:after {
    background: var(--ct-purple-color);
}

.services-card-item-4.ct-blue-color:after {
    background: var(--ct-blue-color);
}

.services-card-item-4:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

.services-card-item-4 .icon {
    margin-bottom: 20px;
    font-size: 40px;
    color: var(--primary-color);
}

.services-card-item-4 .icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

.services-card-item-4 .icon img {
    width: 40px;
}

.services-card-item-4 .content a {
    line-height: 1;
    display: flex;
    align-items: center;
    font-size: 36px;
    color: var(--primary-color);
}

.services-card-item-4.ct-green-color .icon,
.services-card-item-4.ct-green-color .content a {
    color: var(--ct-green-color);
}

.services-card-item-4.ct-green-color .icon svg {
    fill: var(--ct-green-color);
}

.services-card-item-4.ct-pink-color .icon,
.services-card-item-4.ct-pink-color .content a {
    color: var(--ct-pink-color);
}

.services-card-item-4.ct-pink-color .icon svg {
    fill: var(--ct-pink-color);
}

.services-card-item-4.ct-blue-color .icon,
.services-card-item-4.ct-blue-color .content a {
    color: var(--ct-blue-color);
}

.services-card-item-4.ct-blue-color .icon svg {
    fill: var(--ct-blue-color);
}

.services-card-item-4.ct-purple-color .icon,
.services-card-item-4.ct-purple-color .content a {
    color: var(--ct-purple-color);
}

.services-card-item-4.ct-purple-color .icon svg {
    fill: var(--ct-purple-color);
}

.services-card-item-4 .content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.services-card-item-4 .content p {
    font-size: 16px;
    margin-bottom: 35px;
}

/*.services-card-item-4:hover{
    transform: translateY(-6px);
}*/
/*.services-card-item-style3 a:hover i{
    transform: scale(1.2);
    right: 10px;
}*/
.services-card-item-style4 {
    display: flex;
    background: var(--white-bg);
    box-shadow: rgb(17 12 46 / 8%) 0px 8px 20px 2px;
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 30px 25px;
}

.services-card-item-style4:after {
    position: absolute;
    width: 0%;
    height: 2.5px;
    content: "";
    clear: both;
    display: block;
    bottom: 0;
    left: auto;
    right: 0;
    background: var(--primary-color);
}

.services-card-item-style4:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

.services-card-item-style4 .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(54 48 255 / 8%);
    margin-right: 20px;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1.1;
}

.services-card-item-style4 .icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
}

.services-card-item-style4 .icon img {
    width: 30px;
}

.services-card-item-style4 .icon i {
    padding-top: 2px;
}

.services-card-item-style4 .icon .im.hover .img-hover {
    display: none;
}

.services-card-item-style4:hover .icon .hover img {
    display: none;
}

.services-card-item-style4:hover .icon .im.hover .img-hover {
    display: block;
}

.services-card-item-style4:hover .icon svg {
    fill: var(--white-color);
}

.services-card-item-style4:hover .icon {
    background: var(--primary-color);
    color: var(--white-color);
}

.services-card-item-style4 .content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-card-item-style4 .content p {
    font-size: 15px;
    margin-bottom: 0px;
}

.services-card-item-style4 .content a.read-m {
    display: inline-flex;
    margin-top: 12px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--headding-color);
    align-items: center;
    gap: 4px;
}

.services-card-item-style4 .content a.read-m i {
    font-size: 15px;
    color: var(--primary-color);
}

.services-card-item-style4 .content a.read-m:hover {
    color: var(--primary-color);
}

.services-card-item-style4 .content a.read-m:hover i {
    transform: rotate(-45deg);
}

[data-bs-theme="dark"] .services-card-item-style4 {
    background: var(--section-bg);
}

[data-bs-theme="dark"] .section-bg .services-card-item-style4 {
    background: var(--white-bg);
}

[data-bs-theme="blue"] .services-card-item-style4 {
    background: var(--section-bg);
}

[data-bs-theme="blue"] .section-bg .services-card-item-style4 {
    background: var(--white-bg);
}

.services-card-item-style5 {
    background: var(--white-bg);
    box-shadow: rgb(152 139 228 / 8%) 0px 16px 43px 2px;
    position: relative;
    border-radius: 5px;
    padding: 40px 30px;
    height: 100%;
    border-bottom: 3px solid var(--headding-color);
}

.services-card-item-style5:hover {
    border-color: var(--primary-color);
}

[data-bs-theme="dark"] .services-card-item-style5 {
    background: var(--section-bg);
}

[data-bs-theme="dark"] .section-bg .services-card-item-style5 {
    background: var(--white-bg);
}

[data-bs-theme="blue"] .services-card-item-style5 {
    background: var(--section-bg);
}

[data-bs-theme="blue"] .section-bg .services-card-item-style5 {
    background: var(--white-bg);
}

.services-card-item-style5.center {
    text-align: center;
}

.services-card-item-style5 .icon {
    font-size: 40px;
    line-height: 1;
    color: var(--primary-color);
    width: 85px;
    height: 85px;
    background: var(--section-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-top: 3px;
    margin-bottom: 30px;
}

.services-card-item-style5.center .icon {
    margin: 0 auto;
    margin-bottom: 30px;
}

.services-card-item-style5.right {
    text-align: right;
}

.services-card-item-style5.right .icon {
    float: right;
}

.services-card-item-style5 .content {
    width: 100%;
    overflow: hidden;
}

.services-card-item-style5 .content h2 {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;
}

.services-card-item-style5:hover .content h2 {
    color: var(--primary-color);
}

.services-card-item-style5 .icon img {
    max-width: 40px;
}

.services-card-item-style5 .icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

.services-card-item-style5 .content a.read-m {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    gap: 6px;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--headding-color);
}

.services-card-item-style5 .content a.read-m i {
    font-size: 18px;
}

.services-card-item-style5 .content a.read-m:hover {
    color: var(--primary-color);
}

/*
 * #-About Us
*/

@media (min-width: 992px) {
    .ct-about-us-section .content {
        padding-left: 30px;
    }

    .pl-30-992 {
        padding-left: 30px;
    }

    .pl-20-992 {
        padding-left: 20px;
    }

    .ml-30-992 {
        margin-left: 30px;
    }

    .mr-30-992 {
        margin-right: 30px;
    }

    .pr-30-992 {
        padding-right: 30px;
    }
}

.ct-about-us-section .content p.text {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
}

.ct-about-us-section .content .ab-info .icon {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    float: left;
    margin-right: 15px;
    background: #3630ff30;
    font-size: 22px;
    border-radius: 5px;
}

.ct-about-us-section .content .ab-info .info {
    overflow: hidden;
}

.ct-about-us-section .content .ab-info .info h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.ct-about-us-section .content .ab-info .info p {
    font-size: 16px;
    margin-top: 2px;
    display: inline-block;
}

.ct-about-us-section .content .ab-info:hover .icon {
    background: var(--primary-color);
    color: var(--white-color);
}

.ct-about-us-section .content .ab-info .icon i {
    transform: rotate(0);
}

.ct-about-us-section .content .ab-info:hover .icon i {
    transform: rotate(360deg);
}

.ct-about-us-image img {
    border-radius: 6px !important;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.ct-about-us-image .ab-im-content {
    background: var(--white-bg);
    padding: 25px 25px 25px 20px;
    box-shadow: 0 2px 40px 0 rgba(21, 24, 32, 0.06);
    margin-left: -100px;
    margin-top: 40px;
    overflow: hidden;
}

.ct-about-us-image .ab-im-content .icon {
    float: left;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: transparent;
    font-size: 20px;
    background: #f4f5f8;
    border-radius: 50%;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
}

.ct-about-us-image .ab-im-content .con {
    overflow: hidden;
}

.ct-about-us-image .ab-im-content .con strong {
    display: block;
    font-size: 14px;
    margin-top: 2px;
    font-weight: 400;
    margin-bottom: 5px;
}

.ct-about-us-image .ab-im-content .con a {
    color: var(--headding-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}

.ct-about-us-section3 .ct-about-us-image {
    position: relative;
}

.ct-video-banner-image .banner-img {
    padding: 200px 0px 200px 0px;
}

.about-img-text {
    position: absolute;
    top: 30%;
    left: -15;
    -webkit-transform: rotate(-90deg) translateY(-188px);
    -moz-transform: rotate(-90deg) translateY(-188px);
    -ms-transform: rotate(-90deg) translateY(-188px);
    -o-transform: rotate(-90deg) translateY(-188px);
    transform: rotate(-90deg) translateY(-188px);
    z-index: -1;
}

.about-img-text h3 {
    color: var(--headding-color);
    font-size: 100px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.about-img-text h3::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary-color);
    overflow: hidden;
    width: 100%;
    -webkit-transition: all 2s ease-out 0s;
    -moz-transition: all 2s ease-out 0s;
    -ms-transition: all 2s ease-out 0s;
    -o-transition: all 2s ease-out 0s;
    transition: all 2s ease-out 0s;
    -moz-animation: about-text 3s ease-in-out 1s forwards infinite alternate-reverse;
    -webkit-animation: about-text 3s ease-in-out 1s forwards infinite alternate-reverse;
    animation: about-text 3s ease-in-out 1s forwards infinite alternate-reverse;
}

@keyframes about-text {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.ct-about-us-section3 .ct-about-us-image .experience {
    position: absolute;
    right: 20px;
    bottom: 30px;
    padding: 15px 25px 15px;
    background-color: var(--white-bg);
    box-shadow: 0px 30px 50px rgba(3, 4, 28, 0.1);
    z-index: 99;
    text-align: center;
}

.ct-about-us-section3 .ct-about-us-image .experience h4 {
    font-size: 80px;
    font-weight: 600;
    background: var(--primary-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0;
}

.ct-about-us-section3 .ct-about-us-image .experience p {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--headding-font);
}

.ct-about-us-section3 .about-avatar {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ct-about-us-section3 .about-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

.ct-about-us-section3 .about-avatar h4 {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin-right: 6px;
}

.ct-about-us-section3 .about-avatar h4 span {
    font-weight: 400;
    text-transform: inherit;
}

.ct-about-us-section3 .about-avatar span.talk {
    display: inline-block;
    text-transform: capitalize;
    line-height: 1;
    background: var(--primary-bg);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 30px;
}

@media (min-width: 1550px) {
    .ct-about-us-section3 .ct-section-title h2 {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .ct-about-us-section3 .content p.text {
        font-size: 18px;
        line-height: 34px;
        margin-bottom: 30px;
    }

    .about-img-text {
        left: -100px;
    }

    .about-img-text h3 {
        font-size: 140px;
    }
}

/*
 * #-Counter
*/
.ct-counter-section .row .mp-0 {
    margin: 0;
    padding: 0;
}

.ct-counter-section .ct-cs-full {
    margin-top: -50px;
}

.ct-counter-section .ct-cs-full .counter-item {
    background: var(--white-bg);
    border: 1px solid var(--ct-border-color2);
    border-right: 0px;
    padding: 35px 30px;
    display: flex;
    align-items: center;
    height: 100%;
}

.ct-counter-section .ct-cs-full .mp-0:last-child .counter-item {
    border-right: 1px solid var(--ct-border-color2);
}

.ct-counter-section .ct-cs-full .counter-item .icon {
    margin-right: 20px;
    background: var(--white-bg);
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-counter-section .ct-cs-full .counter-item .icon img {
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    transform: rotate(0deg);
}

.ct-counter-section .ct-cs-full .counter-item:hover .icon img {
    transform: rotate(360deg);
}

.ct-counter-section .ct-cs-full .counter-item h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.ct-counter-section .ct-cs-full .counter-item p {
    color: var(--headding-color);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 24px;
}

.ct-counter-section .ct-cs-full .counter-item h2 small {
    font-weight: 500;
    line-height: 18px;
    display: inline-block;
    font-size: 26px;
    margin-left: 2px;
}

.ct-counter-section2 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 70px;
    padding-bottom: 40px;
}

.counter-bg-theme {
    background-color: #0012aa;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 70px;
    padding-bottom: 40px;
}

.counter-item2 {
    text-align: center;
}

.counter-item2 .icon {
    width: 55px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.counter-item2 .content h2 {
    font-size: 50px;
    color: var(--white-color);
    font-weight: 600;
    letter-spacing: 1.8px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-item2 .content h2 small {
    margin-left: 5px;
    font-size: 36px;
    font-weight: 400;
}

.counter-item2 .content p {
    color: var(--white-color);
    font-size: 16px;
    font-family: var(--headding-font);
    opacity: 0.8;
    text-transform: capitalize;
    letter-spacing: 1px;
}

/*
 * #-Why Choose Us
*/
.ct-why-choose-us-section .content p.text {
    font-size: 16px;
    margin-bottom: 30px;
}

.ct-why-choose-us-section .why-lists .ab-info {
    margin-bottom: 30px;
    display: flex;
    position: relative;
    padding-left: 40px;
    align-items: center;
}

.ct-why-choose-us-section .why-lists .ab-info:last-child {
    margin-bottom: 0px;
}

.ct-why-choose-us-section .why-lists .ab-info .icon {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    font-size: 50px;
    color: var(--primary-color);
}

.ct-why-choose-us-section .why-lists .ab-info .info h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.ct-why-choose-us-section .why-lists .ab-info .info p {
    font-size: 16px;
    line-height: 26px;
}

.ct-why-choose-us-section .why-lists .ab-info:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    height: 3px;
    width: 30px;
    background: var(--primary-color);
    left: 0;
    top: calc(50% - 1.5px);
}

.ct-why-choose-us-section .why-lists {
    position: relative;
}

.ct-why-choose-us-section .why-lists .ab-info:before {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    height: calc(100% + 30px);
    width: 3px;
    background: var(--primary-color);
    left: 0;
    top: 0px;
}

.ct-why-choose-us-section .why-lists .ab-info:first-child:before {
    height: calc(100% + 10px);
    top: 50%;
}

.ct-why-choose-us-section .why-lists .ab-info:last-child:before {
    height: 50%;
    bottom: 50%;
}

.progress-bar {
    position: relative;
    overflow: visible;
    animation: animate 3s ease 0s 1 normal;
    opacity: 1;
}

@keyframes animate {
    0% {
        width: 0%;
    }
}

.skill-list .single-skill-item {
    margin-bottom: 20px;
}

.skill-list .single-skill-item:last-child {
    margin-bottom: 0;
}

.skill-list .single-skill-item p {
    font-size: 15px;
    font-weight: 400;
    color: var(--headding-color);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.skill-list .single-skill-item p b {
    float: right;
    font-weight: 700;
}

.skill-list .single-skill-item .progress {
    height: 7px;
    line-height: 7px;
    border-radius: 0px;
    background: #000;
}

.skill-list .single-skill-item .progress-bar-striped {
    background-image: linear-gradient(45deg,
            rgba(255, 255, 255, 0.25) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.25) 75%,
            transparent 75%,
            transparent);
}

.ct-why-choose-us-section2 {
    position: relative;
}

.ct-why-choose-us-section2 .why-li-s {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: var(--white-bg);
    width: 100%;
    border-radius: 2px;
    font-weight: 600;
    color: var(--headding-color);
    line-height: 26px;
    gap: 6px;
}

.section-bg .ct-why-choose-us-section2 .why-li-s {
    background: var(--white-bg);
}

.section-bg .ct-why-choose-us-section2 .why-li-s i {
    /*    margin-right: 8px;*/
    color: var(--primary-color);
}

.ct-why-choose-us-section2 {
    position: relative;
}

.ct-why-choose-us-section2 .ct-why-img {
    background-image: none;
}

@media (min-width: 992px) {
    .ct-why-choose-us-section2 .ct-why-img {
        position: absolute;
        top: 0;
        right: 0;
        width: 48%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .ct-why-choose-us-section2 .ct-why-img.right {
        left: 0;
        right: inherit;
    }

    .ct-why-choose-us-section2 .ct-why-img img {
        display: none;
    }
}

/* 
 * #-Banner Section
*/
.banner-section-1 {
    padding: 150px 0px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner-section-1:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--secondary-color);
    top: 0;
    left: 0;
    opacity: 0.7;
}

.banner-section-1 .content {
    max-width: 700px;
    margin: 0 auto;
}

.banner-section-1 .content .ct-section-title h4 {
    color: var(--white-color);
}

.banner-section-1 .content .ct-section-title h2 {
    color: var(--white-color);
    font-size: 55px;
}

.banner-section-1 .content .ct-section-title {
    margin-bottom: 30px;
}

/* 
 * Banner 2
*/
.home-banner2-sec {
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 50px 40px;
}

.home-banner2-sec h2 {
    font-size: 42px;
    color: var(--white-color);
    letter-spacing: 1px;
}

/*
 * BDJ Testimonials Section
*/

.bdj-testimonial-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}

.bdj-testimonial-section .container {
    position: relative;
    z-index: 2;
}

.bdj-testimonial-section .bdj-section-title h4 {
    justify-content: center;
}


.bdj-testimonial-section .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-testimonial-section .bdj-section-title p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

/*
 * Left Rating Box
*/

.bdj-testimonial-rating {
    height: 100%;
    min-height: 320px;
    padding: 34px 30px;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 14px;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.18);
}

.bdj-testimonial-rating h5 {
    color: #c8cdd2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bdj-testimonial-rating h2 {
    color: #ffffff;
    font-family: var(--bdj-display-font);
    font-size: 64px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 12px;
}

.bdj-testimonial-rating .rating {
    display: flex;
    gap: 4px;
    color: #c8cdd2;
    font-size: 15px;
    margin-bottom: 16px;
}

.bdj-testimonial-rating p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.bdj-testimonial-rating .tes-nav {
    display: flex;
    gap: 10px;
}

.bdj-testimonial-rating .tes-nav>div {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c8cdd2;
    border: 1px solid rgba(200, 205, 210, 0.28);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bdj-testimonial-rating .tes-nav>div:hover {
    color: #071b33;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    border-color: transparent;
}

/*
 * Testimonial Cards
*/

.bdj-testimonial-card {
    position: relative;
    height: 100%;
    padding: 34px 32px;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98));
    border: 1px solid rgba(200, 205, 210, 0.18);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.bdj-testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 60%);
    opacity: 0;
    transition: all 0.35s ease;
}

.bdj-testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 205, 210, 0.42);
}

.bdj-testimonial-card:hover::before {
    opacity: 1;
}

.bdj-testimonial-card .content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.bdj-testimonial-card .rating-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.bdj-testimonial-card .rating-a .quote {
    color: #c8cdd2;
    font-size: 34px;
    line-height: 1;
}

.bdj-testimonial-card .rating-a .rating {
    display: flex;
    gap: 4px;
    color: #c8cdd2;
    font-size: 14px;
}

.bdj-testimonial-card .content p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
}

.bdj-testimonial-card .t-btm {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.bdj-client-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b33;
    font-size: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    border-radius: 50%;
}

.bdj-testimonial-card .r-name h4 {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 5px;
}

.bdj-testimonial-card .r-name span {
    color: #c8cdd2;
    font-size: 14px;
    font-weight: 600;
}

/*
 * Original Testimonial Compatibility
*/

.testimonial-card {
    background: var(--white-bg);
    padding: 30px;
    border-radius: 5px;
}

.testimonial-card .rating-a {
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
}

.testimonial-card .rating-a .quote {
    line-height: 1;
    font-size: 45px;
    margin-right: 5px;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: var(--headding-color);
    color: transparent;
    transform: translateY(5px);
}

.testimonial-card .rating-a .rating i {
    font-size: 18px;
    color: #c8cdd2;
}

.testimonial-card .content {
    margin-bottom: 20px;
}

.testimonial-card .content p {
    font-size: 16px;
    font-style: italic;
}

.testimonial-card .t-btm {
    overflow: hidden;
}

.testimonial-card .t-btm .thum {
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 20px;
}

.testimonial-card .t-btm .thum img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.testimonial-card .t-btm .r-name {
    overflow: hidden;
}

.testimonial-card .t-btm .r-name h4 {
    font-size: 16px;
    margin-top: 4px;
    padding-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.top-slider-tes .swiper-slide {
    width: 320px;
}

.testimonial-card-2 {
    background: var(--section-bg);
    padding: 30px;
    display: flex;
}

.testimonial-card-2 .t-btm.image-s {
    margin-top: -80px;
}

.testimonial-card-2 .t-btm.image-s .thum {
    width: 150px;
    margin-bottom: 10px;
}

.testimonial-slider-full-2 {
    padding-top: 50px !important;
}

.testimonial-card-2 .t-btm {
    margin-right: 30px;
}

.testimonial-card-2 .r-name h4 {
    font-size: 18px;
    padding-top: 8px;
    margin-bottom: 4px;
}

.testimonial-card-2 .r-name span {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-card-2 .rating-a .rating {
    margin-bottom: 8px;
    color: #c8cdd2;
    font-size: 16px;
    padding-top: 10px;
}

.testimonial-card-2 .content p {
    font-size: 16px;
}

.testimonial-slider-full-2 .tes-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 10px;
}

.testimonial-slider-full-2 .tes-nav i {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--ct-border-color);
    font-size: 18px;
    border-radius: 50%;
}

.testimonial-slider-full-2 .tes-nav i:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

.testimonial-slider-full-2 .tes-slider-dot {
    margin-top: 20px;
}

.testimonial-slider-full-2 .hero-slider-dot {
    text-align: center;
    position: absolute;
    bottom: 50px !important;
    left: 0;
    right: 0;
    z-index: 9;
}

.testimonial-slider-full-2 .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--headding-color);
    opacity: 1;
    margin: 0 9px !important;
    position: relative;
}

.testimonial-slider-full-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.testimonial-slider-full-2 .swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.testimonial-slider-full-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    border-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1);
}

.testimonial-slider-full-2 .swiper-pagination-bullet button {
    font-size: 0;
    border: none;
    display: none;
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-testimonial-section .bdj-section-title h2 {
        font-size: 38px;
    }

    .bdj-testimonial-rating {
        min-height: auto;
    }
}

@media only screen and (max-width: 575px) {
    .bdj-testimonial-section .bdj-section-title h2 {
        font-size: 31px;
    }

    .bdj-testimonial-card {
        padding: 30px 24px;
    }

    .bdj-testimonial-card .rating-a {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column;
    }

    .bdj-testimonial-card .content p {
        font-size: 16px;
    }

    .bdj-testimonial-rating h2 {
        font-size: 54px;
    }
}

/*
 * #-Pricing Plan
*/
.tab-pane.fade.show {
    transform: translateY(0rem);
}

.tab-pane.fade {
    transition: all 0.3s ease-out;
    transform: translateY(1rem);
}

.ct-pricing-plan-section p.save-txt {
    color: var(--headding-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.ct-pricing-plan-section ul.nav {
    border-bottom: none;
    display: inline-block;
}

.ct-pricing-plan-section ul.nav li.nav-item {
    display: inline-block;
}

.ct-pricing-plan-section ul.nav li.nav-item button {
    text-transform: capitalize;
    padding: 5px 30px;
    position: relative;
    color: var(--headding-color);
    background: transparent;
    border: none;
    font-size: 18px;
    width: auto;
    border: none !important;
    font-family: var(--headding-font);
    font-weight: 500;
}

.ct-pricing-plan-section ul.nav li:first-child button {
    padding-left: 0 !important;
}

.ct-pricing-plan-section ul.nav li:nth-child(2) button {
    padding-right: 0px;
}

.ct-pricing-plan-section ul.nav li button::before {
    position: absolute;
    content: "";
    width: 47px;
    height: 25px;
    background: var(--white-bg);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    right: -27px;
    top: 68%;
    margin-top: -20px;
    border: 1px solid var(--primary-color) !important;
    z-index: 1;
}

.ct-pricing-plan-section ul.nav li button::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    margin-top: -15px;
    z-index: 1;
    top: 66.5%;
    right: -22px;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
}

.ct-pricing-plan-section ul.nav li:nth-child(even) button {
    text-align: right;
}

.ct-pricing-plan-section ul.nav li:nth-child(even) button::before {
    left: -27px;
    right: auto;
}

.ct-pricing-plan-section ul.nav li:nth-child(even) button::after {
    right: auto;
    left: -22px;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
}

.ct-pricing-plan-section ul.nav li button.active::after,
.ct-pricing-plan-section ul.nav li button.active::before {
    display: none;
    z-index: -9;
}

.ct-pricing-plan-section ul.nav li button.active {
    color: var(--primary-color);
    font-weight: 600;
}

.ct-price-card {
    height: 100%;
    border: 1px solid var(--ct-border-color2);
    position: relative;
    padding: 30px;
}

.ct-price-card h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ct-price-card .price {
    margin-bottom: 15px;
}

.ct-price-card .price h2 {
    font-weight: 600;
    font-size: 40px;
}

.ct-price-card .price h2 sub {
    font-size: 16px;
    line-height: 1;
}

.ct-price-card .s-content p {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--headding-color);
}

.ct-price-card .badge-text {
    position: absolute;
    top: 20px;
    z-index: 1;
    right: -12px;
    background: var(--no-change-color1);
    padding: 6px 16px;
    display: inline-block;
    box-sizing: border-box;
    padding-left: 32px;
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0 100%, 18% 51%, 0 0);
}

.ct-price-card .badge-text p {
    color: var(--white-color);
    line-height: 1;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.ct-price-card .p-con ul li {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    font-size: 15px;
    font-weight: 400;
    padding: 5px 0px;
}

.ct-price-card .p-con ul li i {
    color: var(--headding-color);
    padding-right: 3px;
}

.ct-price-card .p-con ul li.no i {
    color: #ff8b8b;
}

.ct-price-card .p-con ul li.no {
    opacity: 0.8;
}

.ct-price-card .p-button {
    margin-top: 20px;
}

.button-2 {
    background: var(--white-bg);
    padding: 16px 30px 16px;
    font-weight: 600;
    font-size: 16px;
    color: var(--headding-color);
    display: inline-flex;
    align-items: center;
    line-height: 25px;
}

.button-2 i {
    padding-left: 8px;
}

.button-2:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.ct-price-card .button-2 {
    padding: 10px 30px 10px;
}

.ct-price-card.active {
    border-color: var(--headding-color);
}

.ct-pricing-p-section2 .list-p-s .si-item {
    display: flex;
    gap: 20px;
}

.ct-pricing-p-section2 .list-p-s .si-item .icon {
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    background: var(--section-bg);
    border-radius: 50%;
    color: var(--headding-color);
}

.section-bg .ct-pricing-p-section2 .list-p-s .si-item .icon {
    background: var(--white-color);
}

.ct-pricing-p-section2 .list-p-s .si-item:hover .icon {
    background: var(--primary-color);
    color: var(--white-color);
}

.ct-client-logo-slider .swiper-slide {
    width: 200px;
    padding: 0px 45px;
}

.ct-client-logo-sec .ct-l-text p {
    color: var(--headding-color);
    font-weight: 500;
    font-size: 18px;
    font-family: var(--headding-font);
}

.ct-client-logo-sec .ct-l-text p span {
    color: var(--primary-color);
    font-weight: 600;
}

.ct-pricing-p-section2 .ct-p-t-s ul {
    display: inline-flex;
    border: 1px solid #e2e8f05e;
    border-radius: 2px;
    box-shadow: 0px 0px 10px 0px #dddddd47;
}

.ct-pricing-p-section2 .ct-p-t-s ul li {
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    background: var(--white-bg);
}

.ct-pricing-p-section2 .ct-p-t-s ul li span {
    background: var(--headding-color);
    color: var(--white-color);
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 5px;
    line-height: 12px;
    margin-left: 3px;
}

.ct-pricing-p-section2 .ct-p-t-s ul li.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.ct-pricing-card2 {
    box-shadow: rgb(17 12 46 / 6%) 0px 28px 50px 0px;
    border: 1px solid #e1e1e157;
    border-radius: 5px;
    padding: 34px 40px;
    height: 100%;
    position: relative;
    background: var(--white-bg);
}

.ct-pricing-card2.yes {
    border-color: var(--primary-color);
}

.ct-pricing-card2 .badge-text {
    position: absolute;
    top: 20px;
    z-index: 1;
    right: -12px;
    background: var(--primary-color);
    padding: 6px 16px;
    display: inline-block;
    box-sizing: border-box;
    padding-left: 32px;
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0 100%, 18% 51%, 0 0);
}

.ct-pricing-card2 .badge-text p {
    color: var(--white-color);
    line-height: 1;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.ct-pricing-card2 h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ct-pricing-card2 h2 span {
    display: none;
}

.ct-pricing-card2 h2 span.active {
    display: inline-block;
}

.ct-pricing-card2 h2 {
    font-size: 50px;
    margin-bottom: 2px;
}

.ct-pricing-card2 strong {
    color: var(--primary-color);
    margin-bottom: 30px;
    display: inline-block;
    text-transform: capitalize;
}

.ct-pricing-card2 .pi-list {
    margin-bottom: 30px;
}

.ct-pricing-card2 .pi-list ul li {
    display: inline-block;
    line-height: 27px;
    font-size: 15px;
    padding: 6px 0px;
    font-weight: 500;
}

.ct-pricing-card2 .pi-list ul li i {
    color: var(--primary-color);
    margin-right: 3px;
    display: inline-block;
    margin-top: 2px;
}

.ct-pricing-card2 a.button-2 {
    border-radius: 30px;
    padding: 12px 35px;
    border-width: 1px;
}

/*
 * Nav Tab Image Section
*/
.ct-tab-image-left .nav.nav-tabs {
    border: none !important;
}

.ct-tab-image-left .nav.nav-tabs .nav-link {
    border: none !important;
    width: 100%;
    margin-right: 20px;
    background-color: transparent !important;
}

@media (min-width: 992px) {
    .ct-tab-image-left .nav.nav-tabs .nav-link {
        margin-right: 20px;
    }

    .ct-why-choose-us-section2 .content {
        padding-right: 30px;
    }

    .ct-why-choose-us-section2 .justify-content-end .content {
        padding-right: 0;
        padding-left: 30px;
    }

    .swiper-outside-end-n20 {
        margin-right: -20vw !important;
    }

}

@media (min-width: 1400px) {
    .ct-why-choose-us-section2 .content {
        padding-right: 50px;
    }

    .ct-why-choose-us-section2 .justify-content-end .content {
        padding-right: 0;
        padding-left: 50px;
    }
}

.ct-tab-image-left .nav.nav-tabs .nav-link .nav-item-signle {
    margin-bottom: 15px;
    border: 1px solid var(--ct-border-color2);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    cursor: pointer;
}

.ct-tab-image-left .nav.nav-tabs .nav-link:last-child .nav-item-signle {
    margin-bottom: 0;
}

.ct-tab-image-left .nav.nav-tabs .nav-link.active .nav-item-signle {
    -webkit-box-shadow: 0px 10px 50px rgba(11, 23, 40, 0.1);
    box-shadow: 0px 10px 50px rgba(11, 23, 40, 0.1);
    border-color: var(--primary-color);
    background-color: var(--white-bg);
}

.ct-tab-image-left .nav.nav-tabs .nav-link .nav-item-signle .number span {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--ct-border-color2);
    font-size: 18px;
    border-radius: 50%;
    color: var(--body-color);
}

.ct-tab-image-left .nav.nav-tabs .nav-link.active .nav-item-signle .number span {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.ct-tab-image-left .nav.nav-tabs .nav-link .nav-item-signle .content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.ct-video-banner-image .container-fluid {
    padding: 0;
    width: 100%;
}

.ct-video-banner-image .container-fluid .row {
    margin: 0;
    padding: 0 !important;
    width: 100%;
}

.ct-video-banner-image .container-fluid .row .col-lg-12 {
    padding: 0;
}

.ct-video-banner-image .container-fluid a.video-p-btn {
    background: var(--primary-color);
    color: var(--white-color);
}

.ct-video-banner-image .container-fluid a.video-p-btn:hover {
    color: var(--primary-color);
    background: var(--white-color);
}

.ct-video-banner-image .banner-img {
    position: relative;
    z-index: 1;
}

.ct-video-banner-image .banner-img:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.ct-video-banner-image .banner-img:after {
    background-color: #0c0c0c73;
}

/* .ct-video-banner-image .banner-img:after {
    background-color: #340A798A;
} */
/*
 * #-Industry We Serve
*/
.ct-industry-item {
    padding: 1.5rem;
    background: var(--white-bg);
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--ct-border-color);
}

.ct-industry-item:hover {
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 7%);
    border-color: var(--primary-color);
}

.ct-industry-item .icon {
    width: 65px;
    height: 65px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    border: 1px solid var(--ct-border-color);
    box-sizing: border-box;
    border-radius: 50%;
}

.ct-industry-item:hover .icon {
    border-color: var(--primary-color);
}

.ct-industry-item .icon svg {
    width: 28px;
    fill: var(--body-color);
}

.ct-industry-item:hover .icon svg {
    fill: var(--primary-color);
}

.ct-industry-item .icon i {
    color: var(--body-color);
    font-size: 28px;
    line-height: 1.1;
}

.ct-industry-item:hover .icon i {
    color: var(--primary-color);
}

.ct-industry-item .icon .im img {
    width: 28px;
}

.ct-industry-item .icon .im.hover img.img-hover {
    display: none;
}

.ct-industry-item:hover .icon .im.hover img {
    display: none;
}

.ct-industry-item:hover .icon .im.hover img.img-hover {
    display: block;
}

.ct-industry-item h2 {
    font-size: 1.05rem;
    font-weight: 600;
}

.ct-industry-item:hover h2 {
    color: var(--primary-color);
}

.single-input label {
    display: block;
    margin-bottom: 2px;
    font-size: 15px;
    font-weight: 500;
    color: var(--headding-color);
}

.single-input input,
.single-input select,
.single-input textarea {
    width: 100%;
    border: 1px solid var(--section-bg);
    padding: 13px 18px;
    outline: none;
}

.single-input textarea {
    height: 120px;
}

.single-input input:focus,
.single-input select:focus,
.single-input textarea:focus {
    border-color: var(--primary-color);
}

.single-input input[type="submit"] {
    width: auto;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 500;
    letter-spacing: 1px;
    padding: 13px 30px;
    color: var(--white-color);
    outline: none;
}

.single-input input[type="submit"]:hover {
    color: var(--white-color);
    background: var(--headding-color);
    border-color: var(--headding-color);
}

.single-input br {
    display: none;
}

.ct-client-logo-section .ct-l-text p {
    color: var(--headding-color);
    font-weight: 500;
    font-size: 18px;
    font-family: var(--headding-font);
}

.ct-client-logo-section .ct-l-text p span {
    color: var(--primary-color);
}

.ct-client-logo-section .single-logo-item2 {
    border-radius: 4px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-contact-section {
    max-width: 600px;
    margin: 0 auto;
    background: #dbdbf5;
    border-radius: 5px;
    padding: 35px 30px;
    position: relative;
    padding-left: 35px;
}

.services-contact-section .icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-bg);
    font-size: 28px;
    color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0px 0px 4px 0px #cccccc63;
    position: absolute;
    top: -35px;
    left: -35px;
}

.services-contact-section p {
    font-size: 16px;
    font-weight: 600;
    color: var(--headding-color);
}

.services-contact-section a.button-2 {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    padding: 10px 28px;
}

.services-contact-section .text-md-right {
    text-align: right;
}

.services-contact-section a.button-2:hover {
    color: var(--headding-color);
    background: transparent;
}

.services-details-list {
    background: var(--section-bg);
    border-radius: 4px;
    padding: 30px 30px;
}

.services-details-list h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.services-details-list ul li {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    margin: 6px 0px;
}

.services-details-list ul li a {
    display: inline-block;
    width: 100%;
    background: var(--white-bg);
    padding: 7px 20px;
    line-height: 28px;
    font-weight: 600;
    font-size: 14px;
    padding-top: 10px;
    color: var(--headding-color);
}

.services-details-list ul li a:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.services-details-list ul li.yes a {
    color: var(--white-color);
    background: var(--primary-color);
}

.services-details-ct-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
    padding: 45px 30px;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
}

.services-details-ct-banner:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.services-details-ct-banner .icon {
    height: 60px;
    width: 60px;
    line-height: 30px;
    background-color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    -webkit-transition: 0.5s -webkit-animation ripple-white-18 1s linear infinite;
    animation: ripple-white-18 1s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 25px;
}

.services-details-ct-banner h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--white-color);
}

.services-details-ct-banner h5 {
    color: var(--white-color);
    font-size: 18px;
}

/*
 * BDJ FAQ Section
*/

.bdj-faq-section {
    position: relative;
    background: var(--section-bg);
    overflow: hidden;
}


.bdj-faq-section .container {
    position: relative;
    z-index: 2;
}

.bdj-faq-section .bdj-section-title h4 {
    justify-content: center;
}


.bdj-faq-section .bdj-section-title h2 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.16;
    font-weight: 500;
    margin-bottom: 18px;
}

.bdj-faq-section .bdj-section-title p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

/*
 * BDJ Accordion
*/

.bdj-accordion .accordion-item {
    margin-bottom: 14px;
    background: linear-gradient(145deg, rgba(8, 33, 62, 0.96), rgba(4, 20, 39, 0.98)) !important;
    border: 1px solid rgba(200, 205, 210, 0.18) !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.35s ease;
}

.bdj-accordion .accordion-item:last-child {
    border-bottom: 1px solid rgba(200, 205, 210, 0.18) !important;
}

.bdj-accordion .accordion-item:hover {
    border-color: rgba(200, 205, 210, 0.38) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.bdj-accordion .accordion-header {
    line-height: 1;
    margin: 0;
    padding: 0;
}

.bdj-accordion .accordion-header a {
    position: relative;
    width: 100%;
    display: inline-block;
    color: #ffffff;
    padding: 24px 72px 24px 26px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: none;
}

.bdj-accordion .accordion-header a:hover {
    color: #c8cdd2;
}

.bdj-accordion .accordion-header a::after {
    content: "-";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd2 100%);
    color: #071b33;
    font-size: 22px;
    font-weight: 600;
    border-radius: 50%;
}

.bdj-accordion .accordion-header a.collapsed::after {
    content: "+";
}

.bdj-accordion .accordion-body {
    border: none;
    padding: 0 26px 24px;
    border-top: 1px solid rgba(200, 205, 210, 0.14);
}

.bdj-accordion .accordion-collapse {
    border: none;
}

.bdj-accordion .accordion-body p {
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.bdj-faq-bottom {
    margin-top: 36px;
}

.bdj-faq-bottom p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    margin-bottom: 18px;
}

.bdj-faq-bottom .button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/*
 * Keep Original FAQ Compatibility
*/

.accordion-item {
    border: 1px solid var(--ct-border-color2) !important;
    border-bottom: none !important;
    background-color: transparent !important;
}

.accordion-item:last-child {
    border-bottom: 1px solid var(--ct-border-color2) !important;
}

.accordion-item .accordion-header {
    line-height: 1;
    margin: 0;
    padding: 0;
}

.accordion-item .accordion-header a {
    font-size: 16px;
    width: 100%;
    display: inline-block;
    color: var(--headding-color);
    padding: 20px 20px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
}

.accordion-item .accordion-header a::after {
    content: "-";
    clear: both;
    overflow: hidden;
    position: absolute;
    right: 10px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 20px;
    height: 30px;
}

.accordion-item .accordion-header a.collapsed::after {
    content: "+";
}

.accordion-item .accordion-body {
    border: none;
    padding: 15px 20px;
    border-top: 1px solid var(--ct-border-color2);
}

.accordion-item .accordion-collapse {
    border: none;
}

.accordion-item .accordion-body p {
    line-height: 30px;
    color: var(--body-color);
}

h2.accordion-header {
    padding: 0 !important;
    margin: 0 !important;
}

.accordion-item .accordion-header a:hover {
    color: var(--primary-color);
}

/*
 * Responsive
*/

@media only screen and (max-width: 991px) {
    .bdj-faq-section .bdj-section-title h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 575px) {
    .bdj-faq-section .bdj-section-title h2 {
        font-size: 31px;
    }

    .bdj-accordion .accordion-header a {
        padding: 22px 64px 22px 22px;
        font-size: 16px;
    }

    .bdj-accordion .accordion-header a::after {
        right: 20px;
        width: 32px;
        height: 32px;
    }

    .bdj-accordion .accordion-body {
        padding: 0 22px 22px;
    }
}

[data-bs-theme="dark"] .ct-counter-section .ct-cs-full .counter-item .icon {
    box-shadow: 0px 0px 28px 0px rgb(201 201 201 / 9%);
}

[data-bs-theme="dark"] .services-contact-section {
    background: #06061a;
}

[data-bs-theme="dark"] .section-bg .services-card-item-4 {
    background-color: var(--white-bg);
}

[data-bs-theme="dark"] .services-card-item-4 {
    background-color: var(--white-bg);
}

[data-bs-theme="dark"] .ct-pricing-p-section2 .ct-p-t-s ul {
    border: 1px solid #e2e8f01c;
    box-shadow: 0px 0px 10px 0px #dddddd00;
}

[data-bs-theme="dark"] .ct-pricing-p-section2 .ct-p-t-s ul li span {
    background: var(--secondary-color);
}

[data-bs-theme="dark"] .section-bg .testimonial-card {
    background: var(--white-bg);
}

[data-bs-theme="dark"] .testimonial-card {
    background: var(--section-bg);
}

[data-bs-theme="dark"] .single-input input[type="submit"]:hover {
    color: var(--primary-color);
}

[data-bs-theme="blue"] .ct-counter-section .ct-cs-full .counter-item .icon {
    box-shadow: 0px 0px 28px 0px rgb(201 201 201 / 9%);
}

[data-bs-theme="blue"] .services-contact-section {
    background: #06061a;
}

[data-bs-theme="blue"] .section-bg .services-card-item-4 {
    background-color: var(--white-bg);
}

[data-bs-theme="blue"] .services-card-item-4 {
    background-color: var(--white-bg);
}

[data-bs-theme="blue"] .ct-pricing-p-section2 .ct-p-t-s ul {
    border: 1px solid #e2e8f01c;
    box-shadow: 0px 0px 10px 0px #dddddd00;
}

[data-bs-theme="blue"] .ct-pricing-p-section2 .ct-p-t-s ul li span {
    background: var(--secondary-color);
}

[data-bs-theme="blue"] .section-bg .testimonial-card {
    background: var(--white-bg);
}

[data-bs-theme="blue"] .testimonial-card {
    background: var(--section-bg);
}

[data-bs-theme="blue"] .single-input input[type="submit"]:hover {
    color: var(--primary-color);
}

/*Text Slide*/
.news-ticker {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.news-ticker .scroll {
    display: flex;
    width: 100%;
}

.news-ticker .scroll div {
    font-weight: 900;
    font-size: 5em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--headding-color);
    /*    background-color: var(--white-bg);*/
    animation: animateanimate 40s -40s linear infinite;
    will-change: transform;
}

.news-ticker .scroll div:nth-child(2) {
    animation: animate2 40s -20s linear infinite;
}

.news-ticker .scroll div span {
    -webkit-text-stroke: 2px var(--headding-color);
    color: var(--white-color);
}

.news-ticker .text1 {
    transform: rotate(30deg) translate(-200px, 200px);
}

.news-ticker .text2 {
    transform: rotate(-25deg) translate(-200px, 120px);
}

.news-ticker .text3 {
    transform: rotate(25deg) translate(-200px, 300px);
}

.news-ticker .text3 {
    transform: rotate(-2deg) translate(-200px, -150px);
}

.text5 {
    transform: rotate(5deg) translate(-200px, 250px);
}

.news-ticker.di-right .scroll div {
    animation: animateLeftToRight 40s -40s linear infinite;
}

.news-ticker.di-right .scroll div:nth-child(2) {
    animation: animate2LeftToRight 40s -20s linear infinite;
}

@keyframes animateanimate {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes animate2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

@keyframes animateLeftToRight {
    0% {
        transform: translateX(-60%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes animate2LeftToRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(200%);
    }
}

.project-section .ct-section-title a.button-1 {
    margin-top: 26px;
}

.project-section .ct-section-title a.button-1 i {
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.project-item-single {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.project-item-single .thumbnail img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.project-item-single:hover .thumbnail img {
    transform: scale(1.04);
}

.project-item-single .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #22222299;
    transition: all 0.4s ease;
    padding-top: 50px;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

.project-item-single:hover .content {
    padding-top: 0;
    opacity: 1;
    visibility: visible;
}

.project-item-single .content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1;
}

.project-item-single .content h2 a {
    color: #fff;
}

.project-item-single .content h2 a:hover {
    color: var(--primary-color);
}

.project-item-single .content strong {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 14px;
    display: inline-block;
    letter-spacing: 1px;
}

.project-item-single .content .zoom-icon {
    margin-top: 6px;
    display: inline-block;
}

.project-item-single .content .zoom-icon a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.project-item-single .content .zoom-icon a:hover {
    transform: rotate(45deg);
}

.top-sticky {
    position: sticky;
    top: 120px;
}

/*
 * Banner
*/
.banner3-sec {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner3-sec .content {
    background: var(--primary-color);
    padding: 70px 50px;
}

.banner3-sec .content h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 15px;
}

.banner3-sec .content h2 {
    font-size: 44px;
    line-height: 50px;
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.banner3-sec .content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 25px;
}

.banner3-sec .content a.button-1 {
    background: var(--white-color);
    color: var(--headding-color);
}

.banner3-sec .content a.button-1:hover {
    color: var(--white-color);
}

.banner3-sec .content a.button-1 i {
    transform: rotate(-45deg);
}


.single-widgets .wp-block-search__inside-wrapper {
    border: none;
    padding: 0;
}

.ct-view-all-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.ct-view-all-text p a {
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
}

.ct-view-all-text p a:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 0%;
    left: 0;
    bottom: 3px;
    height: 2px;
    z-index: 9;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.ct-view-all-text p a:hover:after {
    width: 100%;
}

.button-1 i {
    transform: rotate(-45deg);
}

.ct-hero-section3 .row.text-center .h-button.vedio {
    justify-content: center;
}

.ct-video-banner-image h2 {
    text-align: center;
    font-size: 50px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
    color: var(--white-color);
    line-height: 68px;
    font-weight: 700;
    padding: 0px 20px;
}

/*
 * Testimonial Slider
*/
.testimonial-left-rating {
    height: 100%;
    background: var(--section-bg);
    border-radius: 1px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ct-border-color);
    padding: 24px 20px;
}

.testimonial-left-rating h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.testimonial-left-rating h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.testimonial-left-rating .rating {
    margin-bottom: 10px;
}

.testimonial-left-rating .rating i {
    font-size: 14px;
    color: #ffb72e;
}

.testimonial-left-rating p {
    margin-bottom: 30px;
    color: var(--headding-color);
    font-weight: 500;
    text-transform: capitalize;
    font-size: 17px;
}

.testimonial-left-rating .tes-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.testimonial-left-rating .tes-nav i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 20px -6px rgba(23, 36, 36, 0.08);
    border-radius: 50%;
    border: 1px solid var(--ct-border-color);
    font-size: 16px;
}

.testimonial-left-rating .tes-nav i:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.testimonial-card-3 {
    background: var(--section-bg);
    border: 1px solid var(--ct-border-color);
    border-radius: 4px;
    padding: 30px;
    position: relative;
}

.section-bg .testimonial-card-3,
.section-bg .testimonial-left-rating {
    background: var(--white-bg);
}

.testimonial-card-3 .rating-a {
    margin-bottom: 15px;
    font-size: 16px;
    color: #ffb72e;
}

.testimonial-card-3 p {
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    line-height: 30px;
    margin-bottom: 30px;
}

.testimonial-card-3 .t-btm {
    display: flex;
    gap: 15px;
    align-items: center;
}

.testimonial-card-3 .t-btm .thum img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.testimonial-card-3 .t-btm .r-name h4 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 12px;
}

.testimonial-slider-3 .tes-slider-dot {
    display: none;
}

.ct-view-all-text p.style-2 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--ct-border-color);
    border-radius: 30px;
    line-height: 24px;
}

.services-card-item.style-6:after {
    display: none;
}

.services-card-item.style-6 .h-bg-image {
    opacity: 0;
}

.services-card-item.style-6:hover .h-bg-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 1;
}

.services-card-item.style-6 .h-bg-image:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--primary-bg);
    opacity: 0.9;
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
    background: var(--primary-color);
    color: #fff;
}

.plyr__control--overlaid {
    background: var(--primary-color);
    color: #fff;
}

.plyr--full-ui input[type="range"] {
    color: var(--primary-color);
}

.ct-industry-item2 {
    background: var(--white-color);
    border-radius: 0px;
    padding: 30px 20px;
    -webkit-box-shadow: 0 0 74px rgba(3, 0, 44, 0.24);
    -khtml-box-shadow: 0 0 74px rgba(3, 0, 44, 0.24);
    -moz-box-shadow: 0 0 74px rgba(3, 0, 44, 0.24);
    -ms-box-shadow: 0 0 74px rgba(3, 0, 44, 0.24);
    -o-box-shadow: 0 0 74px rgba(3, 0, 44, 0.24);
    box-shadow: 0 0 74px rgba(3, 0, 44, 0.24);
    position: relative;
    box-sizing: border-box;
    text-align: center;
    z-index: 9;
}

.ct-industry-item2 a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.ct-industry-item2:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--primary-bg);
    left: 0;
    top: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.ct-industry-item2:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.ct-industry-item2 .icon {
    margin-bottom: 20px;
}

.ct-industry-item2 .icon i {
    font-size: 45px;
    color: var(--primary-color);
}

.ct-industry-item2 .icon svg {
    fill: var(--primary-color);
    width: 45px;
    height: 45px;
}

.ct-industry-item2:hover .icon svg {
    fill: var(--white-color);
}

.ct-industry-item2:hover .icon i {
    color: var(--white-color);
}

.ct-industry-item2 .icon .im img {
    width: 45px;
    margin: 0 auto;
}

.ct-industry-item2 .icon .im img.img-hover {
    display: none;
}

.ct-industry-item2:hover .icon .im img {
    display: none;
}

.ct-industry-item2:hover .icon .im img.img-hover {
    display: block;
}

.ct-industry-item2 .content h2 {
    font-size: 22px;
    font-weight: 600;
}

.ct-industry-item2:hover .content h2 {
    color: var(--white-color);
}

.hero-contact-from {
    background: var(--white-bg);
    border-radius: 4px;
    padding: 40px 40px;
    padding-bottom: 30px;
    max-width: 480px;
    margin: 0 auto;
}

.hero-contact-from h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 12px;
}

.hero-contact-from p.content {
    font-size: 16px;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.hero-contact-from .single-input input,
.hero-contact-from .single-input select,
.hero-contact-from .single-input textarea {
    width: 100%;
    padding: 10px 14px;
}

.hero-contact-from .mb-20 {
    margin-bottom: 15px;
}

.hero-contact-from .single-input textarea {
    height: 80px;
}

.hero-contact-from .single-input {
    position: relative;
}

.hero-contact-from .single-input span.wpcf7-spinner {
    position: absolute;
    top: 10px;
    left: 2px;
}

.ct-hero-section {
    min-height: 100vh;
    height: 100%;
    display: flex;
    align-items: center;
}

.dark-sec .ct-section-title h2,
.dark-sec.ct-about-us-section .content .ab-info .info h4 {
    color: var(--white-color);
}

.dark-sec.ct-about-us-section .content p.text,
.dark-sec.ct-about-us-section .content .ab-info .info p {
    color: #e0dfdf;
}

.home-banner4-sec {
    padding-top: 100px;
    padding-bottom: 70px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.home-banner4-sec .ct-section-title h2 {
    color: var(--white-color);
    margin-bottom: 30px;
}

.home-banner4-sec .check-list-banner {
    display: grid;
    gap: 15px;
}

.home-banner4-sec .check-list-banner .ck-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #010214;
    padding: 16px 20px;
    border-radius: 4px;
}

.home-banner4-sec .check-list-banner .ck-item i {
    font-size: 20px;
    color: var(--primary-color);
}

.home-banner4-sec .check-list-banner .ck-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
}

.services-card-item-style6 {
    border: 1px solid #e2e8f08a;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 30px 0 rgb(214 215 216 / 27%);
    height: 100%;
}

.services-card-item-style6:hover {
    border-color: var(--ct-border-color);
}

.services-card-item-style6 .content h2 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 12px;
}

.services-card-item-style6 .content {
    padding: 24px;
}

.services-card-item-style6 .content p {
    font-size: 15px;
    line-height: 26px;
}

.services-card-item-style6 .content a.read-m {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    gap: 6px;
    color: var(--headding-color);
    font-weight: 600;
}

.services-card-item-style6 .content a.read-m:hover {
    color: var(--primary-color);
}

.services-card-item-style6 .content a.read-m i {
    transform: rotate(-45deg);
}

.services-card-item-style6 .content a.read-m:hover i {
    transform: rotate(0);
}

.service-nav {
    position: absolute;
    bottom: 10px;
    right: 0;
    display: flex;
    gap: 10px;
}

.service-nav i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--ct-border-color);
    color: var(--headding-color);
    border-radius: 50%;
}

.service-nav i:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.services-slider-full .services-card-item-style6 {
    box-shadow: none;
}

.services-card-item-style6 .image img {
    width: 100%;
}

/*
 * Card 7
*/
.services-card-item-style7 {
    background: linear-gradient(to bottom, var(--primary-color), #ff4bd8);
    padding: 2px;
    border-radius: 10px;
    position: relative;
    height: 100%;
}

.services-card-item-style7-full {
    border-radius: 10px;
    background: var(--white-bg);
    padding: 25px 25px 25px 40px;
    height: 100%;
}

.services-card-item-style7:hover .services-card-item-style7-full {
    background: transparent;
}

.services-card-item-style7:hover {
    background: var(--primary-bg);
}

.services-card-item-style7-full .t-icon {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
}

.services-card-item-style7 .t-icon h3 {
    font-size: 34px;
    font-weight: 600;
    line-height: 36px;
    padding-top: 6px;
}

.services-card-item-style7:hover .t-icon h3 {
    color: var(--white-color);
}

.services-card-item-style7 .t-icon .icon i {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--section-bg);
    border-radius: 50%;
    font-size: 30px;
    color: var(--headding-color);
}

.services-card-item-style7:hover .t-icon .icon i {
    background: var(--white-bg);
}

.services-card-item-style7 .t-icon .icon i {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--section-bg);
    border-radius: 50%;
    font-size: 25px;
    transform: rotate(45deg);
    color: var(--headding-color);
}

.services-card-item-style7 .content p {
    font-size: 18px;
    line-height: 32px;
}

.services-card-item-style7:hover .content p {
    color: var(--white-color);
}

.services-card-item-style7 a.link-t:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/*
 * Hero Section
*/
.ct-hero-section5 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 150px;
}

.ct-hero-section5 .content h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    border: 1px solid var(--ct-border-color);
    display: inline-flex;
    padding: 10px 24px;
    border-radius: 30px;
    line-height: 24px;
    background: #e2e8f03d;
    margin-bottom: 30px;
    align-items: center;
    gap: 7px;
    text-align: left;
}

.ct-hero-section5 .content h4 img {
    display: inline-block;
    max-height: 26px;
    border-radius: 6px;
}

.ct-hero-section5 .content h2 {
    font-size: 80px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 90px;
    margin-bottom: 30px;
}

.ct-hero-section5 .content h2.highlight span {
    position: relative;
    background: linear-gradient(to right, #6f00ff, #b35aff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding: 0 0.2em;
}

.ct-hero-section5 .content h2.highlight span::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border: 2px solid var(--primary-color);
    pointer-events: none;
}

.ct-hero-section5 .content h2.highlight span::after {
    content: "";
    position: absolute;
    inset: -4px;
    pointer-events: none;
}

.ct-hero-section5 .content h2.highlight span .corner-tl {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    padding: 0;
}

.ct-hero-section5 .content h2.highlight span .corner-tr {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    padding: 0;
}

.ct-hero-section5 .content h2.highlight span .corner-bl {
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    padding: 0;
}

.ct-hero-section5 .content h2.highlight span .corner-br {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    padding: 0;
}

.ct-hero-section5 .content h2.highlight span .corner-tl:after,
.ct-hero-section5 .content h2.highlight span .corner-tl:before,
.ct-hero-section5 .content h2.highlight span .corner-tr:after,
.ct-hero-section5 .content h2.highlight span .corner-tr:before,
.ct-hero-section5 .content h2.highlight span .corner-bl:after,
.ct-hero-section5 .content h2.highlight span .corner-bl:before,
.ct-hero-section5 .content h2.highlight span .corner-br:after,
.ct-hero-section5 .content h2.highlight span .corner-br:before {
    display: none;
}

.ct-hero-section5 .content p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 30px;
    line-height: 30px;
}

.ct-hero-section5 .content .h-button {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.ct-hero-section5 .image-s {
    position: relative;
    z-index: 99;
}

.ct-hero-section5 .image-s img.main-img {
    border-radius: 6px;
    position: relative;
}

.ct-hero-section5 .image-s .shap-1 {
    max-width: 250px;
    position: absolute;
    left: -100px;
    top: 20%;
    z-index: 99;
}

.ct-hero-section5 .image-s .shap-2 {
    max-width: 200px;
    position: absolute;
    right: -100px;
    bottom: 20%;
    z-index: 99;
}

.updown-image {
    -webkit-animation: hero-thumb-animation 2s linear infinite alternate;
    -moz-animation: hero-thumb-animation 2s linear infinite alternate;
    -o-animation: hero-thumb-animation 2s linear infinite alternate;
    animation: hero-thumb-animation 2s linear infinite alternate;
}

.how-we-work-sec .left-content p.text {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
}

.how-we-work-sec .image img {
    border-radius: 6px;
}

.step-card {
    border: 1px solid var(--ct-border-color);
    border-radius: 4px;
    padding: 25px;
    height: 100%;
    background: var(--white-bg);
}

.step-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    background: var(--primary-color);
}

.step-card .step-badge {
    margin-bottom: 16px;
}

.step-card .step-badge span {
    display: inline-block;
    padding: 5px 14px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 24px;
    padding-top: 6px;
    color: var(--primary-color);
}

.step-card:hover .step-badge span {
    border-color: var(--white-bg);
    background: var(--white-bg);
}

.step-card h3.title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-top: 4px;
}

.step-card:hover h3.title {
    color: var(--white-color);
}

.step-card p {
    font-size: 17px;
    line-height: 30px;
}

.step-card:hover p {
    color: var(--white-color);
}

.section-bg .testimonial-card-2 {
    background: var(--white-bg);
}

.ct-hero-section6 {
    padding-top: 120px;
    position: relative;
}

.ct-hero-section6 .content h1.title {
    font-size: 140px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.ct-hero-section6 .content h2.title2 {
    background: var(--white-bg);
    display: inline-block;
    font-size: 90px;
    text-transform: uppercase;
    padding: 1px 12px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 6px;
}

.ct-hero-section6 .content {
    padding-bottom: 80px;
}

.ct-hero-section6 .content p {
    text-align: left;
    font-size: 20px;
    line-height: 36px;
}

.ct-hero-section6 .content h2.title3 {
    text-transform: uppercase;
    font-size: 100px;
    line-height: 80px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
    color: transparent;
    letter-spacing: 6px;
}

.ct-hero-section6 img.main-img {
    max-width: 100%;
    width: 100%;
}

.ct-about-us-section5 .ct-section-title h2 {
    font-size: 32px !important;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 44px !important;
}

.ct-about-us-section5 .content .image-2 {
    margin-top: 10px;
}

.ct-about-us-section5 .content p.text {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 25px;
}

.ct-about-us-section5 .content .ab-info .icon {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    float: left;
    margin-right: 15px;
    background: #3630ff30;
    font-size: 22px;
    color: var(--primary-color);
    border-radius: 5px;
}

.ct-about-us-section5 .content .ab-info .info {
    overflow: hidden;
}

.ct-about-us-section5 .content .ab-info .info h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.ct-about-us-section5 .content .ab-info .info p {
    font-size: 16px;
    margin-top: 2px;
    display: inline-block;
}

.ct-about-us-section5 .content .ab-info:hover .icon {
    background: var(--primary-color);
    color: var(--white-color);
}

.ct-about-us-section5 .content .ab-info .icon i {
    transform: rotate(0);
}

.ct-about-us-section5 .content .ab-info:hover .icon i {
    transform: rotate(360deg);
}

.ct-section-title.style-2 h2 {
    font-size: 32px !important;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 44px !important;
}

@media (max-width: 991px) {
    .ct-about-us-section5 .ct-section-title h2 {
        font-size: 24px !important;
        line-height: 34px !important;
    }

    .ct-about-us-section5 .content p.text {
        font-size: 16px;
        line-height: 16px;
    }

    .ct-section-title.style-2 h2 {
        font-size: 24px !important;
        line-height: 34px !important;
    }
}

.services-card-item-style8 {
    width: 100%;
    background: var(--white-bg);
    border: 1px solid var(--section-bg);
    padding: 25px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding-right: 100px;
    position: relative;
}

.services-card-item-style8:hover {
    border-color: var(--primary-color);
}

.services-card-item-style8 .number h5 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
    color: transparent;
    font-size: 32px;
}

.services-card-item-style8 .read-more {
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.services-card-item-style8 .read-more a.read-m {
    font-size: 30px;
    transform: rotate(-45deg);
    color: var(--headding-color);
}

.services-card-item-style8:hover .read-more a.read-m {
    color: var(--primary-color);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.services-card-item-style8 .title h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0px;
    width: 260px;
}

.services-card-item-style8 .content p {
    font-size: 16px;
    margin: 0;
    max-width: 640px;
}

.let-talk-section {
    padding: 70px 0px;
    background: #141414;
    position: relative;
}

.let-talk-section .image-sec {
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 20px);
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.talk-contact-from h2 {
    font-size: 45px;
    color: var(--white-color);
    line-height: 62px;
    margin-bottom: 30px;
}

.talk-contact-from .single-input label {
    display: block;
    margin-bottom: 2px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white-color);
}

[data-bs-theme="blue"] .section-bg .ct-pricing-p-section2 .list-p-s .si-item .icon {
    background: var(--white-bg);
}

[data-bs-theme="blue"] .section-bg .ct-pricing-p-section2 .list-p-s .si-item:hover .icon {
    background: var(--primary-color);
}

.ct-services-sec6.text-color-dy {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.section-bg .services-slider-full .services-card-item-style6 {
    background: var(--white-bg);
}

.ct-services-sec6.text-color-dy .services-card-item-style6 {
    background: var(--white-bg);
}

.span-style-2-line .ct-hero-section5 .content h2 span {
    line-height: 1.14;
}

.span-style-2-line .ct-hero-section5 .content h2 {
    line-height: 1.4;
}

.content-font-size .ct-section-title p {
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
}

.section-bg .ct-price-card {
    background: var(--white-bg);
}

.section-bg .ct-price-card.active {
    border-color: var(--primary-color);
}

.ct-hero-section6.style2 .row {
    padding-bottom: 80px;
}

.ct-hero-section6 .title-style-2 h2.title2 {
    font-size: 70px;
    font-weight: 500;
    line-height: 85px;
}

.ct-hero-section6 .title-style-2 h2.title2 span {
    color: var(--primary-color);
}

.ct-hero-section6 .content-2 p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 24px;
}

@media (min-width: 1200px) {
    .ct-hero-section6 .content-2 {
        padding-left: 30px;
    }
}

.ct-hero-section6.style2 .main-img-sec {
    padding: 0px 30px;
}

.ct-hero-section6.style2 .main-img-sec img {
    border-radius: 10px;
}

.services-card-item-style9 {
    border-radius: 5px;
    padding: 30px 30px;
    min-height: 280px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: end;
    height: 100%;
}

.services-card-item-style9.text-top {
    align-items: start;
}

.services-card-item-style9 h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 10px;
}

.services-card-item-style9 h2 a {
    color: var(--white-color);
    position: relative;
}

.services-card-item-style9 .content p {
    font-size: 16px;
    line-height: 27px;
    color: var(--white-color);
}

.services-card-item-style9.text-black h2 a {
    color: var(--headding-color);
    position: relative;
}

.services-card-item-style9.text-black .content p {
    color: var(--body-color);
}

.section-bg .ct-tab-image-left .nav.nav-tabs .nav-link .nav-item-signle {
    background-color: var(--white-bg);
}

.ct-hero-section6 .title-style-2 h2.title2.style2 {
    font-weight: 900;
}

.ct-counter-section2 {
    background-color: #00031d;
}

.single-logo-item2 {
    background-color: #efefff;
    padding: 14px 14px 14px 14px;
}

.bg-overly {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-overly::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #dadada;
    opacity: 80%;
    z-index: -1;
}

.service-absolute {
    top: -100px;
}

.solid-img {
    position: relative;
    overflow: hidden;
}

.solid-img img {
    height: 440px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.solid-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 7, 66, 0.6);
    pointer-events: none;
}

.custom-margin-top {
    margin-top: -320px;
}

.bg-overly-2 {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-overly-2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 7, 66, 0.6);
    pointer-events: none;
}

.bg-overly-3 {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-overly-3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0a6a;
    pointer-events: none;
    opacity: 0.6;
}

.bg-overly-4 {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-overly-4::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #340a798a;
    pointer-events: none;
    opacity: 0.6;
}

.bg-overly-5 {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-overly-5::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0100fed6;
    pointer-events: none;
    opacity: 0.9;
}

.counter-se {
    margin-top: -100px;
}

.padding-bottom {
    padding-bottom: 150px;
}

.pt-450 {
    padding-top: 450px;
}

.ct-video-banner-image-2 {
    margin-bottom: -320px;
}

.ct-hero-section5 .content h2.highlight span {
    background: linear-gradient(to right);
    -webkit-background-clip: text;
    background-clip: text;
}

section.ct-hero-section3.padding-bottom-100 {
    padding-bottom: 200px;
}

.v-banner-bottom-p {
    padding-bottom: 280px;
}

.ct-video-banner-image .banner-img-m {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0px 200px 0px;
    margin: -200px 0px 0px 0px;
}

.image-s-top {
    margin: 0px 0px -200px 0px;
}

.mt-300 {
    margin-top: 250px;
}

.banner-section-1:after {
    background: #ffffff00;
}

.banner-section-2 {
    padding: 60px 0px 60px 0px;
}

.banner-section_1:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--secondary-color);
    top: 0;
    left: 0;
    opacity: 0.7;
}

.ct-client-logo-section {
    padding: 80px 0px 40px 0px;
}

.banner-section-1:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--secondary-color);
    top: 0;
    left: 0;
    opacity: 0.7;
}

.ct-video-banner-image .banner-img:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.ct-video-banner-image .banner-img.transparent-overlay:after {
    background-color: transparent;
}

@media (min-width: 1200px) {
    section.ct-se-h-secsss.section-padding-2.mt-300 {
        margin-top: 200px;
    }
}

.banner-section-1.pt-60.pb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.banner-section-1.pt-60.pb-60:after {
    background: #ffffff00;
}

.banner-section-1.bg-change:after {
    background: #03003a9e;
}