/* 
    -- Table of Content --

    * # Preloader
    * # Margin
    * # InfoBox
    * # Breadcrumb
    * # Header
    * # About
    * # Project
    * # Project Details
    * # Resume
    * # Service
    * # Blog
    * # Contact
    * # Footer
    * Responsive

*/
:root {
    --primary_color: #ffbc5e;
    --dark: #323232;
}

.particles-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
    border-radius: 50%;
    border: 2px solid var(--primary_color);
    transition: transform 0.3s ease;
    transform-origin: center center;
    pointer-events: none;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grow,
.grow-small {
    transform: scale(2);
    background: #FFFF;
    mix-blend-mode: difference;
    border: none;
    /* border-style: dashed; */
}

.grow-small {
    transform: scale(1);
}



/* Customize the entire scrollbar */
::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
    height: 12px;
    /* Height for horizontal scrollbar */
}

/* Track (background of scrollbar) */
::-webkit-scrollbar-track {
    background: transparent;
    /* Light gray background */
    border-radius: 6px;
    /* Rounded corners */
}

/* Thumb (scrollbar handle) */
::-webkit-scrollbar-thumb {
    background: var(--dark);
    /* Gradient color */
    border-radius: 6px;
    /* Rounded corners */
    border: 3px solid transparent;
    /* Padding between thumb and track */
}

/* Hover effect for thumb */
::-webkit-scrollbar-thumb:hover {
    background: var(--dark);
}


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

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    scroll-behavior: smooth;
    color: #9f9f9f;
    background: #0F0F0F;
    line-height: 19.2px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.text-right {
    text-align: right;
}

.container {
    max-width: 1170px;
}

.gap-24 {
    gap: 24px;
}

.h-full {
    height: 100%;
}


/* # Preloader */
.preloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #111;
    transform-origin: bottom;
    z-index: 111111
}

.preloader .black_wall {
    height: 100%;
    background-color: #222;
    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
}



/* From Uiverse.io by mobinkakei */
#wifi-loader {
    --primary_color: #ffbc5e;
    --background: #62abff;
    --front-color: var(--primary_color);
    --back-color: rgba(255, 188, 94, 0.2);
    --text-color: rgba(255, 188, 94, 0.5);
    width: 86px;
    height: 86px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

#wifi-loader svg {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wifi-loader svg circle {
    position: absolute;
    fill: none;
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-origin: center;
}

#wifi-loader svg.circle-outer {
    height: 86px;
    width: 86px;
    animation: rotate-outer 4.1s linear infinite;
}

#wifi-loader svg.circle-middle {
    height: 60px;
    width: 60px;
    animation: rotate-middle 3.7s linear infinite;
}

#wifi-loader svg.circle-inner {
    height: 34px;
    width: 34px;
    animation: rotate-inner 3.1s linear infinite;
}

#wifi-loader svg.circle-outer circle {
    stroke-dasharray: 251;
    animation: dash-outer 3s ease-in-out infinite;
}

#wifi-loader svg.circle-middle circle {
    stroke-dasharray: 170;
    animation: dash-middle 2s ease-in-out infinite;
}

#wifi-loader svg.circle-inner circle {
    stroke-dasharray: 88;
    animation: dash-inner 1.5s ease-in-out infinite;
}

#wifi-loader svg.circle-outer circle.back {
    stroke: var(--back-color);
}

#wifi-loader svg.circle-middle circle.back {
    stroke: var(--back-color);
}

#wifi-loader svg.circle-inner circle.back {
    stroke: var(--back-color);
}

#wifi-loader svg.circle-outer circle.front {
    stroke: var(--front-color);
}

#wifi-loader svg.circle-middle circle.front {
    stroke: var(--front-color);
}

#wifi-loader svg.circle-inner circle.front {
    stroke: var(--front-color);
}

#wifi-loader .text {
    position: absolute;
    bottom: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: lowercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;
}

#wifi-loader .text::before,
#wifi-loader .text::after {
    content: attr(data-text);
}

#wifi-loader .text::before {
    color: var(--text-color);
}

#wifi-loader .text::after {
    color: var(--front-color);
    animation: pulse 2s ease-in-out infinite;
    position: absolute;
    left: 0;
}

@keyframes rotate-outer {
    0% {
        transform: rotate(0deg) scale(1);
    }

    33% {
        transform: rotate(120deg) scale(1.1);
    }

    66% {
        transform: rotate(240deg) scale(0.9);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes rotate-middle {
    0% {
        transform: rotate(360deg) scale(1);
    }

    40% {
        transform: rotate(210deg) scale(0.9);
    }

    80% {
        transform: rotate(60deg) scale(1.1);
    }

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

@keyframes rotate-inner {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-90deg) scale(1.1);
    }

    75% {
        transform: rotate(-270deg) scale(0.9);
    }

    100% {
        transform: rotate(-360deg) scale(1);
    }
}

@keyframes dash-outer {
    0% {
        stroke-dasharray: 25 100;
        stroke-dashoffset: 0;
    }

    33% {
        stroke-dasharray: 50 75;
        stroke-dashoffset: 125;
    }

    66% {
        stroke-dasharray: 25 100;
        stroke-dashoffset: -125;
    }

    100% {
        stroke-dasharray: 25 100;
        stroke-dashoffset: 0;
    }
}

@keyframes dash-middle {
    0% {
        stroke-dasharray: 25 75;
        stroke-dashoffset: 0;
    }

    40% {
        stroke-dasharray: 50 50;
        stroke-dashoffset: -100;
    }

    80% {
        stroke-dasharray: 25 75;
        stroke-dashoffset: 100;
    }

    100% {
        stroke-dasharray: 25 75;
        stroke-dashoffset: 0;
    }
}

@keyframes dash-inner {
    0% {
        stroke-dasharray: 25 50;
        stroke-dashoffset: 0;
    }

    25% {
        stroke-dasharray: 35 40;
        stroke-dashoffset: 75;
    }

    75% {
        stroke-dasharray: 25 50;
        stroke-dashoffset: -75;
    }

    100% {
        stroke-dasharray: 25 50;
        stroke-dashoffset: 0;
    }
}

@keyframes spin-clockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-counterclockwise {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}







/* # Margin */
.mt-24 {
    margin-top: 24px;
}

.mb-24 {
    margin-bottom: 24px;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.flex-1 {
    flex: 1;
}

.theme-btn {
    background: var(--dark);
    color: #fff;
    display: inline-block;
    transition: .3s;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
}

.theme-btn:hover {
    background: #fff;
    color: var(--dark);
}

.shadow-box {
    position: relative;
    border-radius: 30px;
    background: #0F0F0F;
}

.shadow-box::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background: linear-gradient(to right, rgb(255 255 255 / 15%), rgb(255 255 255 / 1%)); */
    background: linear-gradient(120deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 1%));
    content: '';
    z-index: -1;
    border-radius: 30px;
    margin: -1px;

}

.service-area .service-content-wrap .service-content-inner .service-item::before,
.shadow-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    border-radius: 30px;
    opacity: 0.25;
}

.shadow-box * {
    z-index: 2;
    position: relative;
}

.section-heading {
    color: #ffffff;
    font-size: 74px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -01px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
    justify-content: center;
}

@media (max-width: 1090px) {
    .section-heading {
        font-size: 54px;
    }
}

.section-heading img {
    display: block;
}


/* # InfoBox */
.info-box {
    padding: 24px;
}

.resume-area .resume-sidebar .overlay-link,
.contact-area .contact-form .overlay-link,
.project-details-wrap .project-about-2 .overlay-link,
.project-details-wrap .project-infos-wrap .overlay-link,
.projects-area .project-item .overlay-link,
.about-area .about-edc-exp .overlay-link,
.about-area .about-image-box .overlay-link,
.about-area .about-me-box .overlay-link,
.info-box .overlay-link {
    left: 0;
    top: 0;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    z-index: 9;

}

.resume-area .resume-sidebar .bg-img,
.contact-area .contact-form .bg-img,
.project-details-wrap .project-about-2 .bg-img,
.project-details-wrap .project-infos-wrap .bg-img,
.projects-area .project-item .bg-img,
.about-area .about-edc-exp .bg-img,
.about-area .about-image-box .bg-img,
.about-area .about-me-box .bg-img,
.info-box .bg-img {
    opacity: 0.1;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-box>img {
    display: block;
    margin: auto auto 16px auto;
}

.info-box .infos h4 {
    color: #BCBCBC;
    font-size: 12px;
    opacity: 0.5;
    margin-bottom: 6px;
    text-transform: uppercase;
    margin-top: 8px;
}

.info-box .infos h1 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
}

.info-box .about-btn {
    opacity: 0.2;
    transition: .3s;
    display: inline-block;
}

.info-box:hover .about-btn {
    opacity: 1;
}

.about-edc-exp .about-btn {
    opacity: 0.2;
    transition: .3s;
    display: inline-block;
}

.about-edc-exp:hover .about-btn {
    opacity: 1;
}

.info-box .inner-profile-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px;
    margin-bottom: 16px;
}

.info-box .inner-profile-icons.shadow-box:before {
    opacity: 0.1;
}

.info-box .inner-profile-icons.shadow-box:after {
    opacity: 0.5;
}

.info-box .inner-profile-icons a {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: .3s;
}

.info-box .inner-profile-icons a:hover {
    background: #ffffff;
    color: #0F0F0F;
}

.info-box .inner-profile-icons a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(40px);
}

.info-box .inner-profile-icons a i {
    font-size: 32px;
}

.info-box.about-services-box .icon-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 56px;
    margin-top: 46px;
}

/* Media query for tablet and smaller screens */
@media (max-width: 1030px) {
    .info-box.about-services-box .icon-boxes {
        gap: 50px;
    }
}
/* Media query for tablet and smaller screens */
@media (max-width: 600px) {
    .info-box.about-services-box .icon-boxes {
        gap: 5px;
    }
}


.info-box.about-services-box .icon-boxes i {
    font-size: 40px;
    color: #ffffff;
}


.info-box.about-client-box .clients .client-item {
    position: relative;
    border-radius: 30px;
    text-align: center;
    flex: 1;
    padding: 42px 30px 42px 30px;
}

.info-box.about-client-box .clients .client-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    border-radius: 30px;
}

.info-box.about-client-box .clients .client-item h1 {
    color: #ffffff;
    font-size: 34px;
    margin-bottom: 17px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.info-box.about-client-box .clients .client-item p {
    font-size: 12px;
    color: #BCBCBC;
    opacity: 0.5;
    margin: 0;
    text-transform: uppercase;
}

.info-box.about-contact-box {
    padding-bottom: 42px;
    padding-top: 83px;
}

.info-box.about-contact-box h1 {
    font-size: 44px;
    line-height: 52px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.info-box.about-contact-box h1 span {
    color: var(--primary_color);
}

.info-box.about-contact-box .about-btn {
    position: absolute;
    display: block;
    right: 30px;
    bottom: 35px;
    opacity: 0.2;
    transition: .3s;
}

.info-box.about-contact-box:hover .about-btn {
    opacity: 1;
}

.info-box.about-contact-box .star-icon {
    position: absolute;
    left: 30px;
    top: 0;
    opacity: 0.5;
    margin: 0;
}

.info-box.about-profile-box,
.info-box.about-blog-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



/* # Breadcrumb */
.breadcrumb-area {
    padding-top: 77px;
}

.breadcrumb-area .breadcrumb-content p {
    color: #BCBCBC;
    opacity: 0.7;
    margin-bottom: 24px;
}

.breadcrumb-area .breadcrumb-content .section-heading {
    font-size: 56px;
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.breadcrumb-area .breadcrumb-content .section-heading img {
    display: initial;
}



/* About Dropdown Styles */
.about-dropdown-container {
    position: relative;
    display: inline-block;
}

.about-link {
    cursor: pointer;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    padding: 8px 0;
    text-decoration: none;
}

.about-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 188, 94, 0.5);
    transform: translateY(-4px);
}

.about-dropdown {
    position: absolute;
    top: -370%;
    left: 0;
    background-color: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 0.75rem;
    min-width: 180px;
    border: 1px solid #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top left;
    z-index: 1000;
}

.about-dropdown.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.about-dropdown.hidden {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    visibility: hidden;
}

.about-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.about-dropdown a:last-child {
    margin-bottom: 0;
}

.about-dropdown a:hover {
    background-color: #222;
    color: #ffffff;
}

/* Separate active classes for about and resume */
.about-dropdown a.active-about,
.about-dropdown a.active-resume {
    background-color: #333 !important;
    color: #ffffff;
    font-weight: 500;
}

/* Ensure dropdown is hidden on desktop */
@media (min-width: 768px) {
    .about-dropdown {
        display: none !important;
    }

    .about-link {
        display: none !important;
    }
}

/* Profile Image Animation */
.profile-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.profile-image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.profile-image-container img:first-child {
    animation: fadeInOut 5s infinite;
}

.profile-image-container img:last-child {
    animation: fadeOutIn 5s infinite;
}

@keyframes fadeInOut {
    0%, 30% {
        opacity: 1;
    }
    50%, 80% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOutIn {
    0%, 30% {
        opacity: 0;
    }
    50%, 80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Add a subtle glow effect */
.profile-image-container:hover img {
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

/* Terminal Button Styles */
.terminal-button-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
}

.terminal-button {
    padding: 1rem;
    border-radius: 50%;
    background-color: #1a1a1a;
    border: 1px solid #333;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: levitate 2s ease-in-out infinite;
}

.terminal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Terminal Styles */
.terminal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.terminal-container {
  width: 80%;
  max-width: 800px;
  height: 80vh;
  background-color: rgba(30, 30, 30, 0.7);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.terminal-header {
  display: flex;
  align-items: center;
  padding: 8px;
  background-color: rgba(45, 45, 45, 0.8);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  backdrop-filter: blur(10px);
}

.terminal-title {
  font-size: 14px;
  color: #ffffff;
  margin-left: 12px;
  user-select: none;
}

.terminal-controls {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.terminal-close,
.terminal-minimize,
.terminal-maximize {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: transparent;
  transition: all 0.2s ease;
}

.terminal-close {
  background-color: #ff5f56;
}

.terminal-minimize {
  background-color: #ffbd2e;
}

.terminal-maximize {
  background-color: #27c93f;
}

.terminal-close:hover,
.terminal-minimize:hover,
.terminal-maximize:hover {
  filter: brightness(1.2);
}

.terminal-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.terminal-input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  outline: none;
  caret-color: #4CAF50;
  caret-shape: block;
  caret-width: 2px;
  caret-animation: blink 1s step-end infinite;
  padding: 0;
  margin: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  box-shadow: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.terminal-input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.terminal-input button {
  background-color: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  margin-left: 8px;
  transition: color 0.2s ease;
}

.terminal-input button:hover {
  color: #ffbc5e;
}

.terminal-prompt {
  color: #ffbc5e;
  font-weight: bold;
}

.terminal-output {
  margin-left: 24px;
}

.terminal-command {
  color: #ffffff;
}

.terminal-error {
  color: #ff5f56;
}

.terminal-help {
  color: #27c93f;
}

.terminal-welcome {
  color: #ffbc5e;
  font-weight: bold;
}

.terminal-theme {
  color: #ffbd2e;
  font-weight: bold;
}

.terminal-navigate {
  color: #27c93f;
  font-weight: bold;
}

.terminal-ls {
  color: #ffbd2e;
  font-weight: bold;
}

.terminal-cat {
  color: #27c93f;
  font-weight: bold;
}

.terminal-echo {
  color: #ffffff;
}

.terminal-date {
  color: #ffbc5e;
}

.terminal-whoami {
  color: #ffbd2e;
}


/* # Header */
.header-wrap {
    height: 224px;
    position: relative;
    overflow: hidden;
    background: #323232;
    border-radius: 30px 0 30px 0;
    flex: none;
}

.header-wrap::before,
.header-wrap::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(90deg,
            transparent,
            #ffbc5e,
            var(--primary_color),
            #ffbc5e,
            transparent);
    animation: border-rotate 4s linear infinite;
    z-index: -1;
    margin: -2px;
}

.header-wrap::after {
    animation: border-rotate 4s linear infinite reverse;
    filter: blur(10px);
}

@keyframes border-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 800px) {
    .header-area {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 800px;
        /* background: rgba(var(--dark), 0.2); */
        background: #2222229f;
        backdrop-filter: blur(10px);
        border-radius: 100px;
        padding: 15px 25px;
        box-shadow: 0 8px 32px 0 rgba(var(--primary_color), 0.3), 0 16px 48px 0 rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        z-index: 1000;
        pointer-events: auto;
    }

    .header-area .logo {
        display: inline-block;
        z-index: 16;
    }

    .header-area .logo img {
        display: block;
        width: 35px;
        height: auto;
    }

    .header-area .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-area .navbar .menu {
        display: flex;
        align-items: center;
        gap: 25px;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    .header-area .navbar .menu li {
        position: relative;
    }

    .header-area .navbar .menu li a {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
        display: block;
        padding: 8px 0;
        text-decoration: none;
    }

    .header-area .navbar .menu li a:hover {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(var(--primary_color), 0.5);
        transform: translateY(-4px);
    }

    .header-area .navbar .menu li.active a {
        color: #ffffff;
    }

    .header-area .navbar .menu li.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 4px;
        background-color: white;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .header-area .navbar .menu li:not(.active)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        background-color: white;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .header-area .navbar .menu li:not(.active):hover::after {
        width: 6px;
        height: 6px;
        opacity: 0.5;
    }

    .header-area .show-menu {
        display: none;
        color: #fff;
        font-size: 22px;
        cursor: pointer;
        width: 22px;
        height: 16px;
        flex-direction: column;
        justify-content: space-between;
        z-index: 16;
    }

    .header-area .show-menu span {
        width: 100%;
        height: 2px;
        background: #fff;
        display: block;
        transition: .4s;
        border-radius: 2px;
    }

    .header-area .show-menu.active span:first-child {
        transform: translate3d(0px, 7px, 0px) rotate(45deg);
    }

    .header-area .show-menu.active span:last-child {
        transform: translate3d(0px, -7px, 0px) rotate(-45deg);
    }

    .header-area .show-menu.active span:nth-child(2) {
        opacity: 0;
    }
}




/* # About */
.about-area {
    padding-top: 80px;
}

@media (max-width: 768px) {
    .about-area,
    .resume-area {
        padding-top: 20px !important;
    }
}
@media (max-width: 585px) {
    .about-area .about-me-box {
        flex-direction: column;
    }
    
    .about-area .about-me-box .img-box {
        margin: auto;
    }
}

.about-area .about-me-box {
    position: relative;
    padding: 50px 46px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.about-area .about-me-box .img-box {
    width: 224px;
    height: 224px;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(90deg, #3C58E3 -15%, #C2EBFF 58%, #5AB5E2 97%); */
    background: #2d2d2d;
    /* border-radius: 30px 0 30px 0; */
    border-radius: 30px;
    flex: none;
}

.about-area .about-me-box .img-box img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-area .about-me-box .infos {
    padding-top: 30px;
    position: initial;
}

.about-area .about-me-box .infos h4 {
    color: #BCBCBC;
    opacity: 0.7;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}

.about-area .about-me-box .infos h1 {
    font-size: 36px;
    line-height: 40px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 12px;
}

.about-area .about-me-box .infos p {
    letter-spacing: 0.3px;
    margin: 0;
}

.about-area .about-me-box .infos .about-btn {
    display: block;
    position: absolute;
    right: 30px;
    bottom: 30px;
    opacity: 0.2;
    transition: .3s;
}

.about-area .about-me-box:hover .infos .about-btn {
    opacity: 1;
}

.about-area .about-resume-wrap .banner {
    padding: 17px 25px;
    margin-bottom: 24px;
}

.marquee {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 19px;
    overflow-x: hidden;
}

.marquee div {

    position: absolute;
    white-space: nowrap;
    will-change: transform;
    font-size: 12px;

    animation: marquee 8s linear infinite;
}

.about-area .about-resume-wrap .banner .marquee b {
    color: #fff;
    font-weight: 400;
}

.about-area .about-resume-wrap .banner .marquee img {
    display: inline-block;
    margin: 0 5px;
}

.about-area .about-resume-wrap>.gx-row>* {
    flex: 1;
    width: 50%;
}

.about-area .about-image-box {
    width: 370px;
    flex: none;
    padding: 24px;
    border-radius: 30px;
}

.about-area .about-image-box .image-inner {
    /* background: linear-gradient(90deg, #3C58E3 -15%, #C2EBFF 58%, #5AB5E2 97%); */
    background: #2d2d2d;
    border-radius: 30px;
}

.about-area .about-image-box img {
    display: block;
    border-radius: 30px;
}

.about-area .about-details {
    flex: 1;
}

.about-area .about-details .about-details-inner {
    padding: 115px 60px 30px 30px;
    position: relative;
}

.about-area .about-details .about-details-inner img {
    position: absolute;
    left: 30px;
    top: 0;
}

.about-area .about-details .about-details-inner h1 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
}

.about-area .about-details .about-details-inner p {
    color: #FFFFFF;
    opacity: 0.8;
    line-height: 25px;
    margin: 0;
    font-size: 16px;
}

.about-area .about-edc-exp {
    padding: 30px;
}

.about-area .about-edc-exp h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 23px;
}

.about-area .about-edc-exp ul li+li {
    margin-top: 32px;
}

.about-area .about-edc-exp ul li .date {
    color: #BCBCBC;
    opacity: 0.6;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.about-area .about-edc-exp ul li h2 {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 7px;
}

.about-area .about-edc-exp ul li .type {
    color: #BCBCBC;
    font-size: 14px;
    opacity: 0.6;
    font-weight: 400;
    margin: 0;
}

.main-aboutpage .about-area .about-contact-box {
    padding-top: 102px;
}



/* # Project */


/* Projects Controls */
.projects-controls {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 24px;
    padding: 15px 20px;
    z-index: 1002;
    transition: all 0.3s ease;
}

.search-container {
    flex: 1;
    max-width: 800px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
}

.search-input-group {
    display: flex;
    gap: 8px;
    background: #1a1a1a;
    border-radius: 100px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    transition: all 0.3s ease;
    min-width: 600px;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
}

.search-input-group:focus-within {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--primary_color);
}

.search-input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    border-radius: 100px;
    font-size: 14px;
    outline: none;
    background: transparent;
    color: white;
    font-family: inherit;
    pointer-events: auto;
    position: relative;
    z-index: 1002;
}

.search-input::placeholder {
    color: #888;
    font-style: italic;
}

.search-input:focus {
    background: #222;
}

.search-btn {
    background: var(--primary_color);
    border: none;
    padding: 12px 16px;
    border-radius: 100px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    font-size: 16px;
    pointer-events: auto;
    position: relative;
    z-index: 1002;
}

.search-btn:hover {
    background: #e6a94a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 188, 94, 0.4);
}

.search-btn:active {
    transform: translateY(0);
}

/* Filter Button Styles */
.filter-button-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.filter-button {
    padding: 1rem;
    border-radius: 50%;
    background-color: #1a1a1a;
    border: 1px solid #333;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: levitate 2s ease-in-out infinite;
}

.filter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.filter-dropdown {
    position: absolute;
    bottom: 80px;
    right: 0;
    background-color: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 0.75rem;
    min-width: 220px;
    border: 1px solid #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.filter-dropdown.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.filter-dropdown.hidden {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    visibility: hidden;
}

.category-button {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    border: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.category-button.selected {
    background-color: #333;
    font-weight: 500;
}

.category-button:hover {
    background-color: #222;
}

.category-button.selected:hover {
    background-color: #333;
}

@keyframes levitate {

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

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

@media screen and (max-width: 768px) {
    .projects-controls {
        flex-direction: column;
        gap: 20px;
        padding: 0;
        padding-top: 20px;
    }
    
    .search-container {
        max-width: 100%;
        width: 100%;
    }
    
    .search-input-group {
        min-width: auto;
        width: 100%;
    }
    
    .filter-button-container {
        bottom: 8rem;
    }
    .terminal-button-container {
        bottom: 8rem !important;
    }
    .terminal-container {
        width: 90%;
        height: 40vh;
    }
    .terminal-overlay {
        align-items: start;
        padding-top: 30px;
    }
}

/* Image Modal Styles */
.image-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 0.3s ease-out forwards;
}

.image-modal-overlay.closing {
    animation: fadeOut 0.3s ease-out forwards;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    overflow: visible;
    border-radius: 24px;
    cursor: default;
    background-color: #1a1a1a;
    padding: 1rem;
    opacity: 0;
    transform: scale(0.5);
    transform-origin: var(--origin-x) var(--origin-y);
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.closing .modal-content {
    animation: zoomOut 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #2a2a2a;
    border: 1px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    padding: 0;
    z-index: 1;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background-color: #333;
    transform: scale(1.1);
}

.modal-image {
    max-width: 100%;
    max-height: calc(90vh - 2rem);
    object-fit: contain;
    display: block;
    border-radius: 24px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.5);
    }
}



.projects-area {
    padding-top: 65px;
}

/* .projects-area .container>.section-heading {
    display: none;
} */

.projects-area .section-heading {
    justify-content: center;
    margin-bottom: 15px;
}

.projects-area .project-item {
    margin-bottom: 18px;
    padding: 16px 16px 26px 16px;
    flex-direction: column;
}

.projects-area .project-item .project-img {
    border-radius: 30px;
    margin-bottom: 13px;
    position: relative;
    overflow: hidden;
}

.projects-area .project-item .project-img .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.projects-area .project-item .project-img .image-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: opacity 0.3s ease;
}

.projects-area .project-item .project-img .image-container .blur-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(20px);
    transform: scale(1.1);
    opacity: 0.5;
}

.projects-area .project-item .project-img .image-container .image-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.projects-area .project-item .project-img .image-container .image-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary_color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.projects-area .project-item .project-info p {
    color: #BCBCBC;
    opacity: 0.5;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 2px;
    margin-top: 5px;
}

.projects-area .project-item .project-info h1 {
    font-size: 22px;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
    margin: 0;
}

.projects-area .project-item .project-info span {
    margin-top: auto;
}

.projects-area .project-item .project-btn {
    opacity: 0.2;
    transition: .3s;
    display: inline-block;
}

.projects-area .project-item:hover .project-btn {
    opacity: 1;
}



/* # Project Details */
.project-details-wrap .project-details-img {
    height: 550px;
    position: relative;
    margin-bottom: 50px;
}

.project-details-wrap .project-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-details-wrap .project-infos-wrap {
    position: relative;
    gap: 100px;
    padding: 20px;
}

.project-details-wrap .project-infos-wrap img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.project-details-wrap .project-infos-wrap .bg-img {
    transform: translateX(0);
}

.project-details-wrap .project-infos-wrap .project-details-info {
    position: relative;
    padding: 24px;
}

.project-details-wrap .project-about-2 .left-details:before,
.project-details-wrap .project-infos-wrap .project-details-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    border-radius: 30px;
}

.project-details-wrap .project-infos-wrap .project-details-info p {
    color: #FFFFFF;
    opacity: 0.8;
    font-size: 16px;
    line-height: 1.56;
    margin-bottom: 20px;
}

.project-details-wrap .project-infos-wrap .project-details-info p:last-child {
    margin-bottom: 0;
}

.project-details-wrap .project-infos-wrap .project-details-info h3 {
    color: #BCBCBC;
    opacity: 0.5;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -0.1px;
    margin-bottom: 13px;
}

.project-details-wrap .project-details-2-img {
    height: auto;
    min-height: 400px;
    border-radius: 30px;
}

.project-details-wrap .project-details-3-img img,
.project-details-wrap .project-details-2-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.project-details-wrap .project-details-3-img {
    height: 480px;
    position: relative;
    border-radius: 30px;
}

.project-details-wrap .project-about-2 {
    padding: 36px;
    gap: 80px;
}

.project-details-wrap .project-about-2 .left-details {
    position: relative;
    flex: none;
    padding: 30px 54px;
    width: 290px;
}

.project-details-wrap .project-about-2 .left-details img {
    position: absolute;
    right: 40px;
    top: 0;
}

.project-details-wrap .project-about-2 .left-details ul li+li {
    margin-top: 27px;
}

.project-details-wrap .project-about-2 .left-details ul li p {
    color: #BCBCBC;
    font-size: 18px;
    opacity: 0.6;
    margin-bottom: 10px;
}

.project-details-wrap .project-about-2 .left-details ul li h4 {
    color: #FFFFFF;
    opacity: 0.9;
    font-size: 18px;
    margin: 0;
}

.project-details-wrap .project-about-2 .right-details h3 {
    font-size: 18px;
    color: #BCBCBC;
    opacity: 0.5;
    margin-bottom: 17px;
}

.project-details-wrap .project-about-2 .right-details p {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    line-height: 1.56;
    margin-bottom: 26px;
}

.project-details-wrap .project-about-2 .right-details p:last-child {
    margin-bottom: 0;
}

.project-details-wrap .big-btn {
    margin-top: 100px;
    color: #fff;
    font-size: 20px;
    opacity: 0.9;
    display: block;
    line-height: 1.2;
    padding: 20px 27px;
    transition: .3s;
}

.project-details-wrap .big-btn:hover {
    background: #ffffff;
    color: #0F0F0F;
}



/* # Resume */
.resume-area {
    padding-top: 80px;
}

.resume-area .gx-row {
    gap: 80px;
}


.resume-area .resume-sidebar {
    width: 370px;
    flex: none;
    position: sticky;
}

.resume-area .resume-sidebar .shadow-box {
    padding: 24px 24px 34px 24px;
}

.resume-area .resume-sidebar::after {
    opacity: 0.25;
}

.resume-area .resume-sidebar .img-box {
    background: linear-gradient(90deg, #3C58E3 -15%, #C2EBFF 58%, #5AB5E2 97%);
    border-radius: 30px;
    margin-bottom: 40px;
}

.resume-area .resume-sidebar .img-box img {
    display: block;
    margin: auto;
    border-radius: 30px;
}

.resume-area .resume-sidebar p a {
    color: #BCBCBC;
    opacity: 0.5;
    font-size: 16px;
    margin-bottom: 34px;
}

.resume-area .resume-sidebar h2 {
    color: #ffffff;
    font-weight: 500;
    font-size: 26px;
}

.resume-area .resume-sidebar .social-links {
    gap: 10px;
    margin-bottom: 36px;
}

.resume-area .resume-sidebar .social-links li a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    line-height: 55px;
    color: #fff;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    transition: .3s;
}

.resume-area .resume-sidebar .social-links li a:hover {
    background: #ffffff;
    color: #0F0F0F;
}

.resume-area .resume-sidebar .theme-btn {
    width: 100%;
}


.resume-area .resume-content .resume-about {
    padding-bottom: 110px;
}

.resume-area .resume-edc-exp h2,
.resume-area .resume-content .resume-about h2 {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.resume-area .resume-content .resume-about h2 {
    margin-bottom: 37px;
}

.resume-area .resume-content .resume-about p {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    line-height: 1.56;
    margin-bottom: 30px;
}

.resume-area .resume-content .resume-about p:last-child {
    margin-bottom: 0;
}

.resume-area .resume-experience,
.resume-area .resume-education {
    margin-bottom: 85px;
}

.resume-area .resume-edc-exp h2 {
    margin-bottom: 22px;
}

.resume-area .resume-edc-exp .resume-edc-exp-item+.resume-edc-exp-item {
    margin-top: 58px;
}

.resume-area .resume-edc-exp .resume-edc-exp-item h4 {
    color: #BCBCBC;
    opacity: 0.6;
    font-size: 16px;
    font-weight: 500;
}

.resume-area .resume-edc-exp .resume-edc-exp-item h3 {
    font-size: 18px;
    color: var(--primary_color);
    display: inline-block;
}

.resume-area .resume-edc-exp .resume-edc-exp-item span {
    font-weight: bold;
    line-height: 1.6;
    margin-left: 10px;
    font-size: 0.8em;
    text-transform: uppercase;
    color: black !important;
    border-radius: 10px;
    padding: 0px 10px !important;
    background-color: var(--primary_color);
    display: inline-block;
}

.company-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    border-radius: 50%;
    object-fit: cover;
}

.resume-area .resume-edc-exp .resume-edc-exp-item h5 {
    font-size: 14px;
    color: #BCBCBC;
    opacity: 0.6;
    font-weight: 400;
    display: inline-block;
}

.link-icon {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

.resume-area .resume-edc-exp .resume-edc-exp-item p {
    margin: 0;
    font-size: 16px;
    color: #FFFFFF;
    opacity: 0.8;
    line-height: 1.56;
}

.resume-area .skills-wrap h2 {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.resume-area .skills-wrap .skill-items {
    grid-template-columns: 1fr 1fr;
}

.resume-area .skills-wrap .skill-item {
    width: 50%;
}

.resume-area .skills-wrap .skill-item .percent {
    color: #BCBCBC;
    opacity: 0.6;
    display: block;
    font-weight: 500;
    margin-bottom: 9px;
}

.resume-area .skills-wrap .skill-item .name {
    color: #FFFFFF;
    opacity: 0.9;
    font-size: 18px;
    margin-bottom: 4px;
}

.resume-area .skills-wrap .skill-item p {
    color: #BCBCBC;
    opacity: 0.6;
    font-size: 14px;
    margin: 0;
}

.resume-area .awards-wrap {
    padding-bottom: 100px;
}

.resume-area .awards-wrap.skills-wrap .skill-items {
    grid-template-columns: 1fr;
}

.resume-area .awards-wrap.skills-wrap .skill-item {
    width: 100%;
}








.skills-title {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 49px;
}

.skills2-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.skills2-item {
    position: relative;
    background: var(--border-gradient-onyx);
    padding: 20px;
    border-radius: 14px;
    box-shadow: var(--shadow-2);
    z-index: 1;
}

.skills2-item::before {
    content: "";
    position: absolute;
    inset: 1px;
    background: var(--bg-gradient-jet);
    border-radius: inherit;
    z-index: -1;
}

.skills2-item-title {
    margin-bottom: 15px;
    text-align: start;
    width: 100%;
}

.skills2-content-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 5px;
    text-align: center;
}

@media (min-width: 992px) {
    .skills2-content-box {
        text-align: start;
        grid-template-columns: repeat(4, 1fr);
    }
}



.skill-card {
    cursor: help;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-card:hover .tooltip {
    transform: translateY(0);
    opacity: 1;
}

@keyframes fadeIn {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

.tooltip {
    position: absolute;
    top: -40px;
    background: #0F0F0F;
    min-width: max-content;
    color: white;
    font-size: 15px;
    font-weight: var(--fw-700);
    padding: 5px 10px !important;
    border-radius: 20px !important;
    box-shadow: var(--shadow-1);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-1);
    z-index: 1;
    overflow: hidden;
    border: 1px solid black;
}

.card-icon img {
    width: 48px;
    border-radius: 10px;
}










/* # Service */
.service-area {
    padding-top: 87px;
}

.service-area .container>.section-heading {
    display: none;
}

.service-area .service-sidebar {
    height: 100%;
}

.service-area .service-sidebar .service-sidebar-inner {
    height: 100%;
    padding: 91px 24px 90px 50px;
}

.service-area .service-sidebar .service-sidebar-inner ul {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 100px;
}

.service-area .service-sidebar .service-sidebar-inner ul li {
    font-size: 16px;
    line-height: 16.8px;
    letter-spacing: -1%;
    font-weight: 400;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-area .service-sidebar .service-sidebar-inner ul li i {
    color: #ffffff;
    font-size: 30px;
    display: block;
}

.service-area .service-content-wrap .service-content-inner {
    padding: 27px 30px;
}

.service-area .service-content-wrap .service-content-inner .service-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.service-area .service-content-wrap .service-content-inner .service-item {
    width: calc(50% - 12px);
    padding: 24px 47px 15px 30px;
}

.service-area .service-content-wrap .service-content-inner .service-item h3 {
    color: #BCBCBC;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.56;
    text-transform: uppercase;
    letter-spacing: -1%;
}

.service-area .service-content-wrap .service-content-inner .service-item p {
    color: #ffffff;
    opacity: 0.8;
    line-height: 25px;
    font-size: 14px;
    margin: 0;
}

.service-area .profile-contact-resume-wrap .about-contact-box {
    height: 100%;
    padding-top: 102px;
}



/* # Blog */
.blog-area {
    padding-top: 130px;
}

.blog-sidebar .blog-sidebar-inner .blog-sidebar-widget {
    margin-bottom: 40px;
}

.blog-sidebar .blog-sidebar-inner .blog-sidebar-widget .blog-sidebar-widget-inner {
    padding: 46px 30px 62px 30px;
}

.blog-sidebar .blog-sidebar-inner .search-widget .blog-sidebar-widget-inner {
    padding: 0;
}

.blog-sidebar .blog-sidebar-inner .search-widget form {
    position: relative;
    border-radius: 30px;
}

.blog-sidebar .blog-sidebar-inner .search-widget form::before,
.blog-sidebar .blog-sidebar-inner .search-widget form::after {
    border-radius: 30px;
}

.blog-sidebar .blog-sidebar-inner .search-widget form input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 19px 20px;
    border-radius: 30px;
    color: #ffffff;
}

.blog-sidebar .blog-sidebar-inner .search-widget form input:focus {
    outline: none;
    box-shadow: none;
}

.blog-sidebar .blog-sidebar-inner .search-widget form .theme-btn {
    border: none;
    border-radius: 30px;
    position: absolute;
    right: 6px;
    top: 6px;
}

.blog-sidebar .blog-sidebar-inner .categories-widget ul li,
.blog-sidebar .blog-sidebar-inner .recent-post-widget ul li {
    display: block;
    margin-bottom: 24px;
}

.blog-sidebar .blog-sidebar-inner .categories-widget ul li:last-child,
.blog-sidebar .blog-sidebar-inner .recent-post-widget ul li:last-child {
    margin-bottom: 0;
}

.blog-sidebar .blog-sidebar-inner .categories-widget ul li a,
.blog-sidebar .blog-sidebar-inner .recent-post-widget ul li a {
    display: block;
    line-height: 25px;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.8;
}

.blog-sidebar .blog-sidebar-inner .blog-sidebar-widget h3 {
    color: #BCBCBC;
    opacity: 0.5;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.blog-details-area .blog-details-content .tags,
.blog-sidebar .blog-sidebar-inner .tags-widget ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-details-area .blog-details-content .tags a,
.blog-sidebar .blog-sidebar-inner .tags-widget ul li a {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
}


.blog-area .blog-items {
    padding-right: 85px;
}

.blog-area .blog-items .blog-item+.blog-item {
    margin-top: 70px;
}

.blog-area .blog-items .blog-item .img-box {
    height: 400px;
    position: relative;
    margin-bottom: 70px;
}

.blog-area .blog-items .blog-item .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details-area .blog-details-content .meta,
.blog-area .blog-items .blog-item .content .meta {
    display: block;
    color: var(--primary_color);
    font-size: 16px;
    letter-spacing: -1%;
    font-weight: 400;
    line-height: 16.8px;
    margin-bottom: 10px;
}

.blog-details-area .blog-details-content h1,
.blog-area .blog-items .blog-item .content h1 {
    font-size: 24px;
    line-height: 26.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.blog-area .blog-items .blog-item .content h1 a {
    color: #ffffff;
}

.blog-details-area .blog-details-content p,
.blog-area .blog-items .blog-item .content p {
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
    opacity: 0.8;
    font-weight: 400;
    margin-bottom: 30px;
}


.blog-details-area {
    padding-top: 130px;
}

.blog-details-area .blog-details-content {
    padding-right: 85px;
}

.blog-details-area .blog-details-content .img-box {
    margin-bottom: 70px;
}

.blog-details-area .blog-details-content .img-box img {
    display: block;
    width: 100%;
}

.blog-details-area .blog-details-content h1 {
    color: #ffffff;
}

.blog-details-area .blog-details-content .list {
    margin-bottom: 30px;
}

.blog-details-area .blog-details-content .list li {
    color: #898989;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 24px;
}

.blog-details-area .blog-details-content .list li:last-child {
    margin-bottom: 0;
}

.blog-details-area .blog-details-content .comments-and-form-wrap {
    margin-top: 70px;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comments-and-form-wrap-inner {
    padding: 40px 30px 40px 30px;
}

.blog-details-area .blog-details-content .comments-and-form-wrap h2 {
    font-size: 24px;
    line-height: 26.8px;
    color: #ffffff;
    letter-spacing: -1%;
    margin-bottom: 40px;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #323232;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comments .children {
    padding-left: 80px;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #323232;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-avatar {
    width: 100px;
    height: 100px;
    position: relative;
    flex: none;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-body .date {
    line-height: 16.8px;
    color: var(--primary_color);
    letter-spacing: -1%;
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-body h3 {
    font-size: 24px;
    line-height: 26.8px;
    color: #ffffff;
    letter-spacing: -1%;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-body p {
    color: #898989;
    font-size: 16px;
    line-height: 25px;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comments .comment-list .comment-body .reply-btn {
    padding: 10px 22px;
    font-size: 14px;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group textarea,
.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group input {
    width: 100%;
    border: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 10px;
    padding: 17px 20px;
    font-size: 14px;
    display: block;
    color: #fff;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group {
    margin-bottom: 16px;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group:last-child {
    margin-bottom: 0;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group textarea {
    resize: none;
    height: 145px;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form button {
    border: none;
    width: 100%;
    padding: 18px 30px;
}

.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group textarea:focus,
.blog-details-area .blog-details-content .comments-and-form-wrap .comment-form form .input-group input:focus {
    box-shadow: none;
    outline: none;
}



/* # Contact */
.contact-area {
    padding-top: 80px;
}

.contact-area .contact-form {
    position: relative;
    max-width: 765px;
    width: 100%;
}

.contact-area .contact-form .shadow-box {
    padding: 40px 40px 40px 40px;
}

.contact-area .contact-form img {
    position: absolute;
    top: 0;
    right: 50px;
}

.contact-area .contact-form h1 {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 30px;
}

.contact-area .contact-form h1 span {
    color: var(--primary_color);
}

.contact-area .contact-form form .input-group+.input-group {
    margin-top: 16px;
}

.contact-area .contact-form form .input-group textarea,
.contact-area .contact-form form .input-group input {
    width: 100%;
    border: none;

    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 10px;
    padding: 17px 20px;
    font-size: 14px;
    display: block;
    color: #fff;
}

.contact-area .contact-form form .input-group textarea {
    height: 145px;
    resize: none;
}

.contact-area .contact-form form .input-group textarea:focus,
.contact-area .contact-form form .input-group input:focus {
    outline: none;
    box-shadow: none;
}

.contact-area .contact-form form .input-group button {
    width: 100%;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    padding: 16px 30px;
}

.contact-area .contact-infos {
    width: 290px;
    flex: none;
}

.contact-area .contact-infos h3 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 29px;

}

.contact-area .contact-infos .contact-details {
    margin-bottom: 55px;
}

.contact-area .contact-infos .contact-details li {
    gap: 24px;
}

.contact-area .contact-infos .contact-details li+li {
    margin-top: 70px;
}

.contact-area .contact-infos .contact-details li .icon-box {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    flex: none;
    text-align: center;
    line-height: 75px;
    font-size: 30px;
    color: #ffffff;
}

.contact-area .contact-infos .contact-details li .icon-box::after,
.contact-area .contact-infos .contact-details li .icon-box::before {
    border-radius: 10px;
}

.contact-area .contact-infos .contact-details li .right span {
    display: block;
    color: #BCBCBC;
    font-size: 14px;
    opacity: 0.5;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 7px;
}

.contact-area .contact-infos .contact-details li .right h4 {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.8;
    font-weight: 500;
    margin-bottom: 7px;
}

.contact-area .contact-infos .contact-details li .right h4:last-child {
    margin-bottom: 0;
}

.contact-area .social-links {
    gap: 20px;
}

.contact-area .social-links li a {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: .3s;
    font-size: 30px;
}

.contact-area .social-links li a:hover {
    background: #ffffff;
    color: #0F0F0F;
}

.contact-area .social-links li a:before,
.contact-area .social-links li a:after {
    border-radius: 50%;
}



/* # Footer */
.footer-area {
    padding-top: 128px;
    padding-bottom: 120px;
}

.main-projectspage .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: #676767;
    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: #fff;
}

.footer-area .footer-content .copyright {
    margin: 0;
    color: #727272;
    font-size: 14px;
    font-weight: 500;
}

.footer-area .footer-content .copyright span {
    color: var(--primary_color);
}


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-65.3%);
    }
}

@keyframes loader_running {
    0% {
        transform: scaleX(0);
        transform-origin: left
    }

    49% {
        transform: scaleX(1);
        transform-origin: left
    }

    50% {
        transform: scaleX(1);
        transform-origin: right
    }

    100% {
        transform-origin: right;
        transform: scaleX(0)
    }
}

@keyframes preloader_slide {
    from {
        transform: scaleY(0)
    }

    to {
        transform: scaleY(1)
    }
}




/* Responsive */
@media (max-width: 800px) {
    .container {
        padding: 0 20px;
    }

    .about-area .about-me-box {
        padding: 40px 30px;
    }

    .about-area .about-me-box .img-box {
        width: 190px;
        height: 190px;
    }

    .about-area .about-me-box .infos {
        padding-top: 10px;
    }

    .about-area .about-me-box .infos h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .info-box {
        padding: 20px;
    }

    .info-box>img {
        width: 75%;
    }

    .info-box.about-services-box .icon-boxes {
        margin-bottom: 39px;
        margin-top: 31px;
    }

    .info-box .inner-profile-icons {
        padding: 16px;
    }

    .info-box .inner-profile-icons a {
        width: fit-content;
        height: fit-content;
    }

    .info-box .inner-profile-icons a i {
        font-size: 20px;
    }

    .info-box.about-contact-box .star-icon {
        width: auto;
    }

    .info-box.about-contact-box {
        padding-top: 74px;
    }

    .section-heading {
        font-size: 54px;
    }

    .section-heading img {
        width: 25px;
    }

    .service-area .service-sidebar .service-sidebar-inner {
        padding: 50px 24px;
        height: auto;
    }

    .service-area .service-sidebar .service-sidebar-inner ul {
        justify-content: center;
        gap: 114px;
    }

    .service-area .service-content-wrap .service-content-inner .service-item {
        width: 100%;
        padding-bottom: 30px;
    }
}

@media (max-width: 920px) {
    .about-area .container .row:first-child .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }

    .about-area .about-me-box {
        margin-bottom: 24px;
    }

    .about-area .about-me-box .img-box {
        width: 224px;
        height: 224px;
    }

    .about-area .about-me-box .infos h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .info-box.about-client-box .clients .client-item {
        padding: 42px 10px 42px 10px;
    }

    .info-box.about-client-box .clients .client-item h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .about-area .container>.row:nth-child(2) .blog-service-profile-wrap {
        /* display: grid !important; */
        /* grid-template-columns: 1fr 1fr; */
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* This CSS rule targets each direct child <div> of .blog-service-profile-wrap inside the second .row of .about-area's .container, 
       and sets their width to 50% minus 12px. This is typically used to create a two-column layout with a 24px gap between columns (12px on each side). */
    .about-area .container > .row:nth-child(2) .blog-service-profile-wrap > div {
        width: calc(50% - 12px);
    }

    .about-area .container>.row:nth-child(2) .blog-service-profile-wrap>div:nth-child(2) {
        order: 3;

    }


    .about-area .container>.row:nth-child(3) .col-md-6 {
        width: 100%;
    }

    .info-box.about-client-box {
        margin-bottom: 24px;
    }

    .section-heading {
        font-size: 36px;
        justify-content: center;
    }



    .project-details-wrap .project-about-2,
    .project-details-wrap .project-infos-wrap {
        gap: 24px;
    }

    .breadcrumb-area .breadcrumb-content .section-heading br {
        display: none;
    }
}

@media (max-width: 810px) {
    .resume-area .resume-sidebar {
        width: 300px;
    }

    .resume-area .container .gx-row {
        gap: 40px;
    }

    .about-area .about-me-wrap {
        flex-direction: column;
        gap: 40px;
        align-items: center !important;
    }

    .project-details-wrap .project-infos-wrap {
        flex-direction: column;
        padding: 50px 24px 24px 24px;
    }

    .about-area .about-details .section-heading {
        margin-bottom: 40px;
    }
}

@media (max-width: 300px) {
    .profile-contact-resume-wrap {
      display: flex !important;          /* Use flexbox as requested */
      flex-direction: column !important; /* Arrange items vertically */
      gap: 1em;                          /* Optional: Adds space between items */
  
      /* Explicitly reset grid properties in case they were set elsewhere */
      grid-template-columns: none;
    }
  
    /* Reset any specific grid item styling that might leak from other views */
    .profile-contact-resume-wrap > * {
       grid-column: auto; /* Reset column spanning */
    }
  }
  
  /* --- Tablet View (screens between 769px and 1024px wide) --- */
  /* Creates a grid: 2 items in the first row, 1 item spanning the second row */
  /* ASSUMPTION: .profile-contact-resume-wrap has exactly 3 direct children */
  @media (min-width: 300px) and (max-width: 1024px) {
    .profile-contact-resume-wrap {
      display: grid !important;         /* Switch to grid layout */
      grid-template-columns: 1fr 1fr;   /* Define two equal columns */
      gap: 1em;                         /* Optional: Adds space between grid items */
  
      /* Explicitly reset flex properties */
      flex-direction: row; /* Reset to default or desired row direction */
    }
  
    /* Target the 3rd direct child element */
    .profile-contact-resume-wrap > *:nth-child(3) {
      grid-column: 1 / -1; /* Make it span from the first column line to the last (-1) */
                           /* This ensures it takes the full width of the second row */
    }

    /* Target the 4rd direct child element */
    .profile-contact-resume-wrap > *:nth-child(4) {
      grid-column: 1 / -1; /* Make it span from the first column line to the last (-1) */
                           /* This ensures it takes the full width of the second row */
    }

    /* Target the 5th direct child element */
    .profile-contact-resume-wrap > *:nth-child(5) {
      grid-column: 1 / -1; /* Make it span from the first column line to the last (-1) */
                           /* This ensures it takes the full width of the second row */
    }
  
    /* Ensure first two items don't span (usually default, but explicit reset is safe) */
     .profile-contact-resume-wrap > *:nth-child(1),
     .profile-contact-resume-wrap > *:nth-child(2) {
        grid-column: auto;
     }
  }

@media (max-width: 800px) {
    .header-area {
        padding: 0;
        position: fixed;
        bottom: 20px;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .header-area .navbar {
        position: static;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        /* background: rgba(15, 15, 15, 0.7); */
        background: #22222262;
        backdrop-filter: blur(10px);
        border-radius: 30px;
        padding: 18px 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: 0.3s ease-in-out;
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .header-area .navbar .menu {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        gap: 10px;
        margin: 0;
        padding: 0;
    }

    .header-area .navbar .menu li {
        list-style: none;
    }

    .header-area .navbar .menu li a {
        padding: 8px 12px;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        transition: 0.3s;
    }

    .header-area .navbar .menu li.active a,
    .header-area .navbar .menu li a:hover {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
    }

    .dropdown-item {
        background-color: transparent !important;
    }
    .dropdown-item.active {
        background-color: rgba(255, 255, 255, 0.2) !important;
    }

    /* Hide unnecessary elements */
    .header-area .navbar .theme-btn,
    .header-area .gx-row>.theme-btn,
    .header-area .show-menu,
    .header-area .gx-row,
    .header-area .logo {
        display: none;
    }

    /* Animations */
    @keyframes float {
        0% {
            transform: translateY(0px);
        }

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

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

    .header-area .navbar {
        animation: float 6s ease-in-out infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

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

    .header-area .navbar .menu li a:active {
        animation: pulse 0.3s ease-in-out;
    }



    .contact-area .gx-row,
    .resume-area .container .gx-row {
        flex-direction: column;
    }

    .contact-area .contact-form {
        margin-top: 50px;
    }

    .project-details-wrap .project-about-2 .left-details,
    .contact-area .contact-form,
    .resume-area .resume-sidebar {
        width: 100%;
    }

    .about-area .about-experience {
        margin-bottom: 24px;
    }

    .projects-area .container>.row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .project-details-wrap .project-about-2,
    .projects-area .container>.row .col-md-8>.d-flex {
        flex-direction: column;
    }

    .project-details-wrap .project-details-img {
        height: 300px;
    }

    .breadcrumb-area .breadcrumb-content .section-heading {
        font-size: 36px;
    }

    .service-area .service-sidebar .service-sidebar-inner {
        padding: 50px 24px;
        width: 100%;
        margin: auto auto 30px auto;
    }

    .service-area .service-sidebar .service-sidebar-inner ul {
        gap: 50px;
        max-width: 220px;
        margin: auto;
    }

    .service-area .col-md-8 .section-heading {
        display: none;
    }

    .service-area .container>.section-heading {
        display: flex;
        margin-bottom: 30px;
    }

    .blog-details-area,
    .blog-area {
        padding-top: 40px;
    }

    .blog-details-area .blog-details-content,
    .blog-area .blog-items {
        padding-right: 0;
    }

    .blog-area .blog-items .blog-item .img-box {
        margin-bottom: 50px;
    }

    .blog-sidebar {
        margin-top: 50px;
    }

}

.resume-area .resume-edc-exp .resume-edc-exp-item .gpa {
    color: var(--primary_color);
    font-weight: 500;
    margin: 5px 0;
}

.resume-area .resume-edc-exp .resume-edc-exp-item .details {
    color: #FFFFFF;
    opacity: 0.8;
    margin: 5px 0;
}

.resume-area .resume-edc-exp .resume-edc-exp-item h6 {
    color: var(--primary_color);
    font-size: 16px;
    margin: 10px 0 5px;
    font-weight: 500;
}

.resume-area .resume-edc-exp .resume-edc-exp-item ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.resume-area .resume-edc-exp .resume-edc-exp-item ul li {
    color: #FFFFFF;
    opacity: 0.8;
    font-size: 14px;
    margin: 3px 0;
    padding-left: 15px;
    position: relative;
}

.resume-area .resume-edc-exp .resume-edc-exp-item ul li:before {
    content: "•";
    color: var(--primary_color);
    position: absolute;
    left: 0;
}

/* Project Details Page Specific Styles */
.project-details-wrap {
  padding-top: 80px;
}

.project-details-content {
  margin-bottom: 50px;
}

.project-details-image {
  position: relative;
}

.project-details-image .project-details-2-img {
  position: sticky;
  top: 100px;
  height: calc(100vh - 200px);
  min-height: 500px;
  max-height: 800px;
  border-radius: 30px;
  overflow: hidden;
}

.project-details-info-column {
  min-width: 300px;
}

.project-details-info-column .project-infos-wrap {
  height: auto;
  /* min-height: 200px; */
}

.project-details-info-column .project-details-info {
  position: relative;
  padding: 24px;
}

.project-details-info-column .project-details-info h3 {
  color: #BCBCBC;
  opacity: 0.5;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -0.1px;
  margin-bottom: 13px;
}

.project-details-info-column .project-details-info p {
  color: #FFFFFF;
  opacity: 0.8;
  font-size: 16px;
  line-height: 1.56;
  margin: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
  .project-details-content {
    flex-direction: column;
  }

  .project-details-image .project-details-2-img {
    position: relative;
    top: 0;
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .project-details-info-column {
    width: 100%;
  }
}
