/* Loading the font from Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Inter:wght@100..900&display=swap');

/* VARIABLES */
:root {
    --primary-color: #F6A8A7;
    --primary-text: #f89a98;
    --text-light: #FFFFFF;
    --dark: #323232;
    --background: #F5F5F5;
    --text: #313131;
    --text-lighter: #666;
    --gray: #A6A6A6;
    --steps: 14;

    --hero-img-bg: #F6A8A7;

    --card-arrow-fill: #C1C1C1;
    --card-right-arrow-fill: #f48c8b;

    --shadow-dark: #d0bcbb92;
    --shadow-light: #ffffff;
    --shadow-primary-dark: #f59492bd;
    --shadow-primary-inset-dark: #f48c8b;
    --shadow-primary-inset-light: #faafae;

    --shadow-text-gradient-1: #ED8C82;
    --shadow-text-gradient-2: #FADDE2;
    --shadow-text-1: #F6A7A7;
    --shadow-text-2: #ED8C82;
    --shadow-glow-1: #f6a8a7b0;
    --shadow-glow-2: #f6a8a74f;

    --shadow-work-demo-card-inset-dark: #a7969592;
    --shadow-work-demo-card-inset-light: #f5f5f5b7;

    --progress-gradient-1: #FAACA8;
    --progress-gradient-2: #DDD6F3;
}

/* THEME 2 */
/* :root {
    --primary-color: #6C5CE7;
    --primary-text: #74B9FF;
    --text-light: #FFFFFF;
    --dark: #2D3436;
    --background: #F0F2F5;
    --text: #2D3436;
    --text-lighter: #636E72;
    --gray: #B2BEC3; 
    --steps: 14;

    --hero-img-bg: #6C5CE7;

    --card-arrow-fill: var(--gray);
    --card-right-arrow-fill: #55EFC4;

    --shadow-dark: #2D343692; 
    --shadow-light: #FFFFFF;
    --shadow-primary-dark: #74B9FFbd;
    --shadow-primary-inset-dark: #55EFC4;
    --shadow-primary-inset-light: #81ECEC;

    --shadow-text-gradient-1: #0984E3;
    --shadow-text-gradient-2: #74B9FF;
    --shadow-text-1: #55EFC4;
    --shadow-text-2: #0984E3;
    --shadow-glow-1: #6C5CE7b0;
    --shadow-glow-2: #6C5CE74F;

    --shadow-work-demo-card-inset-dark: #636E7292;
    --shadow-work-demo-card-inset-light: #F0F2F5b7;

    --progress-gradient-1: #55EFC4;
    --progress-gradient-2: #74B9FF;
} */

/* THEME 3 */
/* :root {
    --primary-color: #6200EA;
    --primary-text: #BB86FC;
    --text-light: #B3B3B3;
    --dark: #0D0D0D;
    --background: #121212;
    --text: #E0E0E0;
    --text-lighter: #8C8C8C;
    --gray: #3C3C3C;
    --steps: 14;

    --hero-img-bg: #1B1B1B;

    --card-arrow-fill: #c1c1c186;
    --card-right-arrow-fill: #BB86FC;

    --shadow-dark: #00000092;
    --shadow-light: #2D2D2D;
    --shadow-primary-dark: #6200EAbd;
    --shadow-primary-inset-dark: #3700B3;
    --shadow-primary-inset-light: #03DAC6;

    --shadow-text-gradient-1: #BB86FC; 
    --shadow-text-gradient-2: #03DAC6;
    --shadow-text-1: #6200EA; 
    --shadow-text-2: #3700B3; 
    --shadow-glow-1: #BB86FCb0;
    --shadow-glow-2: #BB86FC4F;

    --shadow-work-demo-card-inset-dark: #2D2D2D92;
    --shadow-work-demo-card-inset-light: #121212b7;

    --progress-gradient-1: #BB86FC;
    --progress-gradient-2: #03DAC6;
} */

/* BASICS */
*,*::before,*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    scroll-behavior: smooth;
    color: var(--text);
    background: var(--background);
    line-height: 19.2px;
    max-width: 100dvw;
    overflow-x: hidden;
}

/* SCROLLBAR */
body::-webkit-scrollbar {
	width: 8px;
	@media only screen and (max-width: 768px) {
		width: 3px;
	}
}
body::-webkit-scrollbar-track {
	background: transparent;
}
body::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 8px;
}
body::-webkit-scrollbar-thumb:hover {
	background: var(--primary-text);
}

/* GENERAL ELEMENTS */
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
p {
    line-height: 1.7;
}

/* BOOTSTRAP OVERRIDE */
.text-right {
    text-align: right;
}
.container {
    max-width: 1170px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-24 {
    margin-bottom: 24px;
}

/* SHADOW CLASSES */
.shadow-box {
    background: var(--background);
    box-shadow:  4px 4px 12px var(--shadow-dark),
                -4px -4px 12px transparent,
                inset -4px -4px 12px var(--shadow-dark),
                inset 4px 4px 12px var(--shadow-light);
}
.shadow-box-primary {
    color: var(--text-light) !important;
    background: var(--primary-text);
    box-shadow:  4px 4px 12px var(--shadow-primary-dark),
                -4px -4px 12px transparent,
                inset -4px -4px 12px var(--shadow-primary-inset-light),
                inset 4px 4px 12px var(--shadow-primary-inset-light);
}
.shadow-box-small {
    background: var(--background);
    box-shadow:  2px 2px 6px var(--shadow-dark),
                -2px -2px 6px transparent,
                inset -2px -2px 6px var(--shadow-dark),
                inset  2px 2px 6px var(--shadow-light);
}
.shadow-box-small-hover:hover {
    background: var(--background);
    box-shadow:  1px 1px 4px var(--shadow-dark),
                -1px -1px 4px transparent,
                inset -1px -1px 4px var(--shadow-dark),
                inset  1px 1px 4px var(--shadow-light);
}
.shadow-box-glow {
    background: var(--background);
    box-shadow:  3px 3px 12px var(--shadow-glow-1),
                -3px -3px 12px var(--shadow-glow-2),
                inset -1px -1px 4px var(--shadow-dark),
                inset  1px 1px 4px var(--shadow-light);
}
.shadow-box-inner {
    border-radius: 20px;
    background: var(--background);
    box-shadow: inset 5px 5px 10px var(--shadow-dark), inset -5px -5px 10px var(--shadow-light);
}
.shadow-text {
    background: -webkit-linear-gradient(var(--shadow-text-gradient-1), var(--shadow-text-gradient-2));
    text-shadow: 1px 1px 2px var(--shadow-text-1), 0 0 1.45px var(--shadow-text-2), 0 0 1.45px rgba(0, 0, 0, 0.25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* THEME CLASSES */
.primary-text {
    color: var(--primary-text);
}
.theme-card {
    padding: 30px;
    border-radius: 30px;
    position: relative;
    font-size: 16px;
}
.theme-card .card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}
.card-sub-title {
    font-size: 18px;
    margin-bottom: 5px;
}
.arrow-svg path {
    fill: var(--card-arrow-fill);
    opacity: 0.7;
}
.has-arrow {
    padding-top: 100px;
    position: relative;
}
.has-arrow svg {
    position: absolute;
    top: 0;
    left: 40px;
}
.inline-points {
    display: flex;
}
.inline-points li {
    margin-right: 7px;
}
.inline-points li::after{
    content: '';
    display: inline-block;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: var(--gray);
    position: relative;
    top: -2px;
    margin-left: 7px;
}
.inline-points li:last-child::after {
    display: none;
}
.theme-btn {
    color: var(--text);
    display: inline-block;
    transition: .3s;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
}
.theme-btn-primary {

}
.theme-btn:hover {
    color: var(--primary-text);
}
.card-sub-text {
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 5px;
}
.go-to-arrow {
    float: right;
    width: 40px;
    height: auto;
    opacity: 0.6;
}
.go-to-arrow svg path {
    fill: var(--card-right-arrow-fill);
}
.theme-card .go-to-arrow {
    position: relative;
    top: -3px;
}
.timeline {
    margin-top: 40px;
}
.timeline li {
    padding-bottom: 30px;
    padding-left: 40px;
    position: relative;
}
.timeline li .date {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-lighter);
}
.timeline li h3 {
    font-size: 22px;
}
.timeline li a {
    color: var(--primary-text);
}
.timeline li .type {
    font-size: 14px;
}
.timeline li:hover::before {
    scale: 1.4;
}
.timeline li::before{
    content: '';
    position: absolute;
    height: 6px;
    width: 6px;
    background-color: var(--background);
    border: 3px solid var(--primary-color);
    box-sizing: content-box;
    border-radius: 50%;
    left: 0;
    top: 30px;
    z-index: 1;
    transition: all 0.2s ease-in-out;
}
.timeline li::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
    box-sizing: content-box;
    border-radius: 50%;
    left: 5px;
    top: 30px;
    z-index: 0;
    opacity: 0.5;
}
.timeline li:last-child::after {
    display: none;
}
.section-title {
    font-size: 18px;
}

/* PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-text);
    transform-origin: bottom;
    z-index: 111111
}
.preloader .black_wall {
    height: 100%;
    background-color: var(--primary-color);
    transform-origin: top;
    animation: preloader_slide 0.5s ease-in-out 0s 1 normal both
}
.preloader .loader {
    width: 100%;
    height: 3px;
    position: absolute;
    border-radius: 2px;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: var(--primary-color);
    transform-origin: left;
    animation: loader_running 3s ease-in-out 1s infinite normal both
}
.preloader.off {
    animation: preloader_slide 0.5s ease-in-out 0s 1 reverse both
}
@keyframes preloader_slide {
    from {
        transform: scaleY(0)
    }

    to {
        transform: scaleY(1)
    }
}


/* NAVIGATION */
.navigation .logo {
    display: inline-block;
    z-index: 16;
}
.navigation .logo img {
    display: block;
}
.navigation .navbar {
    margin: 0;
    padding: 0;
}
.navigation .navbar .theme-btn {
    display: none;
}
.navigation .navbar .menu {
    display: flex;
    align-items: center;
    gap: 49px;
    margin: 0;
    padding: 0;
}
.navigation .navbar .menu li a {
    font-size: 16px;
    color: var(--text);
    transition: .3s;
    display: block;
    padding: 26px 0px;
}
.navigation .navbar .menu li.active a,
.navigation .navbar .menu li a:hover {
    color: var(--primary-text);
}
.navigation .show-menu {
    display: none;
    color: var(--text);
    font-size: 25px;
    cursor: pointer;
    width: 25px;
    height: 18px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 16;
    margin-right: 20px;
}
.navigation .show-menu span {
    width: 100%;
    height: 1px;
    background: var(--text);
    display: block;
    transition: .4s;
}
.navigation .show-menu.active span:first-child {
    transform: translate3d(0px, 6px, 0px) scale(1, 1) rotate(45deg) scale(1, 1);
}
.navigation .show-menu span:last-child {
    transform-origin: left;
}
.navigation .show-menu.active span:last-child {
    transform: translate3d(4px, -2px, 0px) scale(1, 1) rotate(-45deg) scale(1, 1);
}
.navigation .show-menu.active span:nth-child(2) {
    transform: scale(0);
}


/* FOOTER */
.footer-area {
    padding-top: 128px;
    padding-bottom: 78px;
}
.main-workspage .footer-area {
    padding-top: 104px;
}
.footer-area .footer-content .logo {
    display: inline-block;
}
.footer-area .footer-content .logo img {
    display: block;
}
.footer-area .footer-content .footer-menu {
    margin: 33px 0 37px 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
}
.footer-area .footer-content .footer-menu li a {
    color: var(--text);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    font-weight: 600;
    transition: .3s;
}
.footer-area .footer-content .footer-menu li a:hover {
    color: var(--text-lighter);
}
.footer-area .footer-content .copyright {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}
.footer-area .footer-content .copyright span,
.footer-area .footer-content .copyright span a {
    color: var(--primary-color);
}

/* HERO */
.hero {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 120px;
}
.hero-portrait {
    right: 0;
    bottom: 0;
    width: 180px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.about-portrait {
    width: 240px;
}
.hero-portrait-blob {
    fill: var(--hero-img-bg);
}
.hero-portrait-blob-img {
    width: 400px;
}
.hero .hero-name {
   position: relative; 
   display: inline-block;
}
.hero .hero-name span {
    font-size: 32px;
}
.hero .hero-name sup {
    position: absolute;
    top: calc(-100% + 10px);
    left: -20px;
    font-size: 18px;
}
/* TYPING */
#typing {
    font-family: 'Inconsolata', Consolas, monospace;
    font-size: 100px;
    position: relative;
    text-align: left;
    width: fit-content;
    margin: 0 auto;
    &::after {
      content: "|";
      position: absolute;
      right: 2px;
      width: 100%;
      color: var(--primary-text);
      background: var(--background);
      animation: typing 1s steps(var(--steps)) forwards, caret 1s infinite;
    }
}
#typing.back {
&::after {
    width: 0;
    animation: backspace 0.5s steps(var(--steps)) forwards, caret 1s infinite;
}
}
@keyframes typing {
    to { width: 0 }
}
@keyframes backspace {
    to { width: 100% }
}
@keyframes caret {
    50% { color: transparent }
}

/* SKILL MARQUEE */
.skill-marquee-holder {
    padding: 15px;
}
.skill-marquee {
    overflow: visible;
}
.skill-marquee ul {
    width: 110%;
    position: relative;
    left: -60%;
}
.skill-row {
    height: calc(100% - 102px);
}

/* PROGRESS */
/* SKILL PROGRESS */
.my-skill-progress {
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#GradientColor stop:first-child {
    stop-color: var(--progress-gradient-1) !important;
}
#GradientColor stop:last-child {
    stop-color: var(--progress-gradient-2) !important;
}
.progress-circle {
    fill: none;
    stroke: url(#GradientColor);
    stroke-width: 20px;
    stroke-dasharray: 376;
    stroke-dashoffset: 376;
    display: inline-block;
    position: relative;
    height: fit-content;
}
.progress-circle p {
    position: absolute;
    top: calc(50% - 10px);
    left: 0;
    right: 0;
    text-align: center;
    width: 100%;
}
.progress-circle-1 {
    animation: progress-1 1s linear forwards;
}
.progress-circle-2 {
    animation: progress-2 1s linear forwards;
}
.progress-circle-3 {
    animation: progress-3 1s linear forwards;
}
/* 
PROGRESS_AMOUNT
Please change stroke-dashoffset value and see how it changes the progress.
0 is 100% progress
376 is 0% progress
 */
@keyframes progress-1 {
    100% {
        stroke-dashoffset: 30;
    }
}
@keyframes progress-2 {
    100% {
        stroke-dashoffset: 40;
    }
}
@keyframes progress-3 {
    100% {
        stroke-dashoffset: 100;
    }
}

/* MY WORK */
.my-work {
    height: 100%;
}
.my-work .my-work-img {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.my-work .my-work-img h3 {
    position: absolute;
    text-transform: uppercase;
    left: 0;
    right: 0;
    top: 25px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    z-index: 0;
    background: linear-gradient(var(--primary-text), transparent);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.my-work .my-work-img img {
    margin-top: 20px;
    height: 100px;
    width: auto;    
    z-index: 1; 
}

/* MY BLOG */
.my-blog {
    height: 100%;
}
.my-blog .my-blog-img {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.my-blog .my-blog-img img {
    height: 120px;
    width: auto;     
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    justify-content: space-between;
    max-width: 70%;
    margin: 40px auto 50px;
}
.social-links i {
    font-size: 40px;
    color: var(--text);
}

/* HOME CLIENTS */
.home-clients {
    display: flex;
    gap: 24px;
    justify-content: center;
}
.home-client-item {
    position: relative;
    border-radius: 30px;
    text-align: center;
    padding: 42px 30px 42px 30px;
    box-sizing: border-box;
    flex-grow: 1;
    width: 30%;
}
.home-client-item h2 {
    font-size: 40px;
    margin-bottom: 15px;
}
.home-client-item p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 12px;
}

/* WORK TOGETHER */
.work-together {
    position: relative;
    height: 100%;
}
.work-together h2 span {
    font-size: 52px;
    color: var(--primary-color);
}
.work-together .go-to-arrow {
    position: absolute;
    bottom: 65px;
    right: 70px;
    top: unset;
}

/* ABOUT CONTENT */
.about-content {
    margin-top: 120px;
}

.about-social, .contact-social {
    padding-bottom: 40px;
    padding-top: 40px;
}
.contact-social {
    margin-top: 40px;
}
.about-social h4 {
    margin-bottom: 40px;
}
.social-link {
    display: inline-block;
    width: 82px;
    height: 82px;
    min-width: 82px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: var(--text-lighter);
    cursor: pointer;
}
.social-link:hover {
    color: var(--primary-text);
}
.social-link i {
    /* pointer-events: none; */
}
.about-social-links {
    margin: 0 auto;
    width: 80%;
    justify-content: space-between;
    max-width: 100%;
}

/* WORK PAGE */
.work-content {
    padding-top: 120px;
}
.work-demo-card {
    position: relative;
    transition: transform 0.15s ease-in-out;
}
.work-demo-card:hover {
    transform: scale(1.05);
}
.work-demo-card:hover .work-demo-card-title {
    /* color: var(--primary-text); */
}
.work-demo-card-img {
    height: 230px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
    display: block;
    margin-bottom: 20px;
    box-shadow: inset 2px 2px 5px var(--shadow-work-demo-card-inset-dark), inset -2px -2px 5px var(--shadow-work-demo-card-inset-light);
}
.work-demo-card-type {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-lighter);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.work-demo-card-title {
    font-size: 18px;
    font-weight: 500;
}

/* CONTACT PAGE */
.contact-info .icon-box{
    height: 82px;
    width: 82px;
    min-width: 82px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin-right: 20px;
    color: var(--text-lighter);
}
.contact-info li {
    margin-bottom: 40px;
    padding-top: 10px;
}
.contact-info li span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    color: var(--gray);
}
.contact-info li p {
    font-size: 18px;
    margin-bottom: 10px;
}
.contact-info-content {
    padding-top: 5px;
}
.contact-form {
    margin-top: 20px;
}
.contact-form .input-group {
    margin-bottom: 10px;
}
.contact-form .input-box {
    background: #f5f5f5;
    box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
    border: none;
    border-radius: 8px;
}
.form-submit-button {
    cursor: pointer !important;
    width: 100%;
    border-radius: 10px;
    outline: none;
    border: 2px solid var(--primary-text);
    background-color: var(--background);
}
.contact-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
}
.contact-title span {
    color: var(--primary-text);
    font-weight: 500;
}

