:root {
    --background-Bleck: #000;
    --text-color-Bleck: #000;
    --text-color-white: #fff;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: "Oleo Script",
        serif !important; */
}

body {
    margin: 0px;
    padding: 0px;
    color: var(--text-color-white);
    font-family: "Oleo Script", serif;
    /* cursor: none; */
}

h1,
h2,
h3,
h5,
h4,
h6,
p,
small,
span,
input,
strong {
    font-family: "Oleo Script",
        serif;
}


li {
    list-style: none;
    padding: 0;
}

a {
    color: var(--text-color-white);
    text-decoration: none;
}

button:focus {
    outline: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

select::-ms-expand {
    display: none;
}

label {
    font-weight: normal;
}

iframe {
    width: 100%;
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;

}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: transparent;
    top: 0;
    left: 0;
}

.preloader .loader {
    position: absolute;
    top: 43%;
    left: 0;
    right: 0;
    transform: translateY(-43%);
    text-align: center;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.preloader .loader .box {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right bottom, #ffc0cb, #ee9eb5, #da7ca4, #c35b96, #a93a8b, #9f298f, #921794, #81009a, #7d00b0, #7100c8, #5900e3, #0000ff);
    animation: animate 0.5s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
}

.preloader .loader .shadow {
    width: 100%;
    height: 5px;
    background: #000;
    opacity: 0.1;
    position: absolute;
    top: 59px;
    left: 0;
    border-radius: 50%;
    animation: shadow 0.5s linear infinite;
}

.preloader::before,
.preloader::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: -1;
    background: #fff;
    transition: 0.9s;
}

.preloader::after {
    left: auto;
    right: 0;
}

.preloader.preloader-deactivate {
    visibility: hidden;
}

.preloader.preloader-deactivate::after,
.preloader.preloader-deactivate::before {
    width: 0;
}

.preloader.preloader-deactivate .loader {
    opacity: 0;
    visibility: hidden;
}

@keyframes loader {
    0% {
        left: -100px;
    }

    100% {
        left: 110%;
    }
}

@keyframes animate {
    17% {
        border-bottom-right-radius: 3px;
    }

    25% {
        transform: translateY(9px) rotate(22.5deg);
    }

    50% {
        transform: translateY(18px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 40px;
    }

    75% {
        transform: translateY(9px) rotate(67.5deg);
    }

    100% {
        transform: translateY(0) rotate(90deg);
        -webkit-transform: translateY(0) rotate(90deg);
        -moz-transform: translateY(0) rotate(90deg);
        -ms-transform: translateY(0) rotate(90deg);
        -o-transform: translateY(0) rotate(90deg);
    }
}

@keyframes shadow {
    50% {
        transform: scale(1.2, 1);
    }
}

/* ============= and  */

/* Ball Cursor Styles */
.ball-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #1d3e83;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* header */
.headder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

header {
    background: #00000045;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

header.scrolled {
    background-image: linear-gradient(to right bottom, #ffc0cb, #ee9eb5, #da7ca4, #c35b96, #a93a8b, #932979, #7d1767, #680155, #52073b, #3a0c26, #220a15, #000000);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

header.scrolled .header_nav ul li a {
    color: #fff;
}

.header_nav ul li button.Button_main {
    padding: 4px 26px;
}

.header_logo img {
    width: 120px;
}

.header_nav ul li {
    display: inline-block;
    padding: 0 8px;
}

.header_nav ul {
    padding: 0;
    margin: 0;
}

.header_nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    position: relative;
}



.header_nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease-in-out;
}

.header_nav ul li a:hover::after {
    width: 100%;
    left: 0;
}

/* ==== button ==== */
.Button_main {
    position: relative;
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.05em;
    border-radius: 0.8em;
    cursor: pointer;
    border: none;
    background: rgb(43, 137, 138);
    background: linear-gradient(339deg, rgba(43, 137, 138, 1) 0%, rgba(29, 62, 131, 1) 61%);
    color: ghostwhite;
    overflow: hidden;
    width: 100%;
    padding: 6px 0px;
}

.Button_main svg {
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
}

.Button_main span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.Button_main::before,
.Button_main::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.Button_main::before {
    content: "";
    background-image: linear-gradient(to right bottom, #ffc0cb, #ee9eb5, #da7ca4, #c35b96, #a93a8b, #9f298f, #921794, #81009a, #7d00b0, #7100c8, #5900e3, #0000ff);
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.Button_main:hover::before {
    transform: translate3d(100%, 0, 0);
}

.Button_main:active {
    transform: scale(0.95);
}

.ge_buuuon {
    /* display: flex; */
    align-items: center;
    height: 50%;
    display: flex;
}

.ge_buuuon .Button_main::before {
    background: rgb(128, 0, 128);
    background: linear-gradient(284deg, rgba(128, 0, 128, 1) 23%, rgba(255, 192, 203, 1) 74%);
}

/* =========== baneer ======= */
.baneer_3d_anim {
    position: relative;
}

section.grid_anim_card {
    margin-top: 0px;
    margin-bottom: 30px;
}

.banner_img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_grid_main_img {
    width: 100%;
    height: 145px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.home_six_3d_text h3 {
    color: #fff;
    font-size: 27px;
    font-weight: 800;
}

.home_grid_main_img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.home_grid_main_img:hover img {
    transform: scale(1.1);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.home_grid_main_img {
    position: relative;
}

.home_six_3d_img:hover .home_grid_main_img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000040;
}

section.grid_anim_card {
    background: #121010;
    padding: 66px 0;
}

.footer_secont {
    text-align: center;
    background-color: #1c1f3a;
    /* margin-top: 30px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 20px;
}

.footer_secont p {
    margin: 0;
    color:#fff;
}

/* ============= innr img === */

.bannr_home_innr {
    max-width: 100%;
    height: 100%;
}

.innr_img_lag {
    position: relative;
    overflow: hidden;
    /* height: 400px; */
    height: auto;
    margin-bottom: 18px;
}


.bannr_home_innr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ineer_details {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: 99;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.innr_img_lag:hover .ineer_details {
    opacity: 1;
    transition: all .3s ease-in-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.innr_img_lag:hover:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0000005d;
    top: 0;
    left: 0;
    background-color: rgba(1, 1, 1, .5);
    background: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);

    /* -webkit-transform: scale(2.5) translateX(-90%) translateY(-90%) translateZ(0px) rotate(-45deg); */
    transform: scale(2.5) translateX(-90%) translateY(-90%) translateZ(0px) rotate(-45deg);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    z-index: 10;
}

.innr_img_lag:hover:after {
    -webkit-transform: scale(2.5) rotate(-45deg) translateZ(0px);
    transform: scale(2.5) rotate(-45deg) translateZ(0px);
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.innr_img_lag:after {
    content: '';
    background-color: rgba(1, 1, 1, .5);
    background: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    -webkit-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1);
    height: 20%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* -webkit-transform: scale(2.5) translateX(-90%) translateY(-90%) translateZ(0px) rotate(-45deg); */
    transform: scale(2.5) translateX(-90%) translateY(-90%) translateZ(0px) rotate(-45deg);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    z-index: 10;

}

.ineer_details {
    opacity: 0;
    -webkit-transform: translateY(-90%);
    transform: translateY(-90%);
}

.ineer_details_top {
    width: 100%;
}

.ineer_details_bottom {
    width: 100%;
}

.ineer_details_hover_box {
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 30px 25px;
}

.ineer_details_top p {
    font-size: 14px;
    color: #000000a6;
}

.ineer_details_top {
    padding: 30px 35px;
}

.ineer_details_top strong {
    display: block;
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--text-color-white);
}

.Quick_play_neenr a {
    text-decoration: none;
}

.Quick_play_neenr span {
    font-size: 20px;
    margin-right: 10px;
    color: var(--text-color-white);
}

.Quick_play_neenr i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--text-color-white);
}

.Quick_play_neenr a {
    display: flex;
    align-items: center;
}

.video_inner_pad video {
    background-size: cover;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: none;
    width: 100%;

    visibility: visible;
    opacity: 1;
    width: auto;
    height: auto;
}

.video_inner_pad {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}


.innr_img_lag:hover .video_inner_pad {
    opacity: 1;
    visibility: visible;
}

.uk-lightbox {
    background: #000000b4 !important;
}

.grid_la_oute_box {
    display: block;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.card_slider_video_box {
    height: 275px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    overflow: hidden;
}

.card_slider_video_box {
    height: 275px;
    width: 100%;
    border-radius: 12px;
}

.card_slider_video_box video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 10px 0;
    overflow: hidden;
    margin-bottom: 15px;
}

.section_heding {
    margin-bottom: 35px;
    text-align: center;
    position: relative;
}

.section_heding h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 24px;
    position: relative;
    color: #B75EDE;
    text-transform: capitalize;
}

.section_heding .line_after_title {
    color: #B75EDE;
}

.section_heding .line_after_title:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    margin-left: -7px;
    bottom: -12px;
    border-style: solid;
    border-width: 0 7px 7px 7px;
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
}

.line_after_title:after {
    content: ' ';
    display: block;
    position: absolute;
    height: 1px;
    bottom: -14px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 80px;
    border-style: solid;
    border-width: 3px 0 0 0;
}

.section_heding a {
    background-image: linear-gradient(to right bottom, #ffc0cb, #ee9eb5, #da7ca4, #c35b96, #a93a8b, #9f298f, #921794, #81009a, #7d00b0, #7100c8, #5900e3, #0000ff);
    padding: 3px 28px;
    border-radius: 10px;
    font-weight: 200;
    font-size: 16px;
}

.card_slider_home {
    padding-top: 50px;
}

.card_slider_home button.Button_main {
    width: min-content;
    padding: 6px 18px;
}

.card_slider_home .owl-dots {
    display: none !important;
}

.card_slider_home span {
    color: #fff;
}

.card_slider_home span {
    /* color: #fff;
    width: 30px;
    display: block;
    background-image: linear-gradient(to right bottom, #ffc0cb, #ee9eb5, #da7ca4, #c35b96, #a93a8b, #9f298f, #921794, #81009a, #7d00b0, #7100c8, #5900e3, #0000ff);
    border-radius: 50%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px; */
}

.card_slider_home .owl-nav {
    position: absolute;
    top: -67px;
    right: 11px;
}

/* ===================== About page =========== */

.about_cont_box_text {
    color: #000;
}

.about_cont_box_video {
    width: 100%;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.about_cont_box_video video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: fill;
}

.about_cont_box_text h1 {
    font-size: 25px;
    color: #000;
    margin-bottom: 14px;
}

.about_cont_box_text p {
    font-size: 16px;
    color: #333;
}

.about_cont_box_text ul {
    /* padding: 0; */
    margin: 0;
}

.about_cont_box_text li {
    font-size: 16px;
    color: #333;
    padding: 5px 0;
    list-style: disc;
}

.about_cont_box {
    padding: 40px 0;
    padding-top: 25px;
}

.about_heading h1 {
    text-align: center;
    margin-bottom: 23px;
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
    font-size: 30px;
}

/* ===============  */
.our_process_box {
    color: #000;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin: 10px 0;
    padding: 12px;
    border-radius: 10px;
    height: 100%;
    
}

.our_process_box:hover .icons_our_process svg {
    transform: perspective(500px) translate3d(0px, 0, 100px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.our_process_box:hover {
    background-color: #fff;
    background-image: url(https://www.transparenttextures.com/patterns/cloth-alike.png);

}

.icons_our_process svg {
    width: 24px;
    border: 1px solid rgb(0, 0, 0);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 6px;
    background-color: #fff;
}

.icons_our_process {
    position: relative;
    bottom: 30px;
}

.our_process_box h1 {
    font-size: 22px;
    font-weight: 700;
    color: #B75EDE;
}

.icons_our_process svg path {
    fill: #B75EDE;
}

.our_process_box p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.our_process {
    margin: 40px 0;
}

.what_we_do_home {
    padding-top: 50px;
}

.whaT_we_do video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.social_media_footer ul li {
    display: inline-block;
    margin: 0 5px;
    transition: 0.5 ease-in-out;
}

.social_media_footer ul li a {
    border: 1px solid #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.5 ease-in-out;
}
.social_media_footer ul li a i {
    color:#fff;
}

.social_media_footer ul li a:hover {
    color: #3ebba1;
    border: 1px solid #3ebba1;
    box-shadow: rgba(255, 255, 255, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.social_media_footer ul {
    margin: 0;
    padding: 0;
    margin-bottom: 0px;
}

.footer_box_new {
    width: 100%;
    height: 100%;
}

.footer_box_new .footer_log a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer_box_new .footer_log img {
    width: 75%;
}

.home_form_input .input-group label {
    color: #000;
    font-size: 16px;
    margin-bottom: 1x;
}

.home_form_input .input-group label small {
    color: red;
}

.home_form_input .input-group {
    margin-bottom: 10px;
}

.home_form_input_box {
    display: flex;
    justify-content: space-between;
}

.home_form_input .input-group input,
.home_form_input .input-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid #eeeff5;
    background: #f6f7fc;
    border-radius: 30px !important;
    font-size: 18px;
    color: #797979;
    padding: 10px 30px;
    transition: all 500ms ease;
}

.home_form_input .input-group textarea {
    height: 100px;
    border-radius: 12px !important;
}

.home_form_input {
    width: 60%;
    margin: 0px auto;

}

.home_form_input .home_six_3d_img {
    width: max-content;
}

.form_home_sECTION {
    margin-top: 30px;
    margin-bottom: 40px;
}

.home_form_input_box .input-group {
    width: 48%;
}

.home_form_input .home_six_3d_img {
    width: max-content;
    margin: 0 auto;
    margin-top: 21px;
}

.home_form_input .home_six_3d_img button.Button_main {
    padding: 4px 74px;
}

.responsive_header {
    display: none;
}

footer {
    padding: 60px 20px;
    background: linear-gradient(135deg, #e3f2fd, #e0eafc);
    background-image: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
    background-blend-mode: overlay;
    color: #000;
}

.footer_box_new h2 {
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 26px;
    position: relative;
}

.footer_box_new h2::after {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 40px;
    height: 2px;
    left: 0;
    background: linear-gradient(284deg, rgba(128, 0, 128, 1) 23%, rgba(255, 192, 203, 1) 74%);
    border-radius: 66%;
}

.footer_box_new ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_box_new li {
    padding-bottom: 8px;
}

.footer_box_new li a {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease-in;
}

.footer_box_new li a:hover {
    color:#A8388C;
    transform: scaleY(10px);
}

.footer_box_new ul li i {
    font-size: 15px;
    width: 18px;
    color: #A8388C;
}


/* ---signup page css------- */
.login-signup {
    padding: 10px;
}

.login-signup .card1 {
    display: flex;
    flex-direction: row;
    width: 80%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background: white;
    margin:  auto;
}

.login-signup .card1 .left-panel {
    flex: 1;
    background: linear-gradient(339deg, rgba(43, 137, 138, 1) 0%, rgba(29, 62, 131, 1) 61%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-signup .card1 .right-panel {
    flex: 1;
    background: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
}

.login-signup .btn-custom {
    background: linear-gradient(135deg, #2bc0e4, #29b6f6);
    color: white;
    border-radius: 50px;
    width: 100%;
}

.login-signup .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.login-signup .custom-link {
    color: gray;
    font-weight: bold;
    text-decoration: none;
}

.login-signup .custom-link:hover {
    color: #9451f8 !important;
    /* Color on hover */
    text-decoration: underline;
}

.login-signup .left-panel .btn-left-panel {
    position: relative;
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.05em;
    border-radius: 0.8em;
    cursor: pointer;
    border: none;
    background: rgb(43, 137, 138);
    background: linear-gradient(339deg, rgba(43, 137, 138, 1) 0%, rgba(29, 62, 131, 1) 61%);
    color: ghostwhite;
    overflow: hidden;
    width: 50%;
    padding: 6px 0px;
}

.login-signup .left-panel .btn-left-panel a:hover {
    text-decoration: none;
    color: #fff;
}

/* ----------pricing.html page css----------------- */

    .pricing-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 50px;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }
    .pricing-plan {
        background: white;
        color: darkcyan;
        padding: 0px;
        border-radius: 15px;
        max-width: 350px;
        width: 100%;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        text-align: center;
        
    }
    .pricing-plan:hover {
        transform: translateY(-10px);
    }
    .pricing-plan h2 {
        margin-bottom: 10px;
        font-weight: 600;
        color: light ;
    }
        /* Pricing Section */
    .pricing-plan .pricing-content {
        margin: 20px 0;
        text-align: center;
    }

    .pricing-plan .pricing-content .old-price {
        font-size: 16px;
        color: gray;
        text-decoration: line-through;
    }

    .pricing-plan .pricing-content .new-price {
        font-size: 38px;
        font-weight: bold;
        color : gray;
    }

    .pricing-plan .pricing-content .price-label {
        font-size: 16px;
        color: gray ;
        text-align: center; 
    }
  
    .pricing-plan .features {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
    }
    .pricing-plan .features li {
        margin: 6px 0;
        border-bottom: 1px solid rgb(0 0 0 / 10%);
        padding-bottom: 7px;
        color: darkgray;
    }
    .pricing-plan .features li::before {
        content: '\2713';
        left: 0;
        color: gray;
        font-size: 22px;
        font-weight: bold;
        margin-right: 10px;
    }
    .pricing-plan .pricing-button {
        display: inline-block;
        padding: 12px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.3s ease;
    }
    .pricing-plan .pricing-button { 
        background-image: linear-gradient(to right bottom, #ffc0cb, #ee9eb5, #da7ca4, #c35b96, #a93a8b, #9f298f, #921794, #81009a, #7d00b0, #7100c8, #5900e3, #0000ff);
        color: whitesmoke; 
    }
    /* .pricing-plan .pricing-button:hover { 
        background:  rgba(29, 62, 131, 1) 61%;
        color: whitesmoke;    ; 
    } */
    .price_button_now {
        width: 50%;
        border-radius: 12px!important;
        margin-bottom: 20px;
    }

    .heading_heading{
        background-color: #54595F;
        color: white;
        padding: 10px;
        margin: 0   ;
        overflow: hidden;
        
    }
    .heading_heading h2{
        margin-top: 20px;
    }
    .popular-badge {
        position: absolute;
    top: 20px;
    right: -40px;
    background-color: #e74c3c; /* Red for Popular */
    color: #fff;
    padding: 5px 0;
    width: 200px;
    text-align: center;
    transform: rotate(45deg);
    font-size: 14px;
    }

/* ----------profile.html page css----------------- */

.sidebar {
    width: 280px;
    background: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    top: 0;
    left: 0;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.sidebar .sidebar-profile {
  
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;

}

.sidebar .sidebar-profile img {
    width: 60px;
    height: auto;
    border-radius: 50%;
        display: flex;
    margin: auto;
}

.sidebar .sidebar-profile h3 {
    font-size: 22px;
    color: #000;
    font-style: italic;
   
    margin-top: 17px;
      text-align: center;
          width: 100%;
}

.sidebar .sidebar-menu {
    margin-top: 20px;
}

.sidebar .sidebar-menu h4 {
    font-size: 14px;
    color: #878787;
    margin-bottom: 10px;
    font-weight: bold;
}

.sidebar .sidebar-menu-item {
    align-items: center;
    padding: 12px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.sidebar .sidebar-menu-item i {
    font-size: 18px;
    width: 30px;
    color: #2874F0;
}

.sidebar .sidebar-menu-item:hover .sidebar-menu-item.active {
    background: #f5f5f5;
    font-weight: bold;
}

/* Main Content */
.profile-page{
    display: flex;
}
.profile-page-content {
    padding: 20px;
}

.profile-page-content h1 {
    font-size: 24px;
    font-weight: bold;
}

.profile_page-output{
    position: relative;
    color: #000;
    text-align: center;
    width: 100%;
}
.profile-grid{
    display: flex;
    margin-bottom: 30px;
    display: flex;
}
/*.profile-page-content > section {*/
/*    display: none;*/
    
/*}*/
.profile-page-content > section.active {
    display: block;
    
}
.video_box{
    display: flex;
    flex-wrap: wrap;

 
}
.video_box .order_video_box{
    width: 31%;
    margin: 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px;
    border-radius: 12px;
    overflow: hidden;
}
.video_box_heading h2 {
    margin: 2px;
    font-size: 20px;
    padding: 6px 0;
}

/* -------------------Profile page / profile css----------------- */

.profile-form-container {
    width: 100%;
    margin: 20px;  
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.profile-form-container h2{
    text-decoration: underline;
        margin-bottom: 20px;
}
.profile-form-group {
    padding: 10px;
    display: block;
    text-align: left;
}
.profile-form-group label {
    font-weight: bold;  
    /* width: 100%; */
    font-size: 20px;
    display: block ;
    margin-bottom: 3px;
    font-size: 14px;
}
.profile-form-group input{
    height: 40px;
    width: 100%;
    padding:0px 10px;
    color: #000;
    font-size: 14px;
    /* text-align: center; */
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: none;
}
.profile-form-container .Button_main{
    width: auto;
    padding: 3px 20px;
}


.upload-container {
    width: 200px;
    height: 200px;
    border: 2px dashed #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    text-align: center;
    position: relative;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    margin:auto;
}
.upload-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*display: none;*/
}
.upload-container p {
    color: #666;
    font-size: 14px;
}

.upload-container input {
    display: none;
}

/* .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border: none;
    margin: 0px;
    padding: 0px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid white;

} */


.sidebar-menu .sidebar-menu-item i{
    color: #000;
}

/* -------------------checkout page css start----------------------------*/


.checkout-form-container {
    width: 100%;
    margin: 20px;  
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.checkout-form-container h2{
    text-decoration: underline;
    color: #000;
}
.checkout-form-group {
    padding: 10px;
    display: block;
    text-align: left;
}
.checkout-form-group label {
    font-weight: bold;  
    /* width: 100%; */
    font-size: 20px;
    display: block ;
    margin-bottom: 3px;
    font-size: 14px;
}
.checkout-form-group input{
    height: 40px;
    width: 50%;
    padding:0px 10px;
    color: #000;
    font-size: 14px;
    /* text-align: center; */
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: none;
}
.checkout-form-container .Button_main{
    width: auto;
    padding: 3px 30px;
}



.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    display: inline-block;
    margin: 0 5px;
    transition: 0.5 ease-in-out;
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.5 ease-in-out;
    color: white;
    background: black;
    border: 2px solid black;
   
    
}


/* =======================contact form page css============================================ */

.container-fluid {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
}

.contact-info {
    background-color: #2e5e5e;
    color: white;
    padding: 40px;
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-info p i {
    margin-right: 10px;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 1.2rem;
    text-decoration: none;
}

.form-section {
    padding: 40px;
    background-color: white;
}

.form-section h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2e5e5e;
}

.form-control {
    border: none;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-bottom: 1px solid #2e5e5e;
}

textarea.form-control {
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.btn-send {
    background-color: #2e5e5e;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    width: 100%;
}

.btn-send:hover {
    background-color: #245050;
}

/* ==================questionare page css start============================= */
.questionare_header {
    width: 100%;
}
.questionare_header .container_questionare {
    padding: 20px;
    margin: 20px 300px 20px auto;
    width: 60%;
    border: 1px solid #ddd;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #dddddd64;
}

.questionare_header .progress {
    display: flex;
    justify-content: center;
    padding: 20px;
    padding-bottom: 50px ;
}
.questionare_header .indicator {
    width: 30px;
    height: 30px;
    margin: 5px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.questionare_header .active {
    color: black;
}

.questionare_header .question {
    display: none;
    font-size: 20px;
    margin-top: 25px;
    padding: 33px;
    color: black;
}

.questionare_header .question.active {
    display: block;
}

.questionare_header .options {
    list-style: none;
    padding: 0;
}

.questionare_header .options li {
    margin: 10px 0;
    text-align: left;
}


.questionare_header .other_box{
    border: none;
    outline: none;
    border-bottom: 1px solid black;
    width: 100%;
    background-color: transparent;

}
.questionare_header .other_box1{
    border: none;
    outline: none;
    border-bottom: 1px solid black;
    width: 80%;
    background-color: transparent;

}

.questionare_header .pricing-button {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}
.questionare_header .pricing-button { 
    background-image: linear-gradient(to right bottom, #ffc0cb, #ee9eb5, #da7ca4, #c35b96, #a93a8b, #9f298f, #921794, #81009a, #7d00b0, #7100c8, #5900e3, #0000ff);
    color: whitesmoke; 
}
.questionare_header .price_button_now {
    width: 10%;
    border-radius: 4px!important;
    margin-left: 20px;
    border: none;
}

/* =========================forgot-container============================ */
.forgot-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.forgot-container h3{
    color: black;
}
.forgot-container p{
    color: black;
}

.forgot-container .btn-custom {
    color: white;
}

.forgot-container .custom-link:hover {
    text-decoration: underline;
}
.forgot-container .custom-link {
    color: #6c5ce7;
}
/* ========================uploading videos=============================== */
 .uploading_videos {
    margin: 15px 30px;
    padding: 20px;
    text-align: -webkit-center;
} 
.uploading_videos .upload-area {
    border: 2px dashed #007bff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    background-color: #f8f9fa;
    width: 40%;
    margin-left: 255px;
}
.uploading_videos .upload-area:hover {
    background-color: #e9ecef;
}
.uploading_videos .btn-upload-videos{
    width: 30%;
}
.uploading_videos .file-list {
    margin-top: 10px;
    font-size: 14px;
    margin-bottom: 10px;
} 
.uploading_videos .comment-section {
    margin: 30px auto;
    max-width: 100%;
    padding: 20px;
    background: white;
    border-radius: 10px;
    width: 100%;
    text-align: justify;
}
.uploading_videos .btn-send-videos{
    width: 15%;
    float: right;
}

/* ========================================================================== */

.left-panel-videos {
    flex: 1;
    background:white;
    padding: 20px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.left-panel-videos video{
    border: 1px solid black;
    border-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.right-panel-videos {
    flex: 1;
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: black;
}
.right-panel-videos h5{
    font-size: 28px;
    margin-bottom: 10px;
}
.right-panel-videos h4{
    color: #000;
}
.right-panel-videos ul li{
    font-weight: 400;
    color: #000;
}
.card_header{
    margin-bottom: 30px;
}
.Button_main_Order_confirmation{
    padding: 8px;
    width: 20%;
    margin: 0 10px;
}


.Order_confirmation_header {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 15px 0 15px 0;
}
.Order_confirmation_header .confirmation-box h2{
    color: #000;
}
.Order_confirmation_header .confirmation-box {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.Order_confirmation_header .check-icon {
    width: 80px;
    height: 80px;
    background-color:green;
    /* Orange background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    position: relative;
}

.Order_confirmation_header .check-icon::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.3) 0%, rgba(255, 152, 0, 0) 70%);
    /* Glowing effect */
    border-radius: 50%;
    z-index: -1;
}

.Order_confirmation_header .check-icon svg {
    fill: white;
    width: 40px;
    height: 40px;
}

.Order_confirmation_header .text-content {
    margin-bottom: 30px;
}

.Order_confirmation_header .text-content h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.Order_confirmation_header .text-content p {
    color: #6c757d;
    /* Gray text */
}

.Order_confirmation_header .btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.button_main_order_confirmation {
    color: #FFE;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 20px;
    width: auto;
}
.button_main_order_confirmation:hover{
    color: white;
}
.row.row_first_process1 {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 60px;
}
.row.row_first_process2 {
    display: flex;
    justify-content: center;
}

.privacy_policy_header {
    padding: 60px;
    margin-top: 50px;
}

  .click_here_link span a{
      color:white;
  }  
    
    
    
    
    