@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');
body {
    font-family: "Instrument Sans", sans-serif;
}

:root {
    --e-global-color-primary: #ffffff;
    --e-global-color-secondary: #41f681;
    --e-global-color-text: #9b9b9e;
    --e-global-color-accent: #35ca6a;
    --e-global-color-white: #ffffff;
    --e-global-color-very-dark-blue: #08080d;
    --e-global-color-mostly-black: #1f1f2a;
    --e-global-color-bright-blue: #1978ef;
    --e-global-color-light-grayish-blue: #d2cbfd;
    --e-global-color-dark-blue: #191923;
    --e-global-color-dark-black-blue: #07070c;
    --e-global-color-mostly-black-blue: #202025;
    --e-global-color-black: #000000;
    --e-global-color-very-dark-black: #0d0d15;
    --e-global-color-very-dark-grayish-blue: #2e2e39;
    --e-global-color-light-blue: #755eff;
    /*  */
    --bg: #06080f;
    --bg2: #0c0f1a;
    --bg3: #111526;
    --card: #0f1220;
    --card2: #141828;
    --border: rgba(255, 255, 255, 0.07);
    --border2: rgba(255, 255, 255, 0.12);
    --text: #f0f2ff;
    --text2: #8a90b4;
    --text3: #4a4f72;
    --blue: #4f7cff;
    --blue2: #7ca3ff;
    --teal: #2dd4bf;
    --violet: #a78bfa;
    --pink: #f472b6;
    --amber: #fbbf24;
    --green: #34d399;
    --grad1: linear-gradient(135deg, #4f7cff 0%, #a78bfa 100%);
    --grad2: linear-gradient(135deg, #2dd4bf 0%, #4f7cff 100%);
    --grad3: linear-gradient(135deg, #f472b6 0%, #a78bfa 50%, #4f7cff 100%);
    --grad4: linear-gradient(180deg, #4f7cff22 0%, transparent 100%);
    --glow: 0 0 60px rgba(79, 124, 255, 0.15);
    --glow2: 0 0 40px rgba(167, 139, 250, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

h1 {
    font-size: 70px;
    line-height: 80px;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    line-height: 50px;
    font-weight: 700;
}

h3 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 700;
}

h4 {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
}

h5 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

p {
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
}

.text-size-16 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.btn-size-18 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
}

a {
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}

.default-btn {
    padding: 8px 8px 8px 16px;
    border-radius: 10px;
    display: inline-block;
    color: var(--e-global-color-white);
    background: var(--e-global-color-bright-blue);
    transition: all 0.3s ease-in-out;
}

.default-btn:hover {
    background: var(--e-global-color-accent);
    color: var(--e-global-color-white);
}

.default-btn i {
    color: var(--e-global-color-bright-blue);
    background-color: var(--e-global-color-white);
    padding: 14px 19px;
    border-radius: 8px;
    margin-left: 28px;
    font-size: 16px;
    line-height: 16px;
    transition: all 0.3s ease-in-out;
}

.default-btn:hover i {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-mostly-black);
}

.default-btn-two {
    padding: 8px 8px 8px 40px;
    border-radius: 10px;
    display: inline-block;
    color: var(--e-global-color-white);
    background: var(--e-global-color-mostly-black);
    transition: all 0.3s ease-in-out;
}

.default-btn-two:hover {
    background: var(--e-global-color-accent);
    color: var(--e-global-color-white);
}

.default-btn-two i {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-very-dark-blue);
    padding: 14px 19px;
    border-radius: 8px;
    margin-left: 28px;
    font-size: 16px;
    line-height: 16px;
    transition: all 0.3s ease-in-out;
}

.default-btn-two:hover i {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-mostly-black);
}

.hover-effect {
    transition: all 0.3s ease-in-out;
}

.hover-effect:hover {
    transform: translateY(-5px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bricolage Grotesque", sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Home Page Style */

/* Home Page Header Section Style */

.banner-section-outer {
    background-color: var(--e-global-color-black);
    overflow: hidden;
    min-height: 900px;
}

header {
    position: absolute;
    z-index: 2;
    background-color: transparent;
    width: 100%;
    left: 0;
    top: 0;
    border-bottom: 1px solid var(--e-global-color-light-grayish-blue);
}

.navbar-collapse ul {
    text-align: center;
    align-items: center;
    display: inherit;
}

.navbar-nav .nav-item a {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    /* color: var(--e-global-color-white) !important; */
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item a:hover {
    color: var(--blue);
}

.navbar-nav .active>a {
    color: var(--blue);
}

.navbar-brand {
    margin-left: 0;
    margin-right: 115px;
    padding-top: 0;
    padding-bottom: 0;
    max-width: 200px;
}

.navbar {
    padding: 42px 0;
}

.navbar-nav li {
    margin: 0px 29px 0 15px;
}

.navbar-nav li:first-child {
    margin-left: 0;
}

.navbar-nav li:last-child {
    margin-right: 0;
    padding-right: 0;
    margin-left: 6px;
}

.navbar-nav .nav-item .talk_btn {
    font-weight: 500 !important;
    padding: 8px 10px 8px 20px !important;
    border-radius: 100px;
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-bright-blue);
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .talk_btn:hover {
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent);
}

.navbar-nav .nav-item .talk_btn i {
    color: var(--e-global-color-bright-blue);
    background-color: var(--e-global-color-white);
    padding: 11px 15px;
    border-radius: 100px;
    margin-left: 8px;
    font-size: 16px;
    line-height: 16px;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .talk_btn:hover i {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-mostly-black);
}

.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}

.navbar-nav .dropdown-menu {
    background-color: var(--e-global-color-black);
    position: absolute;
    left: -10px;
    top: 40px;
    padding: 0;
    border: none;
    margin: 0;
    border-radius: 0;
    box-shadow: 1px 1px 30px rgb(0 0 0 / 1%);
}

.navbar-nav .drop-down-pages li {
    margin: 0;
}

.navbar-nav .drop-down-pages .nav-item a {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding: 12px 20px;
    color: var(--e-global-color-white) !important;
}

.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}

.navbar-nav .nav-item .dropdown-item:hover {
    color: var(--e-global-color-accent) !important;
    background-color: transparent !important;
}

.navbar-nav .drop-down-pages .active>a {
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}

.navbar-nav .drop-down-pages .active>a:hover {
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}

/* Home Page Banner Section Style */

.banner-section-outer .banner-section {
    padding: 132px 0 192px;
    z-index: 1;
}

.banner-section-outer .banner-section .banner-section-content h1 {
    font-size: 58px;
    line-height: 80px;
    margin-bottom: 25px;
    color: var(--e-global-color-white);
}

.banner-section-outer .banner-section .banner-section-content .banner_content_wrapper {
    padding-left: 28px;
    margin-right: 60px;
    margin-bottom: 40px;
}

.banner-section-outer .banner-section .banner-section-content .banner_content_wrapper figure {
    top: 12px;
    left: 0;
}

.banner-section-outer .banner-section .banner-section-content p {
    font-family: "Instrument Sans", sans-serif;
    font-size: 19px;
    line-height: 38px;
}

/* .banner-section-outer .banner-section-content .btn_wrapper{
    padding-left: 60px;
} */

.banner-section-outer .banner-section-content .btn_wrapper .readmore_btn {
    margin-right: 12px;
}

.banner-section-outer .banner-section .banner_image {
    margin-left: -30px;
    margin-top: -40px;
}

.banner-section-outer .banner-section .banner_image .banner_main_image {
    position: relative;
    z-index: 1;
}

.banner-section-outer .banner-section .banner_image .banner_main_image img {
    border-radius: 55px;
}

.banner-section-outer .banner-section .banner_best_image {
    margin-right: -30px;
}

.banner-section-outer .banner-section .banner_best_image figure {
    top: -45px;
    left: -8px;
}

.banner-section-outer .banner-section .banner_image .banner_image_top_shape {
    top: -38px;
    left: -185px;
}

.banner-section-outer .banner-section .banner_image .banner_image_bottom_shape {
    bottom: -50px;
    right: -305px;
}

.banner-section-outer .banner-section .banner_image .banner_image_bottom_shape img {
    opacity: 0.35;
}

.banner-section-outer .banner-section .banner_left_image {
    left: 24px;
    bottom: -57px;
}

.banner-section-outer .banner-section .banner_left_image img {
    border-radius: 35px;
}

.banner-section-outer .banner_top_shape {
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-section-outer .banner_background_shape {
    top: 0;
    left: 0;
}

.banner-section-outer .top-btn figure {
    bottom: 80px;
    left: 5px;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.top_bottom_shape img {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-30px);
    }
}

.left_right_shape img {
    -webkit-animation: movers 1s infinite alternate;
    animation: movers 1s infinite alternate;
}

@-webkit-keyframes movers {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-30px);
    }
}

/* Home Page Statistics Section Style */

.statistics_section {
    background-color: #1b134c;
    padding: 110px 0;
    overflow: hidden;
}

.statistics_section .statistics_content {
    padding-top: 28px;
    position: relative;
    z-index: 1;
}

.statistics_section .statistics_content h3 {
    color: var(--e-global-color-white);
}

.statistics_section .statistics_box {
    background-color: #3a3369;
    padding: 38px 40px 35px 39px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.statistics_section .statistics_box .span_wrapper {
    margin-bottom: 10px;
}

.statistics_section .statistics_box .span_wrapper span {
    font-family: "Instrument Sans", sans-serif;
    font-size: 17px;
    /* line-height: 38px; */
    font-weight: 700;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}

.statistics_section .statistics_box:hover {
    background-color: var(--e-global-color-mostly-black);
}

.statistics_section .statistics_box:hover .span_wrapper span {
    color: var(--e-global-color-accent);
}

.statistics_section .statistics_box .span_wrapper .plus {
    margin-left: -2px;
}

.statistics_section .statistics_box .pp {
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 24px;
    font-family: "Instrument Sans", sans-serif;
}

.statistics_section .statistics_box .text {
    color: var(--e-global-color-light-grayish-blue);
    transition: all 0.3s ease-in-out;
}

.statistics_section .statistics_box:hover .text {
    color: var(--e-global-color-white);
}

.statistics_section .statistics_left_shape {
    top: -245px;
    left: 0;
}

.statistics_section .statistics_left_shape img {
    opacity: 0.2;
}

.statistics_section .statistics_right_shape {
    bottom: -235px;
    right: 0;
}

.statistics_section .statistics_right_shape img {
    opacity: 0.2;
}

/* Home Page Services Section Style */

.services_section {
    background-color: #191919;
    padding: 50px 0 160px;
}

.services_section .services_content h6 {
    color: var(--e-global-color-secondary);
    margin-bottom: 16px;
    letter-spacing: 1.1px;
}

.services_section .services_content h2 {
    color: var(--e-global-color-white);
    margin-bottom: 78px;
}

.services_section .services_box {
    background-image: linear-gradient(33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
    padding: 48px 40px 45px 45px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.services_section .services_box:hover {
    background-image: linear-gradient(-33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
}

.services_section .services_box:hover h5 {
    color: var(--e-global-color-secondary);
}

.services_section .services_box:hover .btn_wrapper a {
    color: var(--e-global-color-white);
}

.services_section .box2 {
    top: -70px;
}

.services_section .box3 {
    top: -138px;
}

.services_section .services_box figure {
    margin-bottom: 34px;
}

.services_section .services_box h5 {
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}

.services_section .services_box p {
    line-height: 28px;
    color: var(--e-global-color-text);
    margin-bottom: 22px;
}

.services_section .services_box .btn_wrapper a {
    color: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}

.services_section .services_box .btn_wrapper a i {
    font-size: 12px;
    line-height: 12px;
    margin-left: 8px;
}

.services_section .services_box .btn_wrapper a:hover {
    color: var(--e-global-color-bright-blue);
}

.services_section .services_background_shape {
    top: -225px;
    right: 55px;
}

.services_section .services_right_shape {
    top: 250px;
    right: 0;
}

.services_section .services_right_shape img {
    opacity: 0.18;
}

/* Home Page About Us Section Style */

.aboutus_section {
    padding: 150px 0;
    background-color: var(--e-global-color-black);
    overflow: hidden;
}

.aboutus_image {
    position: relative;
    z-index: 1;
}

.aboutus_image .aboutus_main_image {
    position: relative;
    z-index: 1;
}

.aboutus_image .aboutus_main_image img {
    border-radius: 35px;
}

.aboutus_image .aboutus_image_shape {
    bottom: -38px;
    left: -40px;
}

.aboutus_image .image_box_wrapper {
    background-image: linear-gradient(33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
    padding: 25px 8px 30px 25px;
    border-radius: 20px;
    position: absolute;
    bottom: 95px;
    right: 0;
    z-index: 1;
    width: 52%;
}

.aboutus_image .image_box_wrapper:hover {
    background-color: var(--e-global-color-accent);
    background-image: none;
}

.aboutus_image .image_box_wrapper .box_image {
    padding-top: 8px;
}

.aboutus_image .image_box_wrapper .image_content_wrapper {
    padding-left: 15px;
    display: inline-block;
}

.aboutus_image .image_box_wrapper .image_content_wrapper .span_wrapper {
    margin-bottom: 8px;
}

.aboutus_image .image_box_wrapper .image_content_wrapper .span_wrapper span {
    font-family: "Instrument Sans", sans-serif;
    font-size: 34px;
    line-height: 38px;
    font-weight: 700;
    color: var(--e-global-color-white);
}

.aboutus_image .image_box_wrapper .image_content_wrapper .span_wrapper .plus {
    margin-left: -1px;
}

.aboutus_image .image_box_wrapper .image_content_wrapper p {
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: var(--e-global-color-white);
}

.aboutus_content {
    position: relative;
    z-index: 1;
    padding-left: 25px;
    padding-top: 8px;
}

.aboutus_content h6 {
    color: var(--e-global-color-secondary);
    letter-spacing: 1.1px;
    margin-bottom: 20px;
}

.aboutus_content h2 {
    color: var(--e-global-color-white);
    margin-bottom: 38px;
}

.aboutus_content p {
    color: var(--e-global-color-text);
    margin-bottom: 18px;
}

.aboutus_content ul li {
    position: relative;
    margin-bottom: 16px;
}

.aboutus_content ul li:last-child {
    margin-bottom: 45px;
}

.aboutus_content ul li i {
    border: 1px solid var(--e-global-color-secondary);
    border-radius: 100%;
    background-color: transparent;
    color: var(--e-global-color-secondary);
    font-size: 16px;
    line-height: 26px;
    height: 26px;
    width: 26px;
    position: absolute;
    top: 4px;
    left: 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-top-style: none;
    border-right-style: none;
}

.aboutus_content ul li p {
    padding-left: 40px;
    font-weight: 500;
    color: var(--e-global-color-text);
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.aboutus_content ul li p:hover {
    color: var(--e-global-color-accent);
}

.aboutus_section .aboutus_background_shape {
    top: 0;
    left: 0;
}

.aboutus_section .aboutus_top_shape {
    top: 0;
    right: 0;
}

/* Home Page Who We Are Section Style */

.who_we_are_section {
    background-color: var(--e-global-color-bright-blue);
    padding: 168px 130px 175px 240px;
    overflow: hidden;
}

.who_we_are_section .who_we_are_left_content {
    position: relative;
    z-index: 1;
}

.who_we_are_section .who_we_are_left_content h6 {
    letter-spacing: 1.1px;
    margin-bottom: 20px;
}

.who_we_are_section .who_we_are_left_content h2 {
    margin-bottom: 42px;
    font-size: 42px;
    line-height: 60px;
}

.who_we_are_section .who_we_are_left_content p {
    margin-bottom: 34px;
    color: var(--e-global-color-light-grayish-blue);
}

.who_we_are_section .who_we_are_image {
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
}

.who_we_are_section .who_we_are_left_shape {
    top: -310px;
    left: 0;
}

.who_we_are_section .who_we_are_left_shape img {
    opacity: 0.2;
}

.who_we_are_section .who_we_are_right_shape {
    bottom: -300px;
    right: 0;
}

.who_we_are_section .who_we_are_right_shape img {
    opacity: 0.2;
}

.who_we_are_section .who_we_are_right_content_wrapper {
    margin-left: -152px;
}

.who_we_are_section .video_wrapper {
    top: 22px;
    left: -138px;
    z-index: 2;
}

.who_we_are_section .video_wrapper .video_icon {
    float: left;
    width: 45%;
}

.who_we_are_section .video_wrapper .content {
    display: inline-block;
    width: 55%;
    padding: 45px 0 0 8px;
}

.who_we_are_section .who_we_are_right_content {
    padding-top: 190px;
    position: relative;
    z-index: 1;
}

.who_we_are_section .who_we_are_right_content .who_we_are_rightside {
    display: inline-block;
    width: 44%;
}

.who_we_are_section .who_we_are_right_content .who_we_are_rightside span {
    font-family: "Instrument Sans", sans-serif;
    font-size: 34px;
    line-height: 38px;
    font-weight: 700;
    display: block;
    color: var(--e-global-color-white);
    margin-bottom: 10px;
}

.who_we_are_section .who_we_are_right_content .who_we_are_rightside ul {
    margin-bottom: 14px;
}

.who_we_are_section .who_we_are_right_content .who_we_are_rightside ul li {
    display: inline-block;
}

.who_we_are_section .who_we_are_right_content .who_we_are_rightside ul li i {
    color: #fcbf56;
    font-size: 14px;
}

.who_we_are_section .who_we_are_right_content .who_we_are_rightside h6 {
    font-weight: 600;
    text-transform: capitalize;
    color: var(--e-global-color-white);
    margin-bottom: 0;
}

.who_we_are_section .who_we_are_right_content .who_we_are_rightside p {
    color: var(--e-global-color-light-grayish-blue);
}

/* Home Page Portfolio Section Style */

.portfolio_section {
    padding: 145px 0 150px;
    position: relative;
    background-color: var(--e-global-color-black);
}

.portfolio_section .portfolio_content {
    text-align: center;
}

.portfolio_section .portfolio_content h6 {
    color: var(--e-global-color-secondary);
    letter-spacing: 1.1px;
    margin-bottom: 20px;
}

.portfolio_section .portfolio_content h2 {
    color: var(--e-global-color-white);
    margin-bottom: 52px;
}

.portfolio_section .portfolio_image {
    position: relative;
    margin-bottom: 110px;
    transition: all 0.3s ease-in-out;
}

.portfolio_section .portfolio_image figure img {
    border-radius: 20px;
}

.portfolio_section .portfolio_box {
    background-image: linear-gradient(33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
    position: absolute;
    width: 89%;
    display: inline-block;
    padding: 22px 35px;
    left: 20px;
    bottom: -100px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.portfolio_section .portfolio_image:hover .portfolio_box {
    background-image: linear-gradient(33deg, var(--e-global-color-very-dark-grayish-blue) 0%, var(--e-global-color-very-dark-black) 100%);
}

.portfolio_section .portfolio_box p {
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: var(--e-global-color-white);
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
}

.portfolio_section .portfolio_image:hover .portfolio_box p {
    color: var(--e-global-color-secondary);
}

.portfolio_section .portfolio_box .btn_wrapper a {
    color: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}

.portfolio_section .portfolio_box .btn_wrapper a i {
    font-size: 12px;
    line-height: 12px;
    margin-left: 8px;
}

.portfolio_section .portfolio_image:hover .portfolio_box .btn_wrapper a {
    color: var(--e-global-color-white);
}

.portfolio_section .portfolio_image .portfolio_box .btn_wrapper a:hover {
    color: var(--e-global-color-bright-blue);
}

.portfolio_section .portfolio_image_box {
    background-color: var(--e-global-color-bright-blue);
    position: absolute;
    display: inline-block;
    padding: 0px 14px 2px;
    left: 20px;
    top: 22px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.portfolio_section .portfolio_image:hover .portfolio_image_box {
    background-color: var(--e-global-color-secondary);
}

.portfolio_section .portfolio_image:hover .portfolio_image_box span {
    color: var(--e-global-color-black);
}

.portfolio_section .portfolio_image_box span {
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    display: inline-block;
    color: var(--e-global-color-white);
    letter-spacing: 0.4px;
    transition: all 0.3s ease-in-out;
}

.portfolio_section .portfolio_left_shape {
    top: 285px;
    left: 0;
}

.portfolio_section .portfolio_left_shape img {
    opacity: 0.18;
}

.portfolio_section .owl-theme .owl-nav {
    display: none;
}

.portfolio_section .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 6px !important;
    line-height: 0;
    padding-left: 10px;
}

.portfolio_section .owl-carousel .owl-dots .owl-dot span {
    font-size: 0;
    margin: 0 9px 0 0;
    line-height: 10px;
    height: 5px;
    width: 16px;
    display: block;
    background: #44444c;
    transition: all 0.3s ease-in-out;
}

.portfolio_section .owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--e-global-color-secondary);
}

.portfolio_section .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--e-global-color-secondary);
    width: 22px;
}

.portfolio_section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Home Page Testimonials Section Style */

.testimonials_section {
    padding: 145px 0 150px;
    position: relative;
    background-color: var(--e-global-color-black);
    z-index: 1;
    overflow: hidden;
}

.testimonials_section .testimonials_content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonials_section .testimonials_content h6 {
    color: var(--e-global-color-secondary);
    letter-spacing: 1.1px;
    margin-bottom: 20px;
}

.testimonials_section .testimonials_content h2 {
    color: var(--e-global-color-white);
    margin-bottom: 52px;
}

.testimonials_section .testimonials_box {
    background-image: linear-gradient(-19deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
    width: 100%;
    padding: 42px 15px 42px 35px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.testimonials_section .testimonials_box:hover {
    background-image: linear-gradient(-19deg, var(--e-global-color-bright-blue) 0%, var(--e-global-color-light-blue) 100%);
}

.testimonials_section .testimonials_box .testimonials_paragraph {
    color: var(--e-global-color-text);
    padding-left: 10px;
    transition: all 0.3s ease-in-out;
}

.testimonials_section .testimonials_box:hover .testimonials_paragraph {
    color: var(--e-global-color-light-grayish-blue);
}

.testimonials_section .testimonials_box .testimonial_apostrophy_shape {
    top: 72px;
    right: 48px;
}

.testimonials_section .testimonials_box p span {
    font-family: "Instrument Sans", sans-serif;
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    color: var(--e-global-color-white);
}

.testimonials_section .testimonials_box .testimonials_image {
    margin-bottom: 35px;
}

.testimonials_section .testimonials_box .testimonials_image figure {
    float: left;
}

.testimonials_section .testimonials_box .testimonials_image .testimonials_image_content_wrappper {
    display: inline-block;
    padding-left: 28px;
    padding-top: 22px;
}

.testimonials_section .testimonials_box .testimonials_image .testimonials_image_content_wrappper .person_name {
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: var(--e-global-color-white);
    margin-bottom: 5px;
}

.testimonials_section .testimonials_box .testimonials_image .testimonials_image_content_wrappper .testimonials_text {
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}

.testimonials_section .testimonials_box:hover .testimonials_image .testimonials_image_content_wrappper .testimonials_text {
    color: var(--e-global-color-light-grayish-blue);
}

.testimonials_section .testimonials_background_shape {
    top: 0;
    left: 0;
    z-index: -1;
}

.testimonials_section .testimonials_top_shape {
    top: 0;
    left: 0;
}

.testimonials_section .owl-theme .owl-nav {
    display: none;
}

.testimonials_section .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 62px !important;
    line-height: 0;
    padding-left: 10px;
}

.testimonials_section .owl-carousel .owl-dots .owl-dot span {
    font-size: 0;
    margin: 0 9px 0 0;
    line-height: 10px;
    height: 5px;
    width: 16px;
    display: block;
    background: #44444c;
    transition: all 0.3s ease-in-out;
}

.testimonials_section .owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--e-global-color-secondary);
}

.testimonials_section .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--e-global-color-secondary);
    width: 22px;
}

.testimonials_section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Home Page Combo Section Style */

.combo_section {
    background-color: var(--e-global-color-black);
    padding: 140px 0;
}

/* Home Page Faq's Section Style */

.accordian-section {
    position: relative;
}

.accordian-section .faq_right_shape {
    top: 85px;
    right: 0;
}

.accordian-section .faq_right_shape img {
    opacity: 0.18;
}

.accordian-section .heading {
    text-align: center;
}

.accordian-section .heading h6 {
    color: var(--e-global-color-secondary);
    letter-spacing: 1.1px;
    margin-bottom: 20px;
}

.accordian-section .heading h2 {
    color: var(--e-global-color-primary);
    margin-bottom: 52px;
}

.accordian-section .heading figure {
    left: 0;
    right: 0;
    margin: 0 auto;
}

.accordian-section .accordion-card button.btn.btn-link {
    color: var(--e-global-color-white);
    border-radius: 15px 15px 0 0;
}

.accordian-section .accordian-inner .accordion-card .btn {
    padding: 20px 65px 20px 30px;
    text-decoration: none;
    font-family: "Instrument Sans", sans-serif;
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
}

.accordian-section .accordion-card button.btn.btn-link.collapsed {
    color: var(--e-global-color-white);
    border-radius: 15px;
}

.accordian-section .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    border: none;
    background: none;
}

.accordian-section .accordian-inner .card-body {
    padding: 0px 25px 25px 30px;
}

.accordian-section .accordian-inner .card-body p {
    color: var(--e-global-color-text);
}

.accordian-section .accordion-card button.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}

.accordian-section .accordian-inner .accordion-card {
    margin-bottom: 32px;
    background-image: linear-gradient(33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
    border-radius: 15px;
}

.accordian-section .accordion-card .btn-link:before {
    content: "\f106";
    position: absolute;
    right: 10px;
    top: 16px;
    font-family: 'Font Awesome 6 FREE';
    display: inline-block;
    vertical-align: middle;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    font-size: 16px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 8px;
    text-align: center;
}

.accordian-section .accordion-card .collapsed:before {
    content: "\f105";
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-bright-blue);
    border-radius: 8px;
    text-align: center;
}

.accordian-section .accordian-inner .accordion-card:last-child {
    margin-bottom: 0;
}

/* Home Page Client Logo's Section Style */

.client_logos_section {
    padding-top: 100px;
}

.client_logos_section figure {
    height: 100px;
    line-height: 100px;
}

.client_logos_section figure img {
    transition: all 0.3s ease-in-out;
}

.client_logos_section figure img:hover {
    filter: brightness( 15%) contrast( 0%) saturate( 31%) blur( 0px) hue-rotate( 186deg);
}

.client_logos_section .logo_image2 {
    padding-left: 10px;
}

.client_logos_section .logo_image3 {
    padding-left: 24px;
}

.client_logos_section .logo_image4 {
    padding-left: 14px;
}

.client_logos_section .logo_image5 {
    padding-left: 35px;
}

/* Home Page Get Started Section Style */

.get_started_section {
    padding-top: 205px;
    position: relative;
}

.get_started_section .get_started_box {
    background-color: var(--e-global-color-bright-blue);
    border-radius: 35px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.get_started_section .get_started_box .get_started_box_image {
    position: relative;
}

.get_started_section .get_started_box .get_started_box_image figure {
    position: absolute;
    top: -141px;
    right: -15px;
}

.get_started_section .get_started_box .get_started_box_content {
    padding: 65px 50px;
}

.get_started_section .get_started_box .get_started_box_content h6 {
    letter-spacing: 1.1px;
    margin-bottom: 22px;
    color: var(--e-global-color-white);
}

.get_started_section .get_started_box .get_started_box_content h2 {
    margin-bottom: 45px;
    color: var(--e-global-color-white);
}

.get_started_section .get_started_shape {
    position: absolute;
    top: 130px;
    right: 0;
    left: 460px;
    margin: 0 auto;
    text-align: center;
}

/* Home Page Footer Section Style */

.footer-section {
    position: relative;
    background-color: var(--e-global-color-black);
    /* padding-top: 250px; */
    overflow: hidden;
    /* margin-top: -300px;*/
}

.middle-portion {
    margin-bottom: 82px;
    position: relative;
    z-index: 2;
}

.middle-portion h4 {
    color: var(--text);
    margin-bottom: 24px;
}

.middle-portion .about_col h4 {
    margin-bottom: 18px;
}

.middle-portion .about_col figure {
    margin-bottom: 20px;
    max-width: 200px;
}

.middle-portion .about_col p {
    line-height: 30px;
    margin-bottom: 25px;
    color: var(--e-global-color-text);
}

.middle-portion ul .icons {
    display: inline-block;
}

.middle-portion ul .icons i {
    color: var(--e-global-color-white);
    font-size: 16px;
    margin-right: 8px;
    background-color: var(--e-global-color-dark-blue);
    border-radius: 7px;
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.middle-portion ul .icons i:hover {
    background-color: var(--e-global-color-accent);
}

.middle-portion li a {
    text-decoration: none;
    color: var(--text2);
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    transition: all 0.3s ease-in-out;
}

.middle-portion .links_col {
    margin-left: -15px;
    padding-top: 10px;
}

.middle-portion .links_col ul li {
    margin-bottom: 12px;
    position: relative;
}

.middle-portion .links_col ul li:last-child {
    margin-bottom: 0;
}

.middle-portion .links_col ul li span {
    line-height: 5px;
    height: 5px;
    width: 5px;
    position: absolute;
    top: 10px;
    left: 0;
    display: inline-block;
    background-color: var(--e-global-color-accent);
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
}

.middle-portion .contact_col {
    padding-top: 10px;
}

.middle-portion .contact_col ul .contact_mail {
    margin-bottom: 14px;
}

.middle-portion .contact_col ul li {
    margin-bottom: 16px;
    position: relative;
    display: flex;
}

.middle-portion .contact_col ul li i {
    position: absolute;
    top: 6px;
    left: 0;
    color: var(--blue);
}

.middle-portion .contact_col ul li a {
    padding-left: 30px;
}

.middle-portion .contact_col ul li span {
    line-height: 28px;
    color: var(--blue);
    padding-left: 30px;
    display: block;
    transition: all 0.3s ease-in-out;
}

.middle-portion .contact_col ul li span:hover {
    color: var(--blue);
}

.middle-portion li a:hover {
    color: var(--blue);
}

.middle-portion .footer-info-content {
    padding-top: 10px;
    margin-left: -32px;
}

.middle-portion .footer-info-content input {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    background-color: var(--e-global-color-dark-blue);
    color: var(--e-global-color-text);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
    border: none;
    height: 50px;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 25px;
}

.middle-portion .footer-info-content input::placeholder {
    color: var(--e-global-color-text);
}

.middle-portion .footer-info-content input:focus {
    outline: none;
    box-shadow: none;
    border: none;
    background-color: var(--e-global-color-dark-blue);
    color: var(--e-global-color-text);
}

.middle-portion .footer-info-content .btn {
    position: absolute;
    right: 21px;
    top: 71px;
    font-size: 16px;
    height: 40px;
    width: 42px;
    line-height: 40px;
    padding: 0;
    background-color: var(--e-global-color-bright-blue);
    color: var(--e-global-color-white);
    border-radius: 8px;
    outline: none;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.middle-portion .footer-info-content .btn:hover {
    background-color: var(--e-global-color-accent);
}

.middle-portion .footer-info-content ul li {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.middle-portion .footer-info-content ul li span {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    padding-left: 33px;
    display: block;
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}

.footer-info-content input[type="checkbox"] {
    position: absolute;
    left: 3px;
    top: 0;
    width: auto;
    height: auto;
    margin: 0;
    -webkit-appearance: none;
    padding: 10px;
    border-radius: 5px;
}

.footer-info-content input[type="checkbox"]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 4px;
    height: 10px;
    border: 1px solid var(--e-global-color-dark-blue);
    border-width: 0 2px 2px 0;
    max-width: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.footer-info-content input[type="checkbox"]:checked:before {
    border-color: var(--e-global-color-white);
}

.bottom-portion {
    border-top: 1px solid #202025;
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright {
    padding: 22px 0;
}

.copyright p {
    color: var(--e-global-color-text);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

.footer-section .footer_right_shape figure {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.footer-section .footer_background_shape figure {
    position: absolute;
    top: 0;
    left: 0;
}

/* About Page Style */

/* About Page Banner Section Style */

.sub-banner-section-outer {
    background-color: var(--e-global-color-black);
    overflow: hidden;
}

.sub-banner-section-outer .banner-section {
    padding: 132px 0 120px;
    z-index: 1;
}

.sub-banner-section-outer .banner-section .banner-section-content h1 {
    margin-bottom: 24px;
}

.sub-banner-section-outer .banner-section .banner-section-content p {
    font-family: "Instrument Sans", sans-serif;
    font-size: 22px;
    line-height: 36px;
    font-weight: 400;
    padding-right: 10px;
    margin-bottom: 36px;
}

.sub-banner-section-outer .banner-section .banner-section-content .btn_wrapper {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding: 16px 36px;
    text-align: center;
    border-radius: 10px;
    background-color: var(--e-global-color-mostly-black);
    color: var(--e-global-color-white);
    display: inline-block;
}

.sub-banner-section-outer .banner-section .banner-section-content .btn_wrapper i {
    margin: 0 12px;
    font-size: 14px;
    line-height: 14px;
}

.sub-banner-section-outer .banner-section .banner-section-content .btn_wrapper .sub_span {
    color: var(--e-global-color-accent);
}

.sub-banner-section-outer .banner-section .banner_image {
    margin-top: -70px;
    padding-left: 25px;
    margin-right: -15px;
}

.sub-banner-section-outer .banner-section .banner_image .banner_main_image {
    position: relative;
    z-index: 1;
}

.sub-banner-section-outer .banner-section .banner_image .banner_main_image img {
    border-radius: 45px;
}

.sub-banner-section-outer .banner-section .banner_image .banner_image_bottom_shape {
    bottom: -38px;
    right: -50px;
}

.sub-banner-section-outer .banner-section .banner_image .banner_image_bottom_shape img {
    opacity: 0.35;
}

.sub-banner-section-outer .banner_top_shape {
    top: 0;
    left: 0;
    z-index: 1;
}

.sub-banner-section-outer .banner_background_shape {
    top: 0;
    left: 0;
}

/* About Page About Us Section Style */

.about_aboutus_section {
    background-color: var(--e-global-color-black);
    padding: 140px 0 150px;
}

.about_aboutus_section .aboutus_content {
    text-align: center;
    padding-left: 0;
    padding-top: 0;
}

.about_aboutus_section .aboutus_content h6 {
    color: var(--e-global-color-secondary);
    margin-bottom: 18px;
    letter-spacing: 1.1px;
}

.about_aboutus_section .aboutus_content h2 {
    color: var(--e-global-color-white);
    margin-bottom: 42px;
    padding: 0 125px;
}

.about_aboutus_section .aboutus_content p {
    line-height: 32px;
    padding: 0 135px;
    margin-bottom: 30px;
    color: var(--e-global-color-text);
}

.about_aboutus_section .aboutus_content .btn_wrapper {
    margin-bottom: 80px;
}

.about_aboutus_section .aboutus_content .btn_wrapper .default-btn {
    padding: 8px 8px 8px 42px;
}

.about_aboutus_section .aboutus_content .video_fig {
    position: relative;
    z-index: 1;
}

.about_aboutus_section .aboutus_content .video_fig img {
    border-radius: 35px;
}

.about_aboutus_section .aboutus_content .about_video_background_shape {
    top: -50px;
    left: 0;
}

.about_aboutus_section .aboutus_right_shape {
    top: 302px;
    right: 0;
}

.about_aboutus_section .aboutus_right_shape img {
    opacity: 0.18;
}

/* About Page Mission Vision Section Style */

.mission_vision_section {
    background-color: var(--e-global-color-black);
    padding: 215px 0 240px;
}

.mission_vision_section .mission_vision_box {
    background-image: linear-gradient(33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
    padding: 65px 60px 60px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission_vision_section .mission_vision_box:hover {
    background-image: linear-gradient(-33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
}

.mission_vision_section .mission_vision_box:hover h4 {
    color: var(--e-global-color-secondary);
}

.mission_vision_section .mission_vision_box figure {
    margin-bottom: 32px;
}

.mission_vision_section .mission_vision_box h4 {
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}

.mission_vision_section .mission_vision_box p {
    color: var(--e-global-color-text);
}

.mission_vision_section .mission_vision_background_shape {
    top: -92px;
    right: 275px;
}

.mission_vision_section .mission_vision_left_shape {
    top: 218px;
    left: 0;
}

.mission_vision_section .mission_vision_left_shape img {
    opacity: 0.18;
}

/* About Page Features Section Style */

.feature_section {
    padding: 150px 0 182px;
    background-color: var(--e-global-color-black);
    overflow: hidden;
}

.feature_image {
    position: relative;
    z-index: 1;
}

.feature_image .feature_main_image img {
    border-radius: 35px;
}

.feature_image .feature_second_image {
    bottom: -98px;
    right: -2px;
}

.feature_image .feature_second_image img {
    border-radius: 35px;
    border-top: 10px solid var(--e-global-color-black);
    border-left: 10px solid var(--e-global-color-black);
}

.feature_content {
    position: relative;
    z-index: 1;
    padding-left: 35px;
    padding-top: 30px;
}

.feature_content h6 {
    color: var(--e-global-color-secondary);
    letter-spacing: 1.1px;
    margin-bottom: 20px;
}

.feature_content h2 {
    color: var(--e-global-color-white);
    margin-bottom: 44px;
    font-size: 42px;
}

.feature_content p {
    color: var(--e-global-color-text);
    margin-bottom: 30px;
}

.feature_content ul li {
    position: relative;
    margin-bottom: 26px;
}

.feature_content ul li:last-child {
    margin-bottom: 38px;
}

.feature_content ul li figure {
    float: left;
    padding-top: 8px;
}

.feature_content ul li .feature_content_wrapper {
    display: inline-block;
    padding-left: 15px;
}

.feature_content ul .second_li .feature_content_wrapper {
    padding-left: 25px;
}

.feature_content ul li .feature_content_wrapper .first_p {
    font-family: "Instrument Sans", sans-serif;
    color: var(--e-global-color-white);
    font-weight: 600;
    margin-bottom: 6px;
    transition: all 0.3s ease-in-out;
}

.feature_content ul li .feature_content_wrapper .first_p:hover {
    color: var(--e-global-color-secondary);
}

.feature_content .btn_wrapper .default-btn {
    padding: 8px 8px 8px 42px;
}

.feature_section .feature_background_shape {
    top: 0;
    left: 0;
}

.feature_section .feature_top_shape {
    top: 0;
    right: 0;
}

/* Services Page Style */

/* Services Page Banner Section Style */

.services-banner-section-outer .banner-section .banner-section-content .btn_wrapper {
    padding: 16px 28px;
}

/* Services Page Services Section Style */

.services_service_section {
    padding: 145px 0 110px;
}

.services_service_section .services_box {
    margin-bottom: 30px;
}

/* Projects Page Style */

/* Projects Page Portfolio Section Style */

.projects_portfolio_section {
    padding: 145px 0 110px;
}

.projects_portfolio_section .portfolio_image {
    margin-bottom: 140px;
}

.projects_portfolio_section .portfolio_left_shape {
    top: 570px;
}

/* FAQ's Page Style */

/* FAQ's Page FAQ's Section Style */

.accordian-section .faq_left_shape {
    top: 158px;
    left: 0;
}

.accordian-section .faq_left_shape img {
    opacity: 0.18;
}

/* FAQ's Page Client Logo's Section Style */

.faqs_client_logos_section {
    padding-top: 125px;
}

/* Team Page Style */

/* Team Page Our Staff Section Style */

.team_section {
    padding: 145px 0 120px;
    position: relative;
    background-color: var(--e-global-color-black);
}

.team_section .team_content {
    text-align: center;
}

.team_section .team_content h6 {
    color: var(--e-global-color-secondary);
    letter-spacing: 1.1px;
    margin-bottom: 20px;
}

.team_section .team_content h2 {
    color: var(--e-global-color-white);
    margin-bottom: 52px;
}

.team_section .team_box {
    background-image: linear-gradient(33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
    border-radius: 20px;
    position: relative;
    padding: 20px 20px 35px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.team_section .team_box figure {
    margin-bottom: 26px;
}

.team_section .team_box figure img {
    border-radius: 20px;
}

.team_section .team_box h5 {
    color: var(--e-global-color-white);
    line-height: 24px;
    transition: all 0.3s ease-in-out;
}

.team_section .team_box p {
    color: var(--e-global-color-text);
    margin-bottom: 22px;
}

.team_section .team_box .team_social_icons i {
    color: var(--e-global-color-white);
    font-size: 16px;
    margin-right: 8px;
    background-color: #1d1d28;
    border-radius: 7px;
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.team_section .team_box:hover {
    background-image: linear-gradient(-33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
}

.team_section .team_box:hover h5 {
    color: var(--e-global-color-secondary);
}

.team_section .team_box:hover .team_social_icons i {
    background-color: var(--e-global-color-accent);
}

.team_section .team_box .team_social_icons i:hover {
    background-color: var(--e-global-color-bright-blue);
}

.team_section .team_left_shape img {
    opacity: 0.18;
}

.team_section .team_left_shape {
    top: 555px;
    left: 0;
}

/* Contact Page Style */

/* Contact Page Banner Section Style */

.contact-banner-section-outer .banner-section .banner-section-content .btn_wrapper {
    padding: 16px 22px;
}

/* Contact Page Contact Info Section Style */

.contact_info_section {
    padding: 36px 0 80px;
}

.contact_info_section .contact_info_content {
    margin-top: -10px;
}

.contact_info_section .contact_info_content h6 {
    color: var(--blue);
    letter-spacing: 1.1px;
    margin-bottom: 0;
}

.contact_info_section .contact_info_content h2 {
    color: var(--text3);
    margin-bottom: 52px;
}

.contact_info_section .contact_info_box {
    background: var(--grad4);
    background-color: var(--e-global-color-primary);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    display: flex;
}

.contact_info_section .contact_info_box .contact_info_box_content_wrapper {
    display: inline-block;
    width: 80%;
    padding-left: 28px;
    margin-top: -5px;
}

.contact_info_section .contact_info_box .contact_info_box_content_wrapper h5 {
    color: var(--text3);
    transition: all 0.3s ease-in-out;
}

.contact_info_section .contact_info_box .contact_info_box_content_wrapper p {
    color: var(--e-global-color-text);
    line-height: 28px;
    transition: all 0.3s ease-in-out;
}

.contact_info_section .contact_info_box .contact_info_box_content_wrapper p:hover {
    color: var(--e-global-color-accent);
}

.contact_info_section .contact_info_box .contact_info_box_content_wrapper p a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}

.contact_info_section .contact_info_box .contact_info_box_content_wrapper p a:hover {
    color: var(--e-global-color-accent);
}

.contact_info_section .contact_info_box:hover h5 {
    color: var(--blue);
}

.contact_info_section .contact_info_form_content {
    background-image: linear-gradient(33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
    border-radius: 20px;
    padding: 62px 45px 55px 50px;
    width: 100%;
    text-align: center;
    margin-top: -5px;
}

.contact_info_section .contact_info_form_content h4 {
    font-size: 30px;
    color: var(--e-global-color-white);
    margin-bottom: 38px;
}

.contact_info_section .contact_info_form_content input {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    background-color: #20202c;
    color: var(--e-global-color-text);
    padding: 15px 26px;
    height: 66px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 22px;
    outline: none;
    border: none;
    box-shadow: none;
}

.contact_info_section .contact_info_form_content textarea {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    background-color: #20202c;
    color: var(--e-global-color-text);
    padding: 15px 26px;
    resize: none;
    height: 148px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 32px;
    outline: none;
    border: none;
    box-shadow: none;
    overflow: auto;
}

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

.form-control::placeholder {
    color: var(--e-global-color-text);
}

.contact_info_section .contact_info_form_content button {
    outline: none;
    border: none;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    padding: 8px 8px 8px 38px;
}

.contact_info_section .contact_info_left_shape {
    top: 278px;
    left: 0;
}

.contact_info_section .contact_info_left_shape img {
    opacity: 0.18;
}

/* Contact Page Contact Map Section Style */

.contact_map_section {
    overflow: hidden;
    margin-bottom: -6px;
}

.contact_map_section iframe {
    filter: grayscale(1);
}

.contact_map_section iframe:hover {
    filter: grayscale(0);
}

/* Contact Page Combo Section Section Style */

.contact_combo_section {
    padding: 128px 0 140px;
}

/* Contact Page Client Logo's Section Section Style */

.contact_client_logos_section {
    padding-top: 0;
}

/*==============================
Home Page CSS
================================*/

/* ─── ANIMATIONS ─── */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease
}

.reveal.in {
    opacity: 1;
    transform: translateY(0)
}

.reveal-d1 {
    transition-delay: 0.08s
}

.reveal-d2 {
    transition-delay: 0.16s
}

.reveal-d3 {
    transition-delay: 0.24s
}

/* ─── SHARED SECTION STYLES ─── */

.section {
    padding: 110px 5vw
}

.section-inner {
    max-width: 1140px;
    margin: 0 auto
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.sec-tag-dot {
    width: 5px;
    height: 5px;
    background: var(--blue);
    border-radius: 50%
}

.sec-h {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.07;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.sec-h .g {
    background: var(--grad2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sec-h .gp {
    background: var(--grad1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sec-sub {
    font-size: 17px;
    color: var(--text2);
    max-width: 520px;
    font-weight: 400;
    line-height: 1.7
}

.btn-nav-solid {
    background: var(--grad1);
    border: none;
    border-radius: 9px;
    padding: 9px 20px;
    font-size: 15px !important;
    font-family: 'Instrument Sans', sans-serif;
    cursor: pointer;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(79, 124, 255, 0.3);
    transition: opacity 0.2s, transform 0.2s;
}

.btn-nav-solid i {
    font-size: 13px;
    margin-right: 3px;
}

.btn-nav-solid:hover {
    color: white !important;
    transform: translateY(-1px);
}
header.scrolled{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background-color: hsl(0deg 0% 100% / 70%);
    backdrop-filter: blur(5px);
}
/* ─── HERO ─── */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 5vw 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35
}

.orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #4f7cff, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%)
}

.orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #a78bfa, transparent 70%);
    bottom: 100px;
    right: -100px
}

.orb3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #2dd4bf, transparent 70%);
    bottom: 0;
    left: -50px
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(56, 51, 70, 0.065) 1px, transparent 1px), linear-gradient(90deg, rgba(56, 51, 70, 0.065) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 124, 255, 0.1);
    border: 1px solid rgba(79, 124, 255, 0.3);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease both;
}

.eyebrow-pulse {
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(79, 124, 255, 0.5)
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(79, 124, 255, 0)
    }
}

.hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(46px, 7vw, 90px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 .grad-text {
    background: var(--grad3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--text3);
    max-width: 600px;
    margin: 24px auto 40px;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-hero-primary {
    background: var(--grad1);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 32px;
    font-size: 15.5px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 8px 32px rgba(79, 124, 255, 0.35);
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(79, 124, 255, 0.45)
}

.btn-hero-primary:active {
    transform: scale(0.97)
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--bg3);
    border: 1px solid var(--e-global-color-light-grayish-blue);
    border-radius: 12px;
    padding: 15px 28px;
    font-size: 15.5px;
    font-family: 'Instrument Sans', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(79, 124, 255, 0.45)
}

.hero-footnote {
    font-size: 15px;
    color: var(--text3);
    margin-top: 18px;
    animation: fadeUp 0.7s 0.35s ease both
}

.hero-footnote span {
    color: var(--text2)
}

.hero-visual {
    margin-top: 64px;
    width: min(1140px, 92vw);
    animation: fadeUp 0.9s 0.4s ease both;
    position: relative;
    z-index: 1;
}

.mockup-glow {
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: var(--grad1);
    opacity: 0.25;
    filter: blur(16px);
    z-index: -1;
}

.mockup-wrap {
    border: 1px solid var(--border2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sec-bg-dark {
    background-color: var(--bg) !important;
}

.sec-bg-dark {
    color: var(--text);
}

/* ─── FEATURES ─── */

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px
}

.feat-card {
    background: linear-gradient(33deg, var(--e-global-color-very-dark-black) 0%, var(--e-global-color-very-dark-grayish-blue) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad1);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 124, 255, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(79, 124, 255, 0.15)
}

.feat-card:hover::before {
    opacity: 0.04
}

.feat-card.dark-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1330 100%);
    border-color: rgba(79, 124, 255, 0.2);
}

.feat-card.glow-card {
    background: linear-gradient(135deg, #1a1230 0%, #0f1020 100%);
    border-color: rgba(167, 139, 250, 0.2);
}

.feat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feat-icon-wrap svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.fi-blue {
    background: rgba(79, 124, 255, 0.15)
}

.fi-blue svg {
    stroke: var(--blue2)
}

.fi-teal {
    background: rgba(45, 212, 191, 0.12)
}

.fi-teal svg {
    stroke: var(--teal)
}

.fi-violet {
    background: rgba(167, 139, 250, 0.12)
}

.fi-violet svg {
    stroke: var(--violet)
}

.fi-pink {
    background: rgba(244, 114, 182, 0.12)
}

.fi-pink svg {
    stroke: var(--pink)
}

.fi-amber {
    background: rgba(251, 191, 36, 0.1)
}

.fi-amber svg {
    stroke: var(--amber)
}

.fi-green {
    background: rgba(52, 211, 153, 0.1)
}

.fi-green svg {
    stroke: var(--green)
}

.feat-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 9px;
    color: var(--text)
}

.feat-desc {
    color: var(--text2);
    line-height: 1.7
}

/* ─── HOW IT WORKS ─── */

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 0
}

.step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.25s;
}

.step:first-child {
    padding-top: 0
}

.step:last-child {
    border-bottom: none
}

.step.active .step-num {
    background: var(--grad1);
    color: white;
    box-shadow: 0 4px 20px rgba(79, 124, 255, 0.35)
}

.step.active .step-title {
    color: var(--blue)
}

.step-num {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 11px;
    background: var(--text3);
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    color: var(--text);
    transition: all 0.25s;
}

.step-body {}

.step-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text3);
    margin-bottom: 6px;
    transition: color 0.25s
}

.step-desc {
    color: var(--text3);
    line-height: 1.65
}

.how-visual {
    background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
    border: 1px solid var(--border2);
    border-radius: var(--radius-xl);
    padding: 40px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.how-visual::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 124, 255, 0.2), transparent 70%);
    border-radius: 50%;
}

.how-visual-content {
    text-align: center;
    position: relative;
    z-index: 1
}

.upload-anim {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 124, 255, 0.15), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(79, 124, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.upload-anim::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(79, 124, 255, 0.25);
    animation: spin 8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.upload-anim svg {
    width: 44px;
    height: 44px;
    stroke: var(--blue2);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.how-visual h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px
}

.how-visual p {
    font-size: 13.5px;
    color: var(--text2)
}

/* ─── STATS ─── */

.stats-band {
    padding: 0 5vw 80px;
}

.stats-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.stat-box {
    background: var(--grad4);
    padding: 40px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad1);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-box:hover::before {
    opacity: 1
}

.stat-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 42px;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
    background: var(--grad1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 15px;
    color: var(--text3);
}

/* ─── SECURITY ─── */

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 30px
}

.security-visual {
    background: linear-gradient(135deg, #0d1425, #0a0f1e);
    border: 1px solid var(--border2);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.security-visual::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.15), transparent 70%);
    border-radius: 50%;
}

.shield-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(79, 124, 255, 0.1));
    border: 1px solid rgba(167, 139, 250, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
}

.shield-wrap svg {
    width: 44px;
    height: 44px;
    stroke: var(--violet);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.sec-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px
}

.sec-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border2);
    border-radius: 9px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
}

.security-points {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.sec-point {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.sec-point-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--text3);
}

.sec-point-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.sec-point h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700 !important;
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text3);
}

.sec-point p {
    font-size: 16px;
    color: var(--text3);
    line-height: 1.65
}

/* ─── PRICING ─── */

.pricing-wrap {
    margin-top: 56px
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 44px;
}

.toggle-label {
    font-size: 14px;
    color: var(--text2)
}

.toggle-track {
    width: 46px;
    height: 26px;
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 99px;
    cursor: pointer;
    position: relative;
    transition: background 0.25s;
}

.toggle-track.on {
    background: var(--grad1)
}

.toggle-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.25s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.toggle-track.on .toggle-thumb {
    transform: translateX(20px)
}

.save-badge {
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    border-radius: 99px;
    padding: 3px 10px;
}

/* .plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1140px;
    margin: 0 auto
} */
.section#pricing{
    padding-bottom: 70px;
}
.plan {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    position: relative;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    margin-bottom: 40px;
    width: 100%;
}

.plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3)
}

.plan.featured {
    background: linear-gradient(160deg, #131930 0%, #0d1020 100%);
    border-color: rgba(79, 124, 255, 0.4);
    box-shadow: 0 0 0 1px rgba(79, 124, 255, 0.15), var(--glow);
}

.plan.featured:hover {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3), var(--glow)
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad1);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 99px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(79, 124, 255, 0.4);
}

.plan-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--text2);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em
}

.plan-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 44px;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 14px 0 4px;
    color: var(--text)
}

.plan-price sup {
    font-size: 20px;
    vertical-align: super
}

.plan-price sub {
    font-size: 14px;
    color: var(--text2);
    font-weight: 400
}

.plan-tagline {
    font-size: 15px;
    color: var(--text2);
    margin-bottom: 24px;
    min-height: 38px
}

.plan-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0
}

.plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
    padding: 0;
}

.plan-feats li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 15px;
    color: var(--text2)
}

.pcheck {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.pcheck svg {
    width: 10px;
    height: 10px;
    stroke: var(--green);
    stroke-width: 2.5;
    fill: none
}

.plan-btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 14px 13px;
    border-radius: 11px;
    font-size: 14.5px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    border: 1px solid var(--border2);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.plan-btn.grad {
    background: var(--grad1);
    border: none;
    color: white;
    box-shadow: 0 6px 24px rgba(79, 124, 255, 0.3)
}

.plan-btn:hover {
    opacity: 0.85
}

.plan-btn:active {
    transform: scale(0.98)
}

/* ─── SECURITY ─── */

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 30px
}

.security-visual {
    background: linear-gradient(135deg, #0d1425, #0a0f1e);
    border: 1px solid var(--border2);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.security-visual::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.15), transparent 70%);
    border-radius: 50%;
}

.shield-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(79, 124, 255, 0.1));
    border: 1px solid rgba(167, 139, 250, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
}

.shield-wrap svg {
    width: 44px;
    height: 44px;
    stroke: var(--violet);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.sec-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px
}

.sec-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border2);
    border-radius: 9px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
}

.security-points {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.sec-point {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.sec-point-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-point-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.sec-point h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px
}

.sec-point p {
    font-size: 16px;
    color: var(--text3);
    line-height: 1.65;
}

/* FAQ */

.faq-wrap {
    max-width: 720px;
    margin: 56px auto 0
}

/* ─── CTA BAND ─── */

.cta-band {
    padding: 0 5vw 100px
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #111830 0%, #0d1025 50%, #130d20 100%);
    border: 1px solid rgba(79, 124, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(79, 124, 255, 0.2), transparent 70%);
    pointer-events: none;
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4.5vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    position: relative;
    color: var(--text);
}

.cta-inner h2 .g {
    background: var(--grad3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cta-inner p {
    font-size: 17px;
    color: var(--text2);
    margin-bottom: 38px;
    position: relative
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative
}

.btn-cta {
    background: var(--grad1);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 36px;
    font-size: 16px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(79, 124, 255, 0.35);
    transition: opacity 0.2s, transform 0.2s;
}

.btn-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px)
}

.btn-cta-outline {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 16px;
    font-family: 'Instrument Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1)
}

.cta-trust {
    font-size: 13px;
    color: var(--text3);
    margin-top: 18px;
    margin-bottom: 0 !important;
    position: relative
}

.cta-trust span {
    color: var(--text2)
}

/* ─── RESPONSIVE ─── */

@media(max-width:900px) {
    .nav-links {
        display: none
    }
    .feat-grid {
        grid-template-columns: 1fr 1fr
    }
    .how-grid {
        grid-template-columns: 1fr
    }
    .security-grid {
        grid-template-columns: 1fr
    }
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr)
    }
    .testi-grid {
        grid-template-columns: 1fr
    }
    .plan-grid {
        grid-template-columns: 1fr;
        max-width: 400px
    }
    .footer-top {
        grid-template-columns: 1fr 1fr
    }
    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }
    .fgrid {
        grid-template-columns: repeat(2, 1fr)
    }
    .mock-side {
        display: none
    }
}

@media(max-width:600px) {
    .feat-grid {
        grid-template-columns: 1fr
    }
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .footer-top {
        grid-template-columns: 1fr
    }
}