@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* css */
@import url('./spacing.css');
@import url('./style.css');
@import url('./responsive.css');

:root {
    --bs-body-bg: #000;
    --bs-body-color: #d0d0d0;
    --bs-heading-color: #fff;
}

html,
body {
    background-color: #070912 !important;
    background-image:
        radial-gradient(at 0% 0%, #341455 0%, transparent 55%),
        radial-gradient(at 100% 0%, #53162f 0%, transparent 55%),
        radial-gradient(at 0% 100%, #142253 0%, transparent 55%),
        radial-gradient(at 100% 100%, #1d1446 0%, transparent 55%) !important;
    background-size: 170% 170% !important;
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100% !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    animation: ambientGradientShift 14s ease-in-out infinite alternate !important;
}

@keyframes ambientGradientShift {
    0% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
    }
    100% {
        background-position: 18% 14%, 82% 16%, 14% 82%, 86% 86%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html,
    body {
        animation: none !important;
    }
}

body {
    color: #d0d0d0 !important;
}

.site-content {
    position: relative;
    z-index: 1;
}

.main-header {
    transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-content {
    transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-is-loading .main-header,
body.page-is-loading .site-content {
    opacity: 0;
}

body.page-is-ready .main-header,
body.page-is-ready .site-content {
    opacity: 1;
}

body.page-is-leaving .main-header,
body.page-is-leaving .site-content {
    opacity: 0;
    transition-duration: 320ms;
}

.page-transition-overlay {
    position: fixed;
    inset: 0;
    z-index: 15;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    background: linear-gradient(135deg, rgb(6 11 24 / 95%), rgb(15 25 44 / 95%), rgb(10 10 18 / 95%));
    transition: transform 520ms cubic-bezier(0.76, 0, 0.24, 1), opacity 380ms ease;
}

body.page-is-loading .page-transition-overlay,
body.page-is-leaving .page-transition-overlay {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

body.page-is-ready .page-transition-overlay {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
}

body.page-is-loading .site-content > section,
body.page-is-loading .site-content > section .section-title,
body.page-is-loading .site-content > section .single-resume,
body.page-is-loading .site-content > section .resume-item,
body.page-is-loading .site-content > section .testimonial-item,
body.page-is-loading .site-content > section .slider-arrows,
body.page-is-loading .site-content > section video,
body.page-is-loading .site-content > section .company-list,
body.page-is-loading .site-content > section .tjb-footer-row {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.99);
    filter: blur(4px);
    transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1), filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-is-loading .site-content > section .about-image-part {
    opacity: 0;
    transform: translate3d(-28px, 0, 0) scale(0.99);
    filter: blur(4px);
}

body.page-is-loading .site-content > section .about-content-part {
    opacity: 0;
    transform: translate3d(28px, 0, 0) scale(0.99);
    filter: blur(4px);
}

@media only screen and (min-width: 768px) {
    .site-content > section:first-of-type {
        margin-top: 0;
        padding-top: 145px !important;
    }
}

body::before {
    content: "";
    position: fixed;
    inset: -25%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 18%, rgb(34 211 238 / 12%), transparent 45%),
        radial-gradient(circle at 76% 26%, rgb(255 84 186 / 12%), transparent 45%),
        radial-gradient(circle at 50% 80%, rgb(90 120 255 / 12%), transparent 50%);
    filter: hue-rotate(0deg);
    animation: ambientHueDrift 18s linear infinite;
}

@keyframes ambientHueDrift {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.background-decor {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.52;
}

.background-decor svg {
    width: 100%;
    height: 100%;
}

.draw-circle {
    fill: none;
    stroke: rgb(255 255 255 / 30%);
    stroke-width: 2.4;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transform-box: fill-box;
    transform-origin: center;
    animation: drawPulse 34s ease-in-out infinite, slowSpin 120s linear infinite;
}

.draw-circle.small {
    stroke-width: 2;
    stroke: rgb(255 255 255 / 26%);
}

.draw-cross {
    fill: none;
    stroke: rgb(255 255 255 / 28%);
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawPulse 36s ease-in-out infinite;
}

.draw-cross.small {
    stroke-width: 2;
    stroke: rgb(255 255 255 / 24%);
}

.circle-a {
    animation-duration: 30s, 90s;
    animation-delay: -12s, 0s;
}

.circle-b {
    animation-duration: 38s, 120s;
    animation-delay: -15s, 0s;
}

.circle-c {
    animation-duration: 42s, 105s;
    animation-delay: -18s, 0s;
}

.circle-d {
    animation-duration: 35s, 130s;
    animation-delay: -11s, 0s;
}

.circle-e {
    animation-duration: 46s, 145s;
    animation-delay: 9s, 0s;
}

.circle-f {
    animation-duration: 24s, 66s;
    animation-delay: -7s, 0s;
}

.circle-g {
    animation-duration: 28s, 80s;
    animation-delay: 6s, 0s;
}

.circle-i {
    animation-duration: 32s, 74s;
    animation-delay: 12s, 0s;
}

.circle-j {
    animation-duration: 29s, 88s;
    animation-delay: -9s, 0s;
}

.cross-a {
    animation-duration: 17s;
    animation-delay: 4s;
}

.circle-b,
.circle-c,
.circle-d,
.circle-j,
.cross-b,
.cross-d {
    opacity: 0.26;
}

.cross-b {
    animation-duration: 20.5s;
    animation-delay: -6s;
}

.cross-d {
    animation-duration: 11.5s;
    animation-delay: -4s;
}

.cross-e {
    animation-duration: 13.5s;
    animation-delay: 9.5s;
}

@keyframes drawPulse {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }
    20% {
        stroke-dashoffset: 46;
        opacity: 0.44;
    }
    38% {
        opacity: 0.18;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.4;
    }
    64% {
        opacity: 0.16;
    }
    80% {
        stroke-dashoffset: -46;
        opacity: 0.42;
    }
    100% {
        stroke-dashoffset: -100;
        opacity: 0;
    }
}

@keyframes slowSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff !important;
}

p,
li,
span,
label,
a,
small,
strong,
em {
    color: inherit;
}

.main-menu .navbar-header .navbar-toggle .icon-bar {
    background: #fff !important;
}

.main-header .logo a,
.main-menu .mobile-logo a {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff !important;
    line-height: 1;
}

.main-menu .mobile-logo a {
    font-size: 1.3rem;
    white-space: nowrap;
}

.about-area .about-content-part {
    position: relative;
}

.about-area .about-content-part .adress-field {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
}

.about-area .about-content-part .adress-field ul {
    margin: 0;
}

.about-area .about-content-part .hero-btns {
    margin-left: 0;
    padding-left: 0;
    text-align: left;
}

.about-single-area .about-image-part img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.about-single-area .about-image-caption {
    margin: 12px 0 0;
    text-align: left;
    font-size: 13px;
    line-height: 1.4;
    color: rgb(255 255 255 / 72%);
}

.about-area .about-content-part .hero-btns .about-contact-link,
.about-single-area .about-content-part .hero-btns .about-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.about-area .about-content-part .hero-btns .about-contact-link .about-contact-icon,
.about-single-area .about-content-part .hero-btns .about-contact-link .about-contact-icon {
    flex: 0 0 auto;
}

.about-area .about-content-part .hero-btns .about-contact-link:hover,
.about-area .about-content-part .hero-btns .about-contact-link:focus-visible,
.about-single-area .about-content-part .hero-btns .about-contact-link:hover,
.about-single-area .about-content-part .hero-btns .about-contact-link:focus-visible {
    color: #22D3EE;
}

.menu-btns a.theme-btn.menu-btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.menu-btns a.theme-btn.menu-btn-with-icon .menu-btn-icon {
    flex: 0 0 auto;
}

.main-menu .navbar-collapse li a:hover,
.main-menu .navbar-collapse li a:focus-visible {
    color: #22D3EE;
}

.menu-btns a.theme-btn:hover,
.menu-btns a.theme-btn:focus-visible {
    color: #22D3EE;
    border-color: #22D3EE;
    background: transparent;
}

.about-social ul li a:hover,
.about-social ul li a:focus-visible {
    color: #22D3EE;
    border-color: #22D3EE;
}

.contact-form-area .theme-btn {
    padding-left: 0;
    padding-right: 20px;
    text-align: left;
}

.TJBAccent {
    color: #22D3EE !important;
}

.testimonials-area .testimonial-item .testi-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonials-area .testimonial-item .testi-meta .author {
    margin-bottom: 0;
    display: block;
    flex: 0 0 60px;
}

.testimonials-area .testimonial-item .testi-meta .author img {
    width: 60px !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tjb-footer {
    width: 100%;
    background: #000;
    margin-top: 15px;
}

.tjb-footer .footer-bottom {
    background: #000;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.tjb-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tjb-footer .copyright-text p {
    margin: 0;
}

.tjb-footer .copyright-text a,
.tjb-footer .copyright-text a:hover,
.tjb-footer .copyright-text a:focus-visible {
    color: #22D3EE;
}

.tjb-footer-email a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.tjb-footer-email a:hover {
    color: #22D3EE;
}

.container-inner,
.about-image-part,
.about-content-part,
.about-content-part-bottom,
.single-resume,
.single-project-page-right,
.single-project-page-left,
.call-to-action-part {
    background-color: rgb(18 18 20 / 70%) !important;
}

@media only screen and (max-width: 767px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .main-header .header-upper,
    .main-header .container,
    .main-header .header-inner,
    .nav-outer,
    .main-menu {
        max-width: 100%;
    }

    .main-menu .navbar-collapse {
        left: 0;
        right: 0;
        width: 100%;
    }

    .main-menu .navbar-header .navbar-toggle {
        margin-right: 10px;
    }

    .site-content > section:first-of-type {
        margin-top: 0;
        padding-top: 102px !important;
    }

    .about-area .about-content-part {
        padding-top: 50px;
    }

    .tjb-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .skills-marquee-track {
        gap: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body::before,
    .draw-circle {
        animation: none !important;
    }

    .main-header,
    .site-content,
    .page-transition-overlay {
        transition: none !important;
        transform: none !important;
    }

    body.page-is-loading .main-header,
    body.page-is-loading .site-content,
    body.page-is-leaving .main-header,
    body.page-is-leaving .site-content {
        opacity: 1 !important;
    }

    body.page-is-loading .page-transition-overlay,
    body.page-is-leaving .page-transition-overlay,
    body.page-is-ready .page-transition-overlay {
        opacity: 0 !important;
    }
}

.main-menu .navbar-collapse li.active a {
    color: #22D3EE;
}

.skills-marquee {
    overflow: hidden;
    width: 100%;
    padding-top: 10px;
}

.skills-marquee-track {
    display: flex;
    align-items: center;
    gap: 36px;
    width: max-content;
    animation: skillsScroll 34s linear infinite;
}

.skills-marquee-track img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

@keyframes skillsScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.testimonial-slider {
    position: relative;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.is-active {
    display: block;
}

.testimonials-area .testimonial-item:hover {
    border-color: #22D3EE;
}

.testimonials-area .slider-arrows .arrow {
    background: #111111;
    color: #fff;
    border-color: #22D3EE;
}

.testimonials-area .slider-arrows .arrow:hover,
.testimonials-area .slider-arrows .arrow:focus {
    background: #22D3EE;
    color: #fff;
    border-color: #22D3EE;
}

.resume-item .icon {
    font-size: 22px;
    font-weight: 600;
    background: #111111;
    color: #fff;
    border: 1px solid #111111;
}

.resume-item:hover .icon,
.resume-item .icon:hover {
    background: #22D3EE;
    border-color: #22D3EE;
    color: #fff;
}

.about-social ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
}

.skills-categories-area .skills-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.skills-categories-area {
    padding-top: 15px;
    padding-bottom: 15px;
}

.skills-category-card {
    background: rgb(17 17 20 / 85%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 16px;
    padding: 24px 20px;
}

.skills-category-card h3 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.3;
}

.skills-category-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skills-category-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.skills-category-list img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex: 0 0 auto;
}

.skills-category-list span {
    color: #fff;
    font-weight: 500;
    line-height: 1.35;
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.99);
    transition-property: opacity, transform, filter;
    transition-duration: 760ms;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
    filter: blur(4px);
}

[data-reveal="left"] {
    transform: translate3d(-28px, 0, 0) scale(0.99);
}

[data-reveal="right"] {
    transform: translate3d(28px, 0, 0) scale(0.99);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        filter: none !important;
    }
}

@media only screen and (max-width: 991px) {
    .skills-categories-area .skills-categories-grid {
        grid-template-columns: 1fr;
    }

    .skills-categories-area .skills-category-card {
        margin-bottom: 14px;
    }

    .skills-categories-area .skills-category-card:last-child {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .skills-marquee .skills-marquee-track {
        gap: 9px;
    }
}
