/* modern-upgrade.css - MERGED VERSION */
/* Combined: main.css + modern-upgrade.css */
/* Version: 2.0 | Date: 2024 */
/* Professional Fullstack Developer Portfolio */

/* ========================================== */
/* PART 1: BASE STYLES (from main.css) */
/* ========================================== */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: .5rem;
    font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 500;
    line-height: 1.2;
    color: #fff
}

.text-500 {
    color: #b6b9c0 !important
}

a.text-500:focus,
a.text-500:hover {
    color: #8d929d !important
}

.menu-item,
.menu-list {
    list-style-type: none !important;
    padding-left: 0px;
    text-decoration: none;
    margin-bottom: 15px;
    color: #9397a1;
    text-align: left;
}

.menu-link {
    color: #a1a5af;
}

.nav-item {
    padding-left: 0px;
}

.list-unstyled,
li,
a {
    text-decoration: none !important;
}

.hover-cardgroup {
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-radius: 12px
}

.hover-cardgroup:focus,
.hover-cardgroup:hover {
    background-color: #fff !important;
    -webkit-box-shadow: 0 5px 24px rgba(255, 255, 255, .32);
    box-shadow: 0 5px 24px rgba(255, 255, 255, .32)
}

.hover-cardgroup:focus .title,
.hover-cardgroup:hover .title {
    color: #1b1e33 !important
}

.hover-cardgroup:focus .subtitle,
.hover-cardgroup:hover .subtitle {
    color: #414450
}

.bg-extra-1 {
    background-color: #1b1e33 !important
}

a.bg-extra-1:focus,
a.bg-extra-1:hover,
button.bg-extra-1:focus,
button.bg-extra-1:hover {
    background-color: #090a12 !important
}

.mr-xl-4,
.mx-xl-4 {
    margin-right: 1.8rem !important
}

.mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.8rem !important
}



.mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important
}

.text-white {
    color: #fff !important;
    line-height: 1.4;
}

a.text-white:focus,
a.text-white:hover {
    color: #d9d9d9 !important
}

.bg-holder {
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    will-change: transform, opacity, filter;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-repeat: no-repeat;
    z-index: 0;
}

.text-info {
    color: #4aaff9 !important
}

a.text-info:focus,
a.text-info:hover {
    color: #088def !important
}

svg:not(:root).svg-inline--fa {
    overflow: visible;
}

.svg-inline--fa.fa-w-14 {
    width: .875em;
}

.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}

/*======================================
1. HOW iT WORK
======================================*/
.step-number-block {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.step-number-block:hover {
    z-index: 1;
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.step-number {
    position: absolute;
    right: 24px;
    top: 0px;
    font-size: 72px;
    font-weight: 800;
    color: #e2e2e2;
}

.step-number.active {
    color: #3a4452;
}

/*-------------------------------------
	2. scroll top btn css
-------------------------------------*/
button.scroltop {
    height: 90px;
    width: 90px;
    background: transparent !important;
    border: 0;
    position: fixed;
    right: 10px;
    bottom: 100px;
    font-size: 11px;
    line-height: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    cursor: pointer;
    display: none;
    outline: none;
    text-align: center;
    z-index: 999;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

button.scroltop span {
    display: block;
    font-size: 24px;
    line-height: 24px;
}

.string {
    position: relative;
}

#btn-vibrate {
    animation: vibrate 2s linear 0s infinite;
    -moz-animation: vibrate 2s linear 0s infinite;
    /* Firefox */
    -webkit-animation: vibrate 2s linear 0s infinite;
    /* Safari and Chrome */
    -o-animation: vibrate 2s linear 0s infinite;
    /* Opera */
}

@keyframes vibrate {
    0% {
        top: 0px;
    }

    25% {
        top: -3px;
    }

    50% {
        top: 0px;
    }

    75% {
        top: 3px;
    }

    100% {
        top: 0px;
    }
}

/* Firefox */
@-moz-keyframes vibrate {
    0% {
        top: 0px;
    }

    25% {
        top: -3px;
    }

    50% {
        top: 0px;
    }

    75% {
        top: 3px;
    }

    100% {
        top: 0px;
    }
}

/* Safari and Chrome */
@-webkit-keyframes vibrate {
    0% {
        top: 0px;
    }

    25% {
        top: -3px;
    }

    50% {
        top: 0px;
    }

    75% {
        top: 3px;
    }

    100% {
        top: 0px;
    }
}

/* Opera */
@-o-keyframes vibrate {
    0% {
        top: 0px;
    }

    25% {
        top: -3px;
    }

    50% {
        top: 0px;
    }

    75% {
        top: 3px;
    }

    100% {
        top: 0px;
    }
}

@media only screen and (max-width: 480px) {
    button.scroltop {
        font-size: 7px;
        height: 30px;
        width: 30px;
        line-height: 16px;
    }

    button.scroltop span {
        font-size: 20px;
        line-height: 10px;
    }

    .arrow {
        position: relative !important;
        bottom: 0;
        left: 50%;
        margin-left: -20px;
        width: 40px;
        height: 60px;
    }

    .badgescard {
        text-align: left;
    }

    .bounce-arrow {
        bottom: 0px !important;
    }

    .mockup-display {
        margin-bottom: 0% !important;
    }

    .section-B {
        margin-top: 30px;
    }
}

/* #LOADING-SECTION */
.preloader {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 99999;
    background-color: #ffffff;
    overflow: hidden;
}

.signal {
    border: 5px solid #ffb400;
    border-radius: 30px;
    height: 30px;
    left: 50%;
    margin: -15px 0 0 -15px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 30px;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/*-------------------------------------
	3. Loading
-------------------------------------*/
#overlayer {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 7100;
    background: #000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.loader {
    z-index: 7700;
    position: fixed;
    top: 50%;
    left: 48%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

*,
html {
    margin: 0;
    padding: 0
}

body {
    background: #000;
    text-align: center;
}

.loadsvg {
    width: 70px;
    height: 70px;
    margin: 20px;
    display: inline-block;
}

.bg-succ {
    background-color: #0a09095c;
}

.bg-succ:hover {
    background-color: #088def;
}

.quotes {
    display: none;
    font-size: 15px;
    font-weight: lighter;
    color: #088def;
}

.starks {
    text-align: center;
}

.stark-content {
    display: inline-block;
}

/* ==========  DOWN BOUNCE ARROW =========== */
@-moz-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

i {
    display: block;
    color: rgb(255, 255, 255);
}

.arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
    width: 40px;
    height: 60px;
    /*change with size of arrow to make sit on bottom */
    /*   background-image: url(); */
    /*   background-size: contain; */
}

.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

/* ----- close modal botton  */
.close-btn {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    position: relative;
    top: -5px !important;
    left: 25px !important;
}

/* ============ SCROLL UP ELEMENT ============ */
/* Scroll function element */
.scroll {
    position: fixed;
    bottom: 125px;
    right: 25px;
    width: 70px;
    height: 70px;
    border: none;
    transition: all 150ms ease;
    transform: scale(0);
    outline: none;
    cursor: pointer;
    background-color: transparent;
}

.scroll:focus {
    outline: none;
}

.fa-sort-up {
    color: #088def;
    margin-top: 15px;
}

.scroll:hover .fa-sort-up {
    animation: jump 800ms infinite;
}

/* ===== tele == */
.telegram-api- {
    position: fixed;
    bottom: 9.5px;
    left: 15px;
    width: 70px;
    height: 70px;
    border: none;
    transition: all 150ms ease;
    transform: scale(0);
    outline: none;
    cursor: pointer;
    z-index: 9999;
    /* Ensure it's above the modal */
    background-color: transparent;
}

.telegram-api-:focus {
    outline: none;
}

.fa-sort-up {
    color: #088def;
    margin-top: 15px;
}

.telegram-api-:hover .fa-sort-up {
    animation: jump 800ms infinite;
}

@keyframes jump {
    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* End scroll function element */
@media screen and (max-width: 1300px) {
    .container {
        width: 100%;
    }

    .container h1 {
        font-size: 26px !important;
        margin-top: 87px;
    }

    .fa-sort-up {
        animation: jump 800ms infinite;
    }

    .nav-resume {
        position: relative;
        left: 20%;
    }
}

@media screen and (max-width: 1024px) {
    .nav-resume {
        position: relative;
        left: 15%;
    }
}

/* =================== */
/* ====================== */
html,
body,
header,
.view {
    height: 100%;
}

/* ------ Preview app section ----- */
/* FIXED: Removed problematic video positioning */
.video-container .img_reviewApp {
    /* FIXED: Removed position: relative!important; */
    /* FIXED: Removed left: 100%!important; */
    /* FIXED: Removed top: 50px!important; */
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.top-nav-collapse {
    background: #000 !important;
}

.navbar:not(.top-nav-collapse) {
    background: #000 !important;
}

@media (min-width: 961px) {
    .star {
        font-size: 45px !important;
        color: #ffd700 !important;
    }
}

@media (max-width: 991px) {
    .navbar:not(.top-nav-collapse) {
        background: #000 !important;
    }
}

.rgba-gradient {
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.7),
            rgba(72, 15, 144, 0.4) 100%);
}

.card {
    background-color: transparent;
}

.md-form label {
    color: #ffffff;
}

h6 {
    line-height: 1.7;
}

@media (min-width: 1025px) {
    .navleft {
        margin-left: 8%;
    }

    .star {
        font-size: 45px !important;
        color: #ffd700 !important;
    }
}

@media (min-width: 600px) {
    .star {
        font-size: 20px !important;
        color: #ffd700 !important;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
    .star {
        font-size: 28px !important;
        color: #ffd700 !important;
    }
}

/* ----- modal popup up section ----- */
.no-scroll {
    overflow: hidden;
    height: 100%;
}

.login-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1099;
    /* background-color: #151515a6; */
    background-color: rgba(0, 0, 0, 0.6);
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease;
}

.login-popup.show {
    visibility: visible;
    opacity: 1;
}

.login-popup .box {
    background-color: transparent;
    width: 500px;
    position: absolute;
    left: 29%;
    top: 15%;
    /* transform: translate(-50%,-50%); */
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    padding: 12px 15px 12px 9px;
    margin-left: 50px;
    border-radius: 3px;
    /* transition: all 1s ease; */
}

.login-popup.show .box {
    opacity: 1;
    margin-left: 0;
}

.login-popup .box .img-area {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-popup .box .img-area h1 {
    font-size: 30px;
}

.login-popup .box .img-area .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    animation: zoomInOut 7s linear infinite;
    z-index: -1;
}

@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.login-popup .box .form {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px 30px;
}

.login-popup .box .form h1 {
    color: #000000;
    font-size: 30px;
    margin: 0 0 30px;
}

.login-popup .box .form .form-control {
    height: 45px;
    margin-bottom: 30px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #cccccc;
    font-size: 15px;
    color: #000000;
}

.login-popup .box .form .form-control:focus {
    outline: none;
}

.login-popup .box .form label {
    font-size: 15px;
    color: #555555;
}

.login-popup .box .form .bton {
    width: 100%;
    background-color: #E91E63;
    margin-top: 40px;
    height: 45px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
}

.login-popup .box .form .bton:focus {
    outline: none;
}

.social_connect_container {
    text-align: center;
}

ul.social-menu {
    padding-left: 0%;
    text-align: center;
}

ul.social-menu>li {
    display: inline-block;
    padding: 10px 20px;
}

.carder-info {
    width: 103% !important;
    left: -2px;
    top: -75px;
    height: 530px;
}

.btn-closed {
    padding: 0px 6px 1px 6px;
    border-radius: 100px;
    position: relative;
    top: -73px !important;
    left: 10px !important;
    background-color: transparent;
    margin-bottom: 5px;
}

.skill-info {
    font-weight: 400;
    font-size: 15px;
    color: #000;
}

.Starks h6 {
    text-align: left;
    font-weight: 900;
    color: #000;
    padding-left: 40px;
}

.connect_with_me h4 {
    text-align: center;
    font-weight: 900;
    color: #000;
}

.social_connect_container {
    text-align: center;
}

ul.stark-menu {
    padding-left: 0%;
    text-align: center;
}

ul.stark-menu>li {
    display: inline-block;
    padding: 10px 10px;
}

ul.social-menu {
    padding-left: 0%;
    text-align: center;
}

ul.social-menu>li {
    display: inline-block;
    padding: 10px 20px;
}

@media only screen and (max-width: 480px) {
    .login-popup .box {
        top: 20%;
        max-width: 100%;
        left: 0% !important;
    }

    .carder-info {
        width: 103% !important;
        left: -2px;
        top: -75px;
        height: 530px;
    }

    .btn-closed {
        padding: 0px 6px 1px 6px;
        border-radius: 100px;
        position: relative;
        top: -73px !important;
        left: 10px !important;
        background-color: transparent !important;
        margin-bottom: 5px;
    }

    .skill-info {
        font-weight: 400;
        font-size: 15px;
        color: #000;
    }

    .Starks h6 {
        text-align: left;
        font-weight: 900;
        color: #000;
        padding-left: 40px;
    }

    .connect_with_me h4 {
        text-align: center;
        font-weight: 900;
        color: #000;
    }

    .social_connect_container {
        text-align: center;
    }

    ul.stark-menu {
        padding-left: 0%;
        text-align: center;
    }

    ul.stark-menu>li {
        display: inline-block;
        padding: 10px 10px;
    }

    ul.social-menu {
        padding-left: 0%;
        text-align: center;
    }

    ul.social-menu>li {
        display: inline-block;
        padding: 10px 20px;
    }
}

span {
    display: inline-block;
}

div span {

    letter-spacing: 2px;
    font-weight: bold !important;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif !important;
}

.brand span {
    font-size: 50px !important;
    letter-spacing: 2px;
    font-weight: bold !important;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif !important; 
}

.div2 span {
    font-size: 50px !important;
    /* letter-spacing: 2px; */
    font-weight: bold !important;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif !important;
}

/* ----- header Nav bar section 1 ----- */
header {
    background-color: #020202;
}

li {
    list-style: none;
}

.nav-link a {
    color: #fff;
    text-decoration: none;
}

.navbar {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 0px !important;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.nav-branding {
    font-size: 1rem;
}

.nav-link {
    transition: 0.7s ease;
}

.nav-link:hover {
    color: dodgerblue;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-animation: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

.treatment-methods__icons {
    display: flex;
    margin-top: 12px;
}

.treatment-method__icon__container {
    margin: -8px;
    height: 100px;
    padding-left: 10px;
}

.logotext {
    color: #000 !important;
}

.textcolor {
    color: #000 !important;
}

.treatment-method__icon__outer_circle {
    background-color: rgb(247, 247, 255);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    padding: 7px;
}

.treatment-methods_icon {
    /* vertical-align: middle; */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
}

@media screen and (max-width: 656px) {
    ul .header-social {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 1136px) {
    ul .header-social {
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
        height: 88px;
        margin-bottom: 24px;
    }
}

ul .header-social .header-social-ln {
    background: url("./img/all-social/linkedin.svg");
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

@media screen and (max-width: 656px) {
    ul .header-social a {
        margin-left: 28px;
        margin-right: 28px;
    }
}

@media screen and (max-width: 1136px) {
    ul .header-social a {
        margin: 0px;
        margin-right: 0px;
        margin-left: 0px;
        margin-left: 40px;
        margin-right: 40px;
    }
}

ul .header-social a {
    margin-left: 24px;
    display: flex;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-width: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-decoration: none;
}

ul .header-social .header-social-twitter.light {
    background: url("./img/all-social/twitter_dark.svg");
}

ul .header-social .header-social-bh {
    background: url("./img/all-social/behance.svg");
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

ul .header-social .header-social-ig {
    background: url("./img/all-social/instagram.svg");
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

ul .header-social {
    display: flex;
}

.firstinfo,
.badgescard,
body {
    /* display:inline-block; */
    justify-content: left;
    align-items: left;
}

.nav-resume {
    position: relative;
    left: 0%;
}

.more-update,
.moreupdate {
    text-align: left;
    color: #4aaff9;
}

.designtoolinfo {
    text-align: left;
}

ul.stark-menu {
    padding-left: 0%;
    text-align: center;
}

.connect_with_me h4 {
    text-align: center;
    font-weight: 900;
    color: #000;
}

.design_content_descriptive {
    text-align: left !important;
}

.contenting {
    position: relative;
    -webkit-animation: animatop 0.9s cubic-bezier(0.425, 1.14, 0.47, 1.125) forwards;
    animation: animatop 0.9s cubic-bezier(0.425, 1.14, 0.47, 1.125) forwards;
}

/* ========= fix card:before issue ======== */
/* Fix the Carder::before pseudo-element to not cover the image */
.Carder::before {
    z-index: 1; /* Keep it behind the image */
}

.large_Profile_img_container {
    position: relative;
    z-index: 2; /* Make sure image is above the ::before */
}

.large_Profile_img {
    position: relative;
    z-index: 3; /* Ensure image is on top */
}

.profileinfo {
    position: relative;
    z-index: 4; /* Ensure text and icons are on top */
}

/* Fix SVG icon display */
.treatment-method__icon__outer_circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(247, 247, 255) !important;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    padding: 5px !important;
}

.treatment-methods_icon {
    width: 40px !important;
    height: 40px !important;
    display: block;
}

/* Ensure SVG icons are properly sized */
.treatment-methods_icon svg {
    width: 100%;
    height: 100%;
}

/* Hover effects */
.treatment-method__icon__outer_circle:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
    background-color: #f0f8ff !important;
}

.Carder {
    width: 430px;
    height: 180px;
    border-radius: 3px;
    background-color: transparent;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.carder-info {
    width: 430px;
    height: 400px;
    border-radius: 3px;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 20%);
    position: relative;
    overflow: hidden;
    margin-bottom: 33px;
}

.Carder::before {
    content: "";
    display: block;
    width: 190px;
    height: 300px;
    background: #0277bd;
    position: absolute;
    -webkit-animation: rotatemagic 0.75s cubic-bezier(0.425, 1.04, 0.47, 1.105) 1s both;
    animation: rotatemagic 0.75s cubic-bezier(0.425, 1.04, 0.47, 1.105) 1s both;
}

.badgescard {
    padding: 10px 20px;
    border-radius: 3px;
    background-color: #0000;
    width: 480px;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 20%);
    position: absolute;
    z-index: -1;
    left: 10px;
    bottom: 10px;
    animation: animainfos 0.5s cubic-bezier(0.425, 1.04, 0.47, 1.105) 0.75s forwards;
}

.firstinfo,
.badgescard,
body {
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.profile-first-info .sam {
    border-radius: 50%;
    width: 120px;
    height: 120px;
}

.large_Profile_img_container .large_Profile_img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
}

.large_Profile_img_container .profileinfo {
    padding: 0px 0px 0px;
    position: relative;
    left: 130px;
    bottom: 100px;
}

.large_Profile_img_container .profileinfo h1 {
    font-size: 1.8em;
}

.profile-first-info .profile-info h1 {
    font-size: 1.8em;
}

.skill-info {
    font-weight: 400;
    font-size: 13px;
    color: #000;
}

.userinfo {
    font-weight: 500;
}

.user-info {
    font-weight: 500;
    margin: 1px 30px 0px 42px;
}

.firstinfo .profileinfo h3 {
    font-size: 1.2em;
    color: #e7fffb;
    font-style: normal;
}

.profile-first-info .profile-info h3 {
    font-size: 1.2em;
    color: #e7fffb;
    font-style: normal;
}

.firstinfo .profileinfo p.bio {
    padding: 10px 0px;
    color: #5A5A5A;
    line-height: 1.2;
    font-style: initial;
}

.profile-first-info .profile-info p.bio {
    padding: 11px 25px 10px 30px;
    color: #040404;
    line-height: 1.5;
    font-style: normal;
    font-weight: bolder;
}

@-webkit-keyframes animatop {
    0% {
        opacity: 0;
        bottom: -500px;
    }

    100% {
        opacity: 1;
        bottom: 0px;
    }
}

@keyframes animatop {
    0% {
        opacity: 0;
        bottom: -500px;
    }

    100% {
        opacity: 1;
        bottom: 0px;
    }
}

@-webkit-keyframes animainfos {
    0% {
        bottom: 10px;
    }

    100% {
        bottom: -42px;
    }
}

@keyframes animainfos {
    0% {
        bottom: 10px;
    }

    100% {
        bottom: -42px;
    }
}

@-webkit-keyframes rotatemagic {
    0% {
        opacity: 0;
        transform: rotate(0deg);
        top: -24px;
        left: -253px;
    }

    100% {
        transform: rotate(-30deg);
        top: -24px;
        left: -78px;
    }
}

@keyframes rotatemagic {
    0% {
        opacity: 0;
        transform: rotate(0deg);
        top: -24px;
        left: -253px;
    }

    100% {
        transform: rotate(-30deg);
        top: -24px;
        left: -78px;
    }
}

/* ------ Thumbnail auto slider section ------ */
.team-love .swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

/* ----- Mobile media query  ---- */
@media (max-width: 740px) {

    html,
    body,
    header,
    .view {
        height: 1188px;
    }

    @media (min-width: 800px) and (max-width: 850px) {

        html,
        body,
        header,
        .view {
            height: 650px;
        }
    }

    /* FIXED: Removed problematic video positioning for mobile */
    .video-container .img_reviewApp {
        /* FIXED: Removed min-width: 50% */
        /* FIXED: Removed min-height: 50% */
        /* FIXED: Removed position: relative */
        /* FIXED: Removed left: 66% !important */
        /* FIXED: Removed top: 100px !important */
        /* FIXED: Removed margin-bottom: 140px */
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
}

@media(max-width:768px) {
    .treatment-method__icon__container {
        margin: -11px !important;
    }

    .treatment-methods__icons {
        display: flex;
        flex-wrap: wrap;
        margin: 13px 0px 0px -2px !important;
        margin: -8px;
        height: 100px;
        padding: 0px;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

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

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        height: 600px;
    }

    .nav-link a:hover {
        color: #0277bd !important;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-resume {
        position: relative;
        left: 2% !important;
        bottom: 50px;
    }

    ul .header-social {
        position: relative !important;
        left: 5% !important;
    }

    .user-info {
        font-weight: 500;
        margin: 1px 30px 0px 42px;
        font-size: initial !important;
    }

    /* ======= Profile Card ========= */
    .skillinfo {
        font-size: 1vw;
        /* Responsive font size based on viewport width */
        text-align: left;
        word-wrap: break-word;
        /* Ensures long text will wrap */
        white-space: normal;
        /* Allows the text to wrap normally */
    }

    /* Media query for tablets (screen width 768px or smaller) */
    @media (max-width: 768px) {
        .skillinfo {
            font-size: 3.5vw;
            /* Increases font size slightly for readability */
        }
    }

    /* Media query for mobile devices (screen width 480px or smaller) */
    @media (max-width: 480px) {
        .skillinfo {
            font-size: 2.5vw;
            text-align: center;
            /* Optional: centers the text on mobile screens */
        }
    }

    /* =================== */
    .nav-item a:hover {
        color: dodgerblue !important;
    }

    .loader {
        z-index: 7700;
        position: fixed;
        top: 49%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
}

@media(max-width:375px) {
    .modal-pop {
        left: 0% !important;
    }
}

/* ----- footer section ----- */
.fotterhover:hover {
    border-bottom: 1px solid white !important;
    color: gray;
}

/* ============================= */
/*=====================
	Premery bg color
=====================*/
::selection {
    background: #FF9800;
}

::-moz-selection {
    background: #FF9800;
}

::-webkit-selection {
    background: #FF9800;
}

/* Premery bg Hex color*/
.pricing-tab-content-block .wt-tabs.vertical .nav-tabs li.active a,
.circle-effect-1::after,
.special-offer-outer::after,
.testimonial-5 .testimonial-pic::after,
.noTrespassingBarLineG,
.cssload-cupcakeCircle,
.bg-primary,
.site-button,
ol.list-num-count>li::before,
.wt-separator-two[class*="style-"]::after,
.wt-separator-two[class*="style-"]::before,
.masonry-filter.outline-style.customize>li.active a,
.masonry-filter.outline-style.customize>li:hover a,
.masonry-filter.button-style>li.active a,
.masonry-filter.button-style>li a:hover,
.masonry-filter.button-style>li a:active,
.masonry-filter.button-style>li a:focus,
.date-style-3 .post-date i,
.date-style-3.date-skew .post-date i,
.date-style-3.date-skew .post-date i::after,
.testimonial-1 .quote-left::before,
.testimonial-grid-1 .quote-left::before,
.testimonial-4 .testimonial-detail,
.testimonial-grid-4 .testimonial-detail,
.testimonial-4 .testimonial-detail::after,
.testimonial-grid-4 .testimonial-detail::before,
.wt-team-four .wt-team-skew-block .social-icons-outer::after,
.acc-bg-primary a,
.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus,
.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus,
.custom-pagination.pagination>li>a:focus,
.custom-pagination.pagination>li>a:hover,
.custom-pagination.pagination>li>span:focus,
.custom-pagination.pagination>li>span:hover,
.wt-nav-pills li:hover a,
.custom-pagination.pagination>.active>a,
.custom-pagination.pagination>.active>span,
.custom-pagination.pagination>.active>a:hover,
.custom-pagination.pagination>.active>span:hover,
.custom-pagination.pagination>.active>a:focus,
.custom-pagination.pagination>.active>span:focus,
.call-to-action-skew .call-to-action-left::after,
.widget-title::after,
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span,
.social-icons.social-square.social-primary a,
.social-icons.social-radius.social-primary a,
.social-icons.social-square.social-darkest a:hover,
.social-icons.social-radius.social-darkest a:hover,
.wt-tabs.border-top .nav-tabs>li.active>a::after,
.faq-block .faq-que::after,
.faq-block .faq-ans::after,
.animate_line:hover::after,
.animate_line:hover::before,
.about-com-pic::after,
.date-style-2 .post-date,
.custom-page.pager li>a:focus,
.custom-page.pager li>a:hover,
.pricingtable-price,
.pricing-table-style-2 .pricingtable-title,
.widget_calendar table tbody td#today,
.loader span,
.our-pricing-carousel .item.active-arrow,
.pricing-tab-content-block .wt-tabs.bg-tabs .nav-tabs>li:hover>a,
.widget_categories li span.badge,
.widget_archive ul li span.badge,
.widget_calendar thead,
.widget_getintuch i,
.testimonial-5 .testimonial-pic-block.radius-bx .testimonial-pic:after,
.testimonial-grid-5 .testimonial-pic-block.radius-bx .testimonial-pic:after,
.overlay-icon a:hover,
.testimonial-2 .testimonial-detail,
.testimonial-grid-2 .testimonial-detail,
.masonry-filter.button-style.has-bg>li.active a,
.masonry-filter.button-style.has-bg>li a:hover,
.searchform input[type="submit"] {
    background-color: #FF9800;
}

/* Premery hex buttons bg color*/
.site-button {
    background-color: #FF9800;
}

.site-button:hover,
.site-button:focus,
.site-button:active {
    background-color: #F28B0F;
}

/* other hex buttons bg color*/
.searchform input[type="submit"] {
    background-color: #FF9800;
}

.searchform input[type="submit"]:hover,
.searchform input[type="submit"]:focus,
.searchform input[type="submit"]:active {
    background-color: #FF9800;
}

/* Premery Rgba color*/
.wt-info-has.bg-primary {
    background-color: rgba(255, 152, 0, 0.9);
}

/*=====================
	Premery text color
=====================*/
/* Premery text Hex color*/
a,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.text-primary,
ul.primary li::before,
button.scroltop,
.wt-breadcrumb li a,
.header-nav .nav>li:hover>a,
.header-nav .nav>li .sub-menu li a:hover,
.header-nav .nav>li .sub-menu li:hover>a,
.header-nav .nav>li .mega-menu>li ul a:hover,
.header-nav .nav>li.active>a,
.header-nav .nav>li.current-menu-item>a,
.header-nav .nav li.has-child.nav-active>a,
.header-style-3 .is-fixed .header-nav .nav>li:hover>a,
.header-style-3 .is-fixed .header-nav .nav>li.active>a,
.header-style-3 .is-fixed .header-nav .nav>li.current-menu-item>a,
.header-style-5 .is-fixed .header-nav .nav>li:hover>a,
.header-style-5 .is-fixed .header-nav .nav>li.active>a,
.header-style-5 .is-fixed .header-nav .nav>li.current-menu-item>a,
.nav-dark.header-nav .nav>li .mega-menu>li ul a:hover,
.date-style-3 .post-date strong,
.status-value span,
.rating-bx,
.testimonial-1 .testimonial-position,
.testimonial-grid-1 .testimonial-position,
.testimonial-2 .testimonial-text .fa-quote-left,
.testimonial-grid-2 .testimonial-text .fa-quote-left,
.testimonial-3 .testimonial-position,
.testimonial-grid-3 .testimonial-position,
.testimonial-3 .quote-left::before,
.testimonial-grid-3 .quote-left::before,
.testimonial-4 .testimonial-detail .fa-quote-left,
.testimonial-grid-4 .testimonial-detail .fa-quote-left,
ol.comment-list li.comment .reply a,
.masonry-filter>li.active a,
.masonry-filter>li a:hover,
.masonry-filter>li a:active,
.masonry-filter>li a:focus,
.masonry-filter.link-style.white>li.active a,
.masonry-filter.link-style.white>li a:hover,
.masonry-filter.link-style.white>li a:active,
.masonry-filter.link-style.white>li a:focus,
.masonry-filter.outline-style>li.active a,
.masonry-filter.outline-style>li a:hover,
.masonry-filter.outline-style>li a:active,
.masonry-filter.outline-style>li a:focus,
.widget_categories ul li a:hover,
.widget_archive ul li a:hover,
.widget_meta ul li a:hover,
.widget_pages ul li a:hover,
.widget_recent_comments ul li a:hover,
.widget_nav_menu li a:hover,
.widget_recent_entries ul li a:hover,
.widget_services ul li a:hover,
.footer-dark .footer-top a:active,
.footer-dark .footer-top a:focus,
.footer-dark .footer-top a:hover,
.masonry-filter.link-style.has-bg>li.active a,
.masonry-filter.outline-style.has-bg>li.active a,
.masonry-filter.link-style.has-bg>li:hover a,
.masonry-filter.outline-style.has-bg>li a:hover,
.social-icons.social-light.has-bg li a:hover,
.social-icons.social-dark.has-bg li a:hover {
    color: #FF9800;
}

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

    .bg-primary .header-nav .nav>li:hover>a,
    .bg-primary .header-nav .nav>li.active>a,
    .bg-primary .header-nav .nav>li.current-menu-item>a {
        color: #FF9800;
    }
}

/*=====================
	Premery border color
=====================*/
/* Premery Hex border color*/
.masonry-filter.outline-style.customize>li.active a,
.latest-blog-1 .wt-post-media,
button.scroltop,
.bdr-primary,
input[type=radio]:checked+label:before,
input[type=checkbox]:checked+label:before,
input[type=checkbox]+label:hover:before,
input[type=radio]+label:hover:before,
.testimonial-4 .testimonial-pic::after,
.testimonial-4 .testimonial-pic,
.testimonial-grid-4 .testimonial-pic,
.masonry-filter.outline-style.customize>li.active a,
.masonry-filter.outline-style.customize>li:hover a,
.masonry-filter.outline-style>li.active a,
.masonry-filter.outline-style>li a:hover,
.masonry-filter.outline-style>li a:active,
.masonry-filter.outline-style>li a:focus,
.social-icons.social-square.social-dark.has-bg a:hover,
.social-icons.social-radius.social-dark.has-bg a:hover,
.about-com-pic:after,
.pricing-table-style-4 .pricingtable-inner,
.masonry-filter.outline-style.has-bg>li.active a,
.masonry-filter.outline-style.has-bg>li a:hover,
ol.list-num-count.list-outline>li::before,
.testimonial-4 .testimonial-pic:after,
.testimonial-grid-4 .testimonial-pic:after,
.date-style-3 .wt-post-media {
    border-color: #FF9800;
}

.our-pricing-carousel .item.active-arrow:after {
    border-top: 18px solid #FF9800;
}

/*=====================
	Secondery bg hex color
 =====================*/
/* Secondery hex buttons bg color*/
.site-button-secondry {
    background-color: #171f2c;
}

.site-button-secondry:hover,
.site-button-secondry:focus,
.site-button-secondry:active {
    background-color: #333B48;
}

/* Secondery hex text color*/
.text-secondry {
    color: #373329;
}

/* Secondery hex background color*/
.bg-secondry {
    background-color: #171f2c;
}

/* ===============
================ */
@import 'https://fonts.googleapis.com/css?family=Open+Sans:300,400';

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* =======================--------- */
/* CARD PROFILE DESCRIPTION SECION 
/* ============================== */
.contenting {
    position: relative;
    -webkit-animation: animatop 0.9s cubic-bezier(0.425, 1.14, 0.47, 1.125) forwards;
    animation: animatop 0.9s cubic-bezier(0.425, 1.14, 0.47, 1.125) forwards;
}

.firstinfo,
.badgescard,
body {
    /* display:inline-block; */
    justify-content: left;
    align-items: left;
}

.Carder {
    width: 430px;
    height: 180px;
    border-radius: 3px;
    background-color: transparent;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.carder-info {
    width: 430px;
    height: 400px;
    border-radius: 3px;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 20%);
    position: relative;
    overflow: hidden;
    margin-bottom: 33px;
}

.Carder::before {
    content: "";
    display: block;
    width: 190px;
    height: 300px;
    background: #0277bd;
    position: absolute;
    -webkit-animation: rotatemagic 0.75s cubic-bezier(0.425, 1.04, 0.47, 1.105) 1s both;
    animation: rotatemagic 0.75s cubic-bezier(0.425, 1.04, 0.47, 1.105) 1s both;
}

.badgescard {
    padding: 10px 20px;
    border-radius: 3px;
    background-color: #0000;
    width: 480px;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 20%);
    position: absolute;
    z-index: -1;
    left: 10px;
    bottom: 10px;
    animation: animainfos 0.5s cubic-bezier(0.425, 1.04, 0.47, 1.105) 0.75s forwards;
}

.firstinfo,
.badgescard,
body {
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.profile-first-info .sam {
    border-radius: 50%;
    width: 120px;
    height: 120px;
}

.firstinfo img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
}

.firstinfo .profileinfo {
    padding: 0px 0px 0px;
    position: relative;
    left: 130px;
    bottom: 100px;
}

.firstinfo .profileinfo h1 {
    font-size: 1.8em;
}

.profile-first-info .profile-info h1 {
    font-size: 1.8em;
}

.skill-info {
    font-weight: 400;
    font-size: 13px;
    color: #000;
}

.skillinfo {
    font-weight: 100;
    font-size: 13px;
}

.userinfo {
    font-weight: 500;
}

.user-info {
    font-weight: 500;
    margin: 1px 30px 0px 42px;
}

.firstinfo .profileinfo h3 {
    font-size: 1.2em;
    color: #e7fffb;
    font-style: normal;
}

.profile-first-info .profile-info h3 {
    font-size: 1.2em;
    color: #e7fffb;
    font-style: normal;
}

.firstinfo .profileinfo p.bio {
    padding: 10px 0px;
    color: #5A5A5A;
    line-height: 1.2;
    font-style: initial;
}

.profile-first-info .profile-info p.bio {
    padding: 11px 25px 10px 30px;
    color: #040404;
    line-height: 1.5;
    font-style: initial;
}

@-webkit-keyframes animatop {
    0% {
        opacity: 0;
        bottom: -500px;
    }

    100% {
        opacity: 1;
        bottom: 0px;
    }
}

@keyframes animatop {
    0% {
        opacity: 0;
        bottom: -500px;
    }

    100% {
        opacity: 1;
        bottom: 0px;
    }
}

@-webkit-keyframes animainfos {
    0% {
        bottom: 10px;
    }

    100% {
        bottom: -42px;
    }
}

@keyframes animainfos {
    0% {
        bottom: 10px;
    }

    100% {
        bottom: -42px;
    }
}

@-webkit-keyframes rotatemagic {
    0% {
        opacity: 0;
        transform: rotate(0deg);
        top: -24px;
        left: -253px;
    }

    100% {
        transform: rotate(-30deg);
        top: -24px;
        left: -78px;
    }
}

@keyframes rotatemagic {
    0% {
        opacity: 0;
        transform: rotate(0deg);
        top: -24px;
        left: -253px;
    }

    100% {
        transform: rotate(-30deg);
        top: -24px;
        left: -78px;
    }
}

/* =======================--------- */
/* HEADER NAV SECION
/* ============================== */
header {
    background-color: #020202;
}

li {
    list-style: none;
}

.navbar-light .navbar-brand {
    color: #fff !important;
}

a {
    color: #fff;
    text-decoration: none;
}

.navbar {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    margin: 0px 15px 0px auto !important;
}

.nav-branding {
    font-size: 1rem;
}

.nav-link:hover {
    color: dodgerblue;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-animation: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #000;
}

/* ========== IPAD MEDIA  ========= */
@media(max-width:768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

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

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }

    /* .nav-item{
        margin: 50px 0;
    } */
    .nav-menu.active {
        left: 0;
    }

    .nav-resume {
        position: relative;
        left: 0% !important;
    }

    .skillinfo {
        font-weight: 300;
        font-size: 14px;
    }

    .user-info {
        font-weight: 500;
        margin: 1px 30px 0px 42px;
        font-size: initial !important;
    }

    .nav-item a {
        color: #e7fffb !important;
    }

    .nav-item a:hover {
        color: dodgerblue !important;
    }

    .loader {
        z-index: 7700;
        position: fixed;
        top: 49%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
}

@media(max-width:375px) {
    .modal-pop {
        left: 0% !important;
    }
}

/* ========================================== */
/* PART 2: MODERN ENHANCEMENTS (from modern-upgrade.css) */
/* ========================================== */

:root {
    /* Modern color scheme that complements your existing #0b0d1b */
    --primary-tech: #2563eb;
    --primary-dark: #1e40af;
    --cyber-accent: #2563eb;
    --web3-purple: #8b5cf6;
    --consultant-teal: #06b6d4;
    --dark-background: #0b0d1b;
    --dark-card: #1e293b;
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
}

/* ==================== */
/* 1. PERFORMANCE & SMOOTHNESS */
/* ==================== */
* {
    scroll-behavior: smooth;
}

/* Optimize animation performance */
.hover-cardgroup,
.step-number-block,
.Carder,
.btn {
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

/* ==================== */
/* 2. NAVBAR PROFESSIONAL UPGRADE */
/* ==================== */
.navbar.scrolling-navbar {
    backdrop-filter: blur(12px) saturate(180%);
    background: rgba(38, 41, 59, 0.92) !important;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolling-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logotext span {
    transition: all 0.3s ease;
}

.logotext:hover span:nth-child(1) {
    color: var(--primary-tech);
}

.logotext:hover span:nth-child(2) {
    color: var(--cyber-accent);
}

.logotext:hover span:nth-child(3) {
    color: var(--web3-purple);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1.2rem !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-tech), var(--cyber-accent));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
}

/* Professional download button */
.btn.bookhover {
    background: linear-gradient(135deg, var(--primary-tech), var(--web3-purple));
    border: none;
    border-radius: 8px;
    padding: 10px 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    /* font-size: 12px!important; */
}

.btn.bookhover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.7s ease;
}

.btn.bookhover:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.btn.bookhover:hover::before {
    left: 100%;
}

/* ==================== */
/* 3. HERO SECTION MODERNIZATION */
/* ==================== */
.hero_head h1 {
    background: linear-gradient(90deg, #fff, var(--primary-tech), var(--cyber-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    margin: 0;
}

.hero_head h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-tech), transparent);
    border-radius: 3px;
}

/* Fix hero section overflow */
.row.mt-5 {
    min-height: 100vh; /* Full viewport height */
    align-items: center !important; /* Vertically center content */
    margin-top: 0 !important; /* Remove top margin */
}


.hero_head {
    max-height: 90vh; /* Limit maximum height */
    overflow-y: auto; /* Add scroll if content is too tall */
    overflow-x: hidden; /* Prevent horizontal scroll */
    padding-right: 15px; /* Space for scrollbar */
    margin-bottom: 0px !important;
}


/* Custom scrollbar for hero_head */
.hero_head::-webkit-scrollbar {
    width: 6px;
}

.hero_head::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.hero_head::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 10px;
}

/* Make the Carder component more compact */
.Carder {
    height: 150px !important; /* Reduce height */
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

/* Reduce spacing in the profile card */
.large_Profile_img_container .profileinfo {
    bottom: 85px !important; /* Move up */
    left: 120px !important;
}

/* Reduce image size */
.large_Profile_img {
    width: 100px !important;
    height: 100px !important;
}

/* Reduce treatment icons size */
.treatment-method__icon__outer_circle {
    width: 45px !important;
    height: 45px !important;
    padding: 5px !important;
}

.treatment-methods_icon {
    width: 30px !important;
    height: 30px !important;
}

/* Reduce spacing in hero section */
.hero_head h1 {
    margin-bottom: 15px !important;
    font-size: 2rem !important;
    line-height: 1.2 !important;
}

.tech-badges {
    margin: 10px 0 !important;
    gap: 5px !important;
}

.tech-badge {
    padding: 4px 10px !important;
    font-size: 0.8rem !important;
    margin: 2px !important;
}

/* Reduce spacing in profile info */
.profileinfo .userinfo {
    font-size: 1rem !important;
    margin-bottom: 5px !important;
}

.profileinfo .skillinfo {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
}

/* Ensure video container fits properly */
.video-container {
    height: 90vh;
    display: flex;
    align-items: center;
}

.demo-showcase {
    max-height: 500px;
    width: 100%;
}

.video-container .img_reviewApp {
    max-height: 450px !important;
    object-fit: contain !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .row.mt-5 {
        min-height: auto;
        align-items: flex-start !important;
    }
    
    .hero_head {
        max-height: none !important;
        overflow-y: visible !important;
    }
    
    .video-container {
        height: auto;
        margin-top: 30px;
    }
}

/* If still overlapping, add this for extra safety */
section:not(.hero-section) {
    margin-top: 50px !important;
    position: relative;
    z-index: 1;
}

/* Tech Badges */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tech-badge {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #2563eb;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Profile card enhancement */
.Carder {
    /* border-radius: 20px; */
    overflow: hidden;
    /* border: 1px solid var(--glass-border); */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(11, 13, 27, 0.6);
    backdrop-filter: blur(10px);
}

.Carder:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-tech);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.large_Profile_img {
    transition: transform 0.7s ease;
    border: 3px solid transparent;
    background: linear-gradient(45deg, var(--primary-tech), var(--web3-purple)) border-box;
}

.Carder:hover .large_Profile_img {
    transform: scale(1.08);
}

/* Tech icons enhancement */
.treatment-method__icon__outer_circle {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--glass-border);
}

.treatment-method__icon__outer_circle:hover {
    background: var(--primary-tech);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-tech);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* CTA Buttons */
.hero-cta {
    margin-top: 30px;
}

.hero-cta .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-tech), var(--primary-dark));
    border: none;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
}

.hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--dark-background);
    transform: translateY(-3px);
}

/* VIDEO CONTAINER FIX - Critical Layout Fix */
.video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    transition: all 0.4s ease;
    transform: perspective(1000px) rotateY(0deg);
}

.video-container:hover {
    border-color: var(--primary-tech);
    transform: perspective(1000px) rotateY(-5deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5),
        -20px -20px 60px rgba(37, 99, 235, 0.1);
}

.demo-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Fixed video positioning */
.video-container .img_reviewApp,
.demo-showcase video.img_reviewApp,
.video-container video[autoplay] {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
    display: block;
    width: 100% !important;
    height: auto !important;
    max-height: 500px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: white;
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* ==================== */
/* 4. SERVICE CARDS MODERNIZATION */
/* ==================== */
.service-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    list-style: none;
    margin-top: 15px;
}

.tech-tags li {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Existing hover-cardgroup enhancement */
.hover-cardgroup {
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.hover-cardgroup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: left 0.7s ease;
}

.hover-cardgroup:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-tech);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hover-cardgroup:hover::before {
    left: 100%;
}

.hover-cardgroup:hover .title {
    color: var(--primary-tech) !important;
}

/* ==================== */
/* 5. EXPERTISE SECTION */
/* ==================== */
.expertise-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    height: 100%;
    margin-bottom: 20px;
}

.expertise-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.expertise-points {
    margin-top: 20px;
}

.point {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #cbd5e1;
}

/* ==================== */
/* 6. TECH STACK SECTION */
/* ==================== */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.tech-category {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.tech-icon {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    background: rgba(37, 99, 235, 0.2);
    transform: translateY(-3px);
}

.tech-icon img {
    width: 30px;
    height: 30px;
    margin-right: 12px;
}

.tech-icon span {
    color: #cbd5e1;
    font-weight: 500;
}

/* ==================== */
/* 7. HIRE SECTION ENHANCEMENTS */
/* ==================== */
.hire-benefits {
    margin: 25px 0;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #cbd5e1;
}

.benefit i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.text-purple {
    color: #8b5cf6;
}

/* ==================== */
/* 8. FOOTER ENHANCEMENTS */
/* ==================== */
.page-footer {
    position: relative;
    overflow: hidden;
}

.page-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary-tech),
            var(--cyber-accent),
            transparent);
}

.footer-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.footer-tech-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.social-link {
    color: #cbd5e1;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #2563eb;
    transform: translateY(-5px);
}

/* ==================== */
/* 9. STEP CARDS ENHANCEMENT */
/* ==================== */
.step-number-block {
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: rgba(30, 41, 59, 0.7) !important;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number-block:hover {
    transform: translateY(-8px);
    border-color: var(--cyber-accent);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-number-block .fa {
    transition: all 0.3s ease;
}

.step-number-block:hover .fa {
    transform: scale(1.1);
    color: var(--cyber-accent) !important;
}

/* ==================== */
/* 10. HIRE BUTTON PROFESSIONALIZATION */
/* ==================== */
.bton {
    background: linear-gradient(135deg, var(--primary-tech), var(--web3-purple));
    border: none;
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.bton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.7s ease;
}

.bton:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.bton:hover::before {
    left: 100%;
}

/* ==================== */
/* 11. MODAL MODERNIZATION */
/* ==================== */
.login-popup {
    backdrop-filter: blur(15px);
}

.popup-modal {
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.popup-modal .sam {
    border-radius: 20px;
    border: 3px solid transparent;
    background: linear-gradient(45deg, var(--primary-tech), var(--web3-purple)) border-box;
    transition: transform 0.5s ease;
}

.popup-modal:hover .sam {
    transform: scale(1.05);
}

.btn-closed {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-closed:hover {
    background: var(--primary-tech);
    transform: rotate(90deg);
}

.contact-info {
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #333;
}

.contact-item i {
    min-width: 20px;
}

.text-green {
    color: #10b981;
}

.modal-cta .btn {
    margin: 5px 0;
    padding: 12px;
    font-weight: 600;
}

/* ==================== */
/* 12. SCROLL TO TOP ENHANCEMENT */
/* ==================== */
.scroll {
    background: rgba(30, 41, 59, 0.9) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll:hover {
    background: var(--primary-tech) !important;
    transform: scale(1.1);
    border-color: var(--primary-tech);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.fa-arrow-up {
    transition: all 0.3s ease;
}

.scroll:hover .fa-arrow-up {
    color: white;
    animation: bounce 0.8s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ==================== */
/* 13. RESPONSIVE ENHANCEMENTS */
/* ==================== */
@media (max-width: 991px) {
    .hero_head h1 {
        font-size: 2.2rem !important;
    }

    .Carder {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .treatment-methods__icons {
        justify-content: center;
    }

    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .navbar.scrolling-navbar {
        padding: 10px 0;
    }

    .hero_head h1 {
        font-size: 1.8rem !important;
    }

    .hover-cardgroup,
    .step-number-block,
    .expertise-card {
        margin-bottom: 20px;
    }

    .video-container {
        margin: 30px auto;
        max-width: 300px;
    }

    .video-container .img_reviewApp {
        max-height: 300px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .popup-modal {
        width: 90% !important;
        left: 5% !important;
    }

    .tech-badges {
        justify-content: center;
    }

    .tech-stack-grid {
        grid-template-columns: 1fr;
    }

    .tech-icons {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        text-align: center;
    }

    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    /* Mobile video fix */
    @media (max-width: 740px) {
        .video-container .img_reviewApp {
            min-width: auto !important;
            min-height: auto !important;
            position: static !important;
            left: auto !important;
            top: auto !important;
            margin-bottom: 0 !important;
        }
    }
}

@media (max-width: 576px) {
    .btn.bookhover,
    .bton {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
    }

    .tech-badge {
        display: block;
        margin: 5px auto;
        width: fit-content;
    }

    .footer-tech-badge {
        display: block;
        margin: 5px auto;
        width: fit-content;
    }
}

/* ==================== */
/* 14. ACCESSIBILITY & PREFERENCES */
/* ==================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-tech: #0056cc;
        --cyber-accent: #00875a;
        --web3-purple: #6b46c1;
    }

    .hover-cardgroup,
    .step-number-block,
    .service-card,
    .expertise-card {
        border: 2px solid currentColor;
    }
}

/* Dark mode optimization (already dark by default) */
@media (prefers-color-scheme: dark) {
    /* Your existing dark theme is perfect */
}

/* ==================== */
/* 15. PERFORMANCE OPTIMIZATIONS */
/* ==================== */
/* Hardware acceleration for smooth animations */
.hardware-accelerate {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize image loading */
img[data-src] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[data-src].loaded {
    opacity: 1;
}

/* Print styles */
@media print {

    .navbar,
    .scroll,
    .telegram-api-,
    .video-container,
    .login-popup,
    .hero-cta,
    .tech-badges,
    .scroll-indicator {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .text-white,
    .white-text {
        color: black !important;
    }

    .bg-dark,
    .unique-color-dark {
        background: white !important;
    }
}

/* ==================== */
/* 16. CONFLICT RESOLUTION */
/* ==================== */
/* These rules ensure modern-upgrade.css doesn't conflict with existing styles */

/* Prevent color conflicts */
.hero_head h4,
.hero_head .mb-3 {
    color: var(--text-secondary) !important;
}

/* Ensure text visibility in dark sections */
.section-dark,
#services,
#expertise,
#tech-stack,
#portfolio {
    color: var(--text-primary) !important;
}

.section-dark p,
.section-dark .text-muted {
    color: var(--text-secondary) !important;
}

/* Fix any potential z-index issues */
.navbar.scrolling-navbar {
    z-index: 1030 !important;
}

.login-popup {
    z-index: 9999 !important;
}

.scroll,
.telegram-api- {
    z-index: 999 !important;
}

/* Ensure modal works with new styles */
.login-popup.show .box {
    opacity: 1;
    margin-left: 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== */
/* 17. ENSURE BOOTSTRAP COLUMN ALIGNMENT */
/* ==================== */
.col-md-5.video-container {
    display: flex;
    align-items: center;
    justify-content: center;
}