*{
    scroll-behavior: smooth;
}

.profile-image {
    height: 180px;
    width: 180px;
    border-radius: 50%;
    background-color: #242526;
    padding: 5px;
    z-index: 2;
    position: absolute;
    top: 90%;
    left: 19%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 4px solid #0866ff;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: translate(-50%, -60%) scale(1.05);
}

.site-mobile-menu-close > span:before, .site-mobile-menu-close > span:after{
    background-color: #ff2f2f;
}

.site-mobile-menu, .site-mobile-menu .site-mobile-menu-body{
    background: #242526;
    overflow: hidden;
}

.tech-brands {
    display: none;
    margin-top: 1.2em;
    color: #fff;
}

.feather-icon-swap {
    transition: color 0.5s ease-in-out;
}

.text-grey{
    color: #9a9a9a !important;
}

.icons{
    color: #0866ff !important;
    transition: .5s;
}

.icons:hover{
    font-size: 1.5em;
}

.text-light{
    color: #fff;
}

/* Light mode */
.light-mode-background{
    background-color: #fff !important;
}
.light-mode-text{
    color: #242526 !important;
}
.light-mode-box-shadow{
    box-shadow: 0px 1px 2px #cacaca;
}
.light-mode-border{
    border-bottom: none;
}
.light-mode-logo-right-background{
    background-color: #e4e6eb !important;
}
.light-mode-logo-right-color{
    color: #050505 !important;
}
/* Dark mode */


/* Dark Mode Form Inputs (Default) */
.form-control {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-control:focus, .form-control:active {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid #0866ff !important;
    outline: none !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgba(8, 102, 255, 0.25) !important;
}

/* Light Mode Form Inputs */
body.light-mode-background .form-control {
    background-color: #f0f2f5 !important;
    border: 1px solid #ccd0d5 !important;
    color: #050505 !important;
}

body.light-mode-background .form-control::placeholder {
    color: #65676B !important;
}

body.light-mode-background .form-control:focus, 
body.light-mode-background .form-control:active {
    background-color: #ffffff !important;
    border: 1px solid #0866ff !important;
    color: #050505 !important;
    box-shadow: 0 0 0 0.2rem rgba(8, 102, 255, 0.25) !important;
}

.hover-links:hover{
    color: #0866ff  !important;
}

.hover-blue:hover{
    color: #0866ff !important;
}

.text-blue{
    color: #0866ff !important;
}

.heading-background {
    width: 100%;
    position: absolute;
    font-weight: 900;
    font-size: 10em;
    z-index: -1;
    top: 0;
    display: flex;
    justify-content: center;
    left: 0;
    text-align: center;
    opacity: 5%;
    transform: translateY(-45%);
    pointer-events: none;
    background: linear-gradient(180deg, #0866ff 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Enhancements */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.unit-4 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
}

.unit-4:hover {
    background: rgba(8, 102, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.image-stack__item img {
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.image-stack__item:hover img {
    transform: scale(1.02);
}

.btn-primary {
    background: linear-gradient(45deg, #0866ff, #00d2ff);
    border: none;
    box-shadow: 0 4px 15px rgba(8, 102, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 102, 255, 0.5);
    background: linear-gradient(45deg, #00d2ff, #0866ff);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #0866ff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00d2ff;
}

#techs{
    margin-top: 5rem;
}

@media (max-width: 991.98px) {
    .profile-image {
        top: 87%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .tech-brands {
        display: block;
    }

    .heading-background{
        font-size: 6em;
    }

    #techs{
        margin-top: 7rem !important;
    }
}