/* 
Author:Ehsan Yousaf 
start date: 15/01/2026 Approximate..

*/
:root [data-theme="light"] {
    /* colors */
    --primary: #5d17eb;
    --primary-hover: #3f0aaa;
    --primary-focus: #5d17eb;
    --secondary: #14B8A6;
    --secondary-hover: #4aB8A6;
    --secondary-focus: #6cB8A6;
    --accent: #F59E0B;
    --accent-hover: #fdb02a;
    --accent-focus: #fdc02a;
    --text-color: #cbd7e9;
    --gradient: linear-gradient(45deg, rgba(49, 49, 189, 0.3), rgba(255, 0, 43, 0.3));
    /* font-color */

    --color-surface: #FFFFFF;
    --text-primary: #fff;
    --text-muted: #94A3B8;
    /* fonts styling*/
    --f-head: babas_neue;
    --f-stylish: Inconsolata;
    --f-text: 'Exo_2';
    --f-inter: inter;
    --body: rgb(29, 41, 64);
    /* --header: rgb(0, 0, 0, 0.1); */
    --header: transparent;
    --shadow: 10px 10px 30px #5d17eb;
    --shadow-color: #5d17eb;
}


/*  =====================
        Font Stylings
    ===================== */
@font-face {
    font-family: 'babas_neue';
    src: url(font/Bebas_Neue/BebasNeue-Regular.ttf);
}

@font-face {
    font-family: 'Inconsolata';
    src: url(font/Inconsolata/Inconsolata-VariableFont_wdth\,wght.ttf);
}

@font-face {
    font-family: 'Exo_2';
    src: url(font/Exo_2/Exo2-Italic-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'inter';
    src: url(font/Inter/Inter-VariableFont_opsz\,wght.ttf);
}

.f-head {
    font-family: var(--f-head);
    /* for heading */
}

.f-stylish {
    font-family: var(--f-stylish);
    /* for styling */
}

.f-text {
    font-family: var(--f-text);
    /* for Paragraph */
}

.f-inter {
    font-family: var(--f-inter);
    /* for navbar */
}


/*  =====================
        Colors Stylings
    ===================== */

.bg-prime {
    background-color: var(--primary);
    color: white;
}

.bg-sec {
    background-color: var(--secondary);
    color: white;
}

.bg-accent {
    background-color: var(--accent);
    color: white;
}

.text-prime {
    color: var(--primary);
}

.text-para {
    color: var(--text-color) !important;
}

/* .text-accent {
    color: var(--accent);
} */



/*  =====================
        border Stylings
    ===================== */
.bg-shadow {
    filter: drop-shadow(var(--shadow));
    transition-duration: 0.3s;
    animation: flicker;
    animation-duration: 2s;
    animation-iteration-count: 1;

}

.top-anim {

    --i: 0;
    animation: move-top calc(1100ms + (var(--i) * 200ms)) 1;
}

.left-anim {
    --i: 0;
    animation: move-left calc(1100ms + (var(--i) * 200ms)) 1 !important;
}



/*  =====================
        Button Stylings
    ===================== */

.button-outline-prime {
    position: relative;
    display: inline-block;
    padding: 8px 30px;
    font-size: 16px;
    color: var(--text-color);
    border: 2px solid var(--primary);
    border-radius: 5px;
    background-color: transparent;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.4s ease;
}

.button-outline-prime::before {
    position: absolute;
    content: "";
    z-index: -1;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
    background-color: var(--primary);
}

.button-outline-prime:hover::before {
    transform: scaleX(1);
}
.button-outline-prime:hover{
    color: white;
}


.button-outline-sec {
    border: 2px solid var(--secondary);
    transition-duration: 0.4s !important;
    color: var(--text-color);
}

.button-outline-accent {
    border: 2px solid var(--accent);
    transition-duration: 0.4s !important;
    color: var(--text-color);
}


.button-prime {
    background-color: var(--primary) !important;
    transition-duration: 0.4s !important;
    color: var(--text-color);
}

.button-prime:hover {
    background-color: var(--primary) !important;
    color: var(--text-color);

}

.button-prime:focus {
    background-color: var(--primary-focus) !important;
    border: 2px solid var(--primary);
    color: var(--text-color);
}

.button-sec {
    background-color: var(--secondary) !important;
    transition-duration: 0.4s !important;
    color: var(--text-color);
}

.button-sec:hover,
.button-outline-sec:hover {
    background-color: var(--secondary-hover) !important;
    color: var(--text-color);
}

.button-sec:focus {
    background-color: var(--secondary-focus) !important;
    color: var(--text-color);
    border: 2px solid var(--secondary);
}

.button-accent {
    background-color: var(--accent) !important;
    transition-duration: 0.4s !important;
    color: var(--text-color);
}

.button-accent:hover,
.button-outline-accent:hover {
    background-color: var(--accent-hover) !important;
    color: var(--text-color);
}

.button-accent:focus {
    background-color: var(--accent-focus) !important;
    border: 2px solid var(--accent);
    color: var(--text-color);
}

/* animations */
@keyframes flicker {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }

}

@keyframes move-top {
    from {
        transform: translateY(200px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes move-left {
    from {
        transform: translateX(200px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* <--My Styling--> */
* {
    color: white;
}

.logo {
    font-weight: 600;
}

body {
    background-color: var(--body);
}

p,
.p {
    font-family: var(--f-text);
    color: var(--text-color);
}

h1 {
    font-size: 60px !important;
    font-style: italic !important;
}

.navbar a {
    color: var(--f-inter) !important;
    font-family: var(--f-inte);
    font-weight: 600;
}

.links {
    text-decoration: none;
    color: var(--text-color);

}

.bi {
    display: inline-block;
    color: var(--primary);
    margin: 3px;
    transition:transform .3s;
    transform: center;
    cursor: pointer;
}
.bi:hover{
    transform: scale(1.1) !important;
}

.bg-card {
    background: var();
}

.fv-caps {
    font-variant: small-caps !important;
}

.profile {
    height: 100px;
    width: 100px;
}

.test-profile {
    position: absolute;
    top: -50px !important;
    left: 37%;
}

aside {
    float: right;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: 100px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-surface);
}


::-webkit-scrollbar-thumb {
    background: var(--primary-focus);
    /* Bootstrap primary color */
    border-radius: 10px;
}



/*  =====================
        Header Stylings
    ===================== */

header {
    background-color: var(--header);
}

header li,
footer li {
    transition: all 1s ease;
    position: relative;
}

.abc {
    background-color: var(--text-color);
    height: 100px;
    width: 100px;
}

header li a,
footer li a {
    display: inline-block;
    transition: all .5s ease !important;
    padding-left: 0px !important;

}

header li::before,
footer li::before {
    content: "•";
    font-size: 20px;
    position: absolute;
    left: 0px;
    top: 13%;
    transition: all .35s linear;
    opacity: 0;


}

.dropdown-menu {
    transition-duration: 2s !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
    transition-duration: 1s !important;
}

header li:hover::before,
footer li:hover::before {
    opacity: 1;

}

#abc {
    padding-left: 0px;
}

header li:hover a,
footer li:hover a {
    transform: translateX(14px);

}

#abc a {
    transform: translateX(0px) !important;

}

#abc:hover a {
    transform: translateX(14px) !important;

}

header .dropdown-menu li::before {
    top: 3%;
}

.nav-shadow {
    box-shadow: 0px 5px 10px 1px var(--shadow-color);
}


.list {
    padding: 0px;
    color: black;
}

.list a {
    text-decoration: none;
    font-weight: 400;
    padding: 4px;
    color: black;
}

/* addition */


/*  =====================
        Footer Stylings
    ===================== */
footer li a {
    color: var(--text-color) !important;
}

footer li::before {
    color: var(--text-color);
    top: 3%;
}

/*  =====================
        Sections Stylings
    ===================== */


.divider {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
}

.divider-inner {
    margin: 0px;
    padding: 0px;
    background-color: var(--primary);
    height: 10px;
    border-bottom: 4px solid var(--primary);
    width: 15px;
}

.divider::before,
.divider::after {
    content: '';
    margin-left: 4px;
    margin-right: 4px;
    flex: 1;
    border-bottom: 4px solid var(--primary);
}
.border-right{
    border-right: 2px solid var(--text-color);
}
#section{
    background-image: url();
}
@media screen and (max-width:576px){
    .border-right{
        border: none;
    }
    
}