@font-face {
    font-family: 'Audex';
    src: url('./Fonts/Audex.woff2') format('woff2'),  /* Best for modern browsers */
         url('./Fonts/Audex.woff') format('woff'),    /* Fallback for older browsers */
         url('./Fonts/Audex.ttf') format('truetype'), /* Extra fallback */
         url('./Fonts/Audex.otf') format('opentype'); /* Optional for advanced typography */
    font-weight: normal;
    font-style: normal;
}


:root {
    --bg: #000000;
    --text-color: #ffffff;
    --focus-font: 'Audex', monospace, sans-serif;
    --main-font: "Quicksand", sans-serif;
    --logo-color: #F57B28;
    --logo-color2: #EC3951;
    --logo-color3: #0000ff;
    --logo-color4: #7900fb;
    --background-image: linear-gradient(135deg, #F57B28, #EC3951);
}

::selection {
    color: var(--bg);
    background-color: var(--logo-color);
}

::-webkit-scrollbar {
    display: none;
    /* width: 10px; */
    /* background-color: #1e1e1e; */
}

/* ::-webkit-scrollbar-thumb {
    background-color: #adadad;
} */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body  {
    background-color: var(--bg);
    color: var(--text-color);
    font-family: var(--main-font);
    line-height: 1.8;
    font-size: 1.1rem;
    overflow-x: hidden;
}

main {
    transition: padding .3s ease;
}

button {
    all: unset;
    cursor: pointer;
}

.blur-circle {
    border-radius: 50%;
    --size: clamp(100px, 16vw, 800px);
    width: var(--size);
    height: var(--size);
    background: var(--logo-color);
    position: fixed;
    z-index: -999;
    filter: blur(10vw);
    top: 50vh; /* Center vertically */
    left: 50vw; /* Center horizontally */
    animation: moveFigureEight 16s infinite linear;
    transform: translate(-50%, -50%); /* Center the circle */
}

.blur-circle {
    border-radius: 50%;
    --size: clamp(100px, 16vw, 800px);
    width: var(--size);
    height: var(--size);
    background: var(--logo-color);
    position: fixed;
    z-index: -999;
    filter: blur(10vw);
    top: 50vh; /* Center vertically */
    left: 25vw; /* Center horizontally in the left half */
    animation: moveFigureEight 16s infinite linear;
    transform: translate(-50%, -50%); /* Center the circle relative to its position */
}

@keyframes moveFigureEight {
    0% {
        transform: translate(-50%, -50%) translate(calc(15vw * sin(0deg)), calc(10vw * sin(0deg)));
        background: var(--logo-color3);
    }
    12.5% {
        transform: translate(-50%, -50%) translate(calc(15vw * sin(45deg)), calc(10vw * sin(90deg)));
    }
    25% {
        transform: translate(-50%, -50%) translate(calc(15vw * sin(90deg)), calc(10vw * sin(180deg)));
        background: var(--logo-color4);
    }
    37.5% {
        transform: translate(-50%, -50%) translate(calc(15vw * sin(135deg)), calc(10vw * sin(270deg)));
    }
    50% {
        transform: translate(-50%, -50%) translate(calc(15vw * sin(180deg)), calc(10vw * sin(360deg)));
        background: var(--logo-color3);
    }
    62.5% {
        transform: translate(-50%, -50%) translate(calc(15vw * sin(225deg)), calc(10vw * sin(450deg)));
    }
    75% {
        transform: translate(-50%, -50%) translate(calc(15vw * sin(270deg)), calc(10vw * sin(540deg)));
        background: var(--logo-color4);
    }
    87.5% {
        transform: translate(-50%, -50%) translate(calc(15vw * sin(315deg)), calc(10vw * sin(630deg)));
    }
    100% {
        transform: translate(-50%, -50%) translate(calc(15vw * sin(360deg)), calc(10vw * sin(720deg)));
        background: var(--logo-color3);
    }
}

/* .blur-circle2 {
    --size: clamp(40px, 8vw, 400px);
    filter: blur(5vw);
    top: 60vh;
    left: 20vw;
} */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 15px 20px; */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    z-index: 997;
    /* transform: translateY(-100%); */
    /* transition: transform 0.2s ease-in-out; */
}
  
  
.logo {
    display: flex;
    align-items: center;
    margin: 0 clamp(5px, 5vw, 120px);
}

.logo .main-logo {
    /* height: clamp(60px, 20vw, 150px); */
    height: 140px;
    width: auto;
    max-width: 100%;
    transform: translateY(-10%);
    transition: transform 0.3s ease;
}

.logo .main-logo:hover {
    transform: translateY(0);
}

nav {
    margin: 0 2.5vw;
    display: flex;
    flex-direction: row;
    gap: 14px;
}

.read-more-btn,
nav a {
    text-decoration: none;
    /* font-weight: 500; */
    font-size: 1rem;
    font-family: var(--focus-font);
    padding: 0 18px;
    border-radius: 1.05em;
    text-transform: uppercase;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-align: center;
    text-wrap: nowrap;
    height: 40px;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav a > span * {
    display: block;
    /* background-color: red; */
    height: 40px;
}

.read-more-btn:hover,
nav a:hover {
    box-shadow: 4px 4px 20px rgb(0, 0, 0);
    transform: scale(1.1);
}

nav a:first-of-type {
    /* background-color: #ffffff54; */
    background-color: #4c4c4c;
    color: var(--text-color);
    letter-spacing: 1px;
}

.read-more-btn > span,
nav a > span {
    bottom: 14px;
    position: relative;
    transition: bottom .1s ease;
}

nav a:hover > span {
    position: relative;
    bottom: -26px;
}


nav a:last-of-type {
    background-color: var(--text-color);
    color: var(--bg);
    letter-spacing: 0px;
}

.bg-audio {
    all: unset;
    --music-dot-width: 4px;
    background-color: var(--text-color);
    width: 50px;
    height: 42px;
    border-radius: 10rem;
    transition: scale 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--music-dot-width);
}
.bg-audio:hover {
    scale: 1.2;
}
.bg-audio .music-dot {
    display: inline-block;
    border-radius: 10rem;
    width: var(--music-dot-width);
    min-height: var(--music-dot-width);
    background-color: var(--bg);
    transition: height 0.3s ease; /* Increased duration for smoother animation */
}

nav a,
nav #audioToggleBtn {
    box-shadow: 4px 4px 10px #00000056;
}

/* .black-wave {
    position: fixed;
    top: -200px;
    left: -60px;
    z-index: -9;
} */

.star {
    position: absolute;
}

.red-star-left {
    height: clamp(5px, 5vw, 50px);
    top: 14vw;
    left: 4vw;
}

.red-star-right {
    height: clamp(5px, 5vw, 50px);
    top: 38vw;
    right: 4vw;
    filter: blur(0.3vw);
}

.gray-star-left {
    height: clamp(5px, 12vw, 150px);
    top: 40vw;
    left: 12vw;
    filter: blur(0.8vw);
}

.gray-star-right {
    height: clamp(5px, 16vw, 300px);
    top: 10vw;
    right: 5vw;
    filter: blur(1.5vw);
}

.home {
    /* margin-bottom: 20%; */
    display: flex;
    position: relative;
    /* background-color: rgba(255, 0, 0, 0.493); */
    /* height: 50vh; */
    /* padding: 0 5vw; */
}

.title-container {
    /* border: 1px solid blue; */
    font-family: var(--focus-font);
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    height: fit-content;
    text-wrap: nowrap;
    position: relative;
    top: 11.5vw;
    left: 20vw;
}

.short-description-container {
    display: inline-block;
    position: absolute;
    width: 450px;
    max-width: 40vw;
    display: inline-block;
    bottom: 50px;
    left: 18vw;
    margin: 40px;
    border-radius: 30px;
    border: 2px dashed var(--text-color);
    font-size: 1rem;
    background-color: #2851f50f;
    transform-origin: top right;
}

.short-description {
    padding: 20px;
    text-indent: 80px;
    text-align: justify;
}

.short-description-container em {
    font-size: 4em;
    font-weight: bold;
    position: absolute;
    top: -46px;
    left: 44px;
    transition: scale .3s ease-in;
}

.short-description-container:hover em {
    scale: 1.2;
}

.profile-image-container {
    transform: translate(12vw, 4vw);
    position: relative;
    height: fit-content;
    width: 36%;
}

.profile-image {
    width: 100%;
    filter: drop-shadow(-5px -5px 25px rgb(0, 0, 0));
    animation: blur 1s linear;
}

@keyframes blur {
    0% { filter: blur(5px) drop-shadow(-5px -5px 25px #121212); }
    100% { filter: blur(0px) drop-shadow(-5px -5px 25px rgb(0, 0, 0)); }
}

/* Texts */

.title {
    font-size: 8vw;
    /* font-weight: 100; */
    /* letter-spacing: 0.2vw; */
}

.subtitle {
    font-size: 2.2vw;
    letter-spacing: 0.3vw;
    background: linear-gradient(45deg, var(--logo-color), var(--logo-color2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.typing-cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background-color: #b71818;
  animation: blink 0.6s step-end infinite;
}

@keyframes blink {
  from, to { opacity: 1; }
  50% { opacity: 0; }
}


.heading {
    font-size: clamp(2.2rem, 8.5vw, 3rem);
    text-transform: uppercase;
    line-height: 1;
    font-family: var(--focus-font);
    /* font-weight: 100; */
    text-wrap: nowrap;
    width: fit-content;
}

.sub-heading {
    font-family: var(--focus-font);
    /* font-weight: 100; */
    text-wrap: nowrap;
    line-height: 1.5;
    font-size: clamp(1.4rem, 3.5vw, 1.6rem);
    text-transform: uppercase;
    letter-spacing: 0.4vw;
    filter: opacity(50%);
    width: fit-content;
}

.paragraph {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    /* font-weight: 200; */
    /* text-indent: 2em; */
    /* text-align: justify; */
}


/* About */

.about {
    margin: 6% 0 2%;
    /* margin: 120px 0 300px; */
    /* margin: 10% 0 20%; */
    /* background-color: #ffffff10; */
    display: flex;
    justify-content: center;
    padding: 0 5vw;
    width: 100vw;
    align-items: center;
    gap: 5vw;
}

.about-left {
    height: fit-content;
    display: flex;
    flex-direction: column;
    width: 60%;
    /* background-color: red; */
}

.read-more-btn {
    width: fit-content;
    background-color: #4c4c4c;
    margin: 10px 0;
    font-size: .9rem;
}
.read-more-btn > span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.read-more-btn:hover > span {
    position: relative;
    bottom: -14px
}

.more-text {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
}

.more-text.show {
    max-height: 1000px; /* This value is just a fallback; it will be overridden by JS */
    opacity: 1;
}



/* .about-left p {
    max-width: 800px;
} */

/* .about-right {
    background-color: red;
} */

/* .about-right {
    margin: 0 auto;
} */

.about-right {
    position: relative;
    display: flex;
    flex-direction: column;
    width: clamp(300px, 40%, 500px);
    /* width: 40%; */
    padding: 10vw;
    /* padding-bottom: 0; */
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    height: 100%;
    min-height: 500px;
}

.about-right video {
    width: 100%;
    min-width: 290px;
    max-width: 300px;
    /* max-width: 250px; */
    margin-top: -10px;
    position: relative;
    z-index: 0;
    transform: translateY(-10px);
    transition: transform .3s ease-in-out;
}

.download-btn-wrapper:hover ~ video {
    transform: translateY(6px);
}

/* .about-right video:hover {
    transform: translateY(10px);
}

.about-right:hover > video {
    transform: translateY(10px);
} */

.download-btn-wrapper {
    font-family: var(--focus-font);
    text-transform: uppercase;
    --download-btn-width: clamp(320px, 20vw, 280px);
}

.download-btn-wrapper button,
.download-btn-wrapper span {
    letter-spacing: 2px;
}

.download-btn {
    all: unset;
    position: relative;
    width: var(--download-btn-width);
    height: 55px;
    border-radius: 1.4em;
    z-index: 1;
    /* background: linear-gradient(45deg, var(--bg), rgb(8, 8, 8), var(--bg), var(--bg)); */
    background-color: var(--bg);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #5e5e5e;
    font-size: 1rem;
    /* font-weight: 500; */
    letter-spacing: 0.5px;
    color: var(--text-color);
    transition: all 0.3s ease-in-out, width 0s ease-in-out;
    overflow: hidden;
}

.download-btn-wrapper em {
    all: unset;
    display: inline-block;
    font-size: .8em;
    margin-right: .5em;
    opacity: .5;
}

/* .download-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(45deg, rgb(199, 196, 196), rgb(119, 119, 119));
    -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
    mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
} */

.download-btn:hover {
    border-color: var(--logo-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 40px black;
}

.btn-hover-cirle {
    display: inline-block;
    background: linear-gradient(45deg, var(--logo-color), var(--logo-color2));
    --btn-hover-cirle-size: clamp(150px, 50vw, 240px);
    z-index: -1;
    height: var(--btn-hover-cirle-size);
    width: var(--btn-hover-cirle-size);
    position: absolute;
    border-radius: 50%;
    transition: transform 0.15s ease-out, scale 0.4s ease-in-out, opacity 0.2s ease-in-out;
    pointer-events: none;
    scale: 0;
    opacity: 0.2;
    left: -50%;
}

.download-btn:hover .btn-hover-cirle {
    scale: 1;
    opacity: 1;
}

.download-btn2 {
    all: unset;
    width: var(--download-btn-width);
    height: 55px;
    border-radius: 1.4em;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #5e5e5e;
    font-size: 1rem;
    /* font-weight: 500; */
    letter-spacing: 0.5px;
    color: var(--text-color);
    transition: all 0.3s ease-in-out, width 0s ease-in-out, color .1s ease-in-out;
    overflow: hidden;
    position: absolute; /* Keeping absolute positioning */
    background-color: var(--bg); /* Matching .download-btn */
}

/* .download-btn2-text {
    display: inline-block;
} */

/* Hover effect */
.download-btn2:hover {
    border-color: var(--logo-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 40px black;
}

/* Circle effect */
.download-btn2 .btn-hover-circle {
    display: inline-block;
    background: linear-gradient(45deg, var(--logo-color), var(--logo-color2));
    --btn-hover-circle-size: clamp(150px, 50vw, 240px);
    z-index: -1;
    height: var(--btn-hover-circle-size);
    width: var(--btn-hover-circle-size);
    position: absolute;
    border-radius: 50%;
    transition: transform 0.15s ease-out, scale 0.4s ease-in-out, opacity 0.2s ease-in-out;
    pointer-events: none;
    scale: 0;
    opacity: 0.2;
    left: 0;
}

/* Show the circle on hover */
.download-btn2:hover .btn-hover-circle {
    scale: 1;
    opacity: 1;
}

.download-btn2-skeleton {
    position: absolute;
    /* background-color: red; */
    height: 100%;
    width: var(--download-btn-width);
    transform: translate(-50%, -80px);
    left: 50%;
    overflow: visible;
    bottom: 50px;
}

.download-btn2-skeleton a {
    all: unset;
}

.download-btn2 span {
    display: inline-block;
    width: fit-content;
    margin: 0 50%;
    transition: all .2s ease;
}

.download-btn-wrapper:hover .download-btn2 span {
    margin: 0 auto 0 8%;
    rotate: -5deg
}
.download-btn-wrapper:hover .download-btn2 {
    transform: rotate(8deg) translateY(-64px);
    height: 60px;
}

.download-btn-wrapper a {
    all: unset;
}

/* .download-btn3 {
    all: unset;
    height: 55px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(119, 119, 119, 0.5);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: absolute;
    background: linear-gradient(12deg, var(--bg),var(--bg),var(--bg), #ffffff11);
    transform-origin: right bottom;
    z-index: 0;
    width: 1px;
    opacity: 0;
    transform: translateX(20%);
}

.download-btn2:hover ~ .download-btn3 {
    opacity: 1;
    transform: translateX(20%) translateY(-140%);
    width: clamp(180px, 30vw, 280px);
} */




/* .download-btn img {
    width: 100%;
} */

/* .about-right svg * {
    transition: 0.3s ease;
} */

.resume-btn:hover .resume-btn-path {
    stroke:var(--logo-color);
    fill:#1e1e1e
}

/* .download-overlay {
    height: clamp(20px, 9vw, 75px);
    width: 30vw;
    max-width: 250px;
    background-color: transparent;
    position: absolute;
    z-index: 1;
    cursor: pointer;
} */

/* 
.download-resume-btn path {
    transition: fill 0.2s ease-in-out;
    stroke-width:0.03;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:22.9256;
    stroke-dasharray:0.150000 0.090000;
    fill:transparent;
    stroke:var(--logo-color2);
}
.download-text {
    font-family: inherit;
    font-size: 0.16px;
    font-weight: bold;
    text-anchor: middle;
    dominant-baseline: middle;
    fill: var(--logo-color);
}
.download-resume-btn:hover path {
    stroke:white;
}
.download-resume-btn:hover .download-text {
    fill: white;
} */

/* background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI0MTIiIHZpZXdCb3g9IjAgMCAxMDgwIDQxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMDc5LjkxIDM5OS4zMTVDMTA0Ny43IDM4OS44OTIgMTAxMi40OCAzNzkuOTU2IDk2Ni45MTkgMzk4LjI5NUM8NTguOTg0IDQ0MS43MzggODM2LjY4MiAzNjQuMTM5IDcxMi4yNjcgNDA2Ljc3QzY2My40MDYgNDIzLjUxNCA2MTYuMjc1IDM1NS45NDEgNTQzLjAwNiAzOTcuNTgxQzQ3Ni44OCA0MzUuMTYgNDI3LjM3NCAzNjEuMDI5IDMzNy4yMzUgMzk3LjMxMUMyMjkuMzAxIDQ0MC43NTUgMjA3LjAwMyAzNjMuMTU2IDgyLjU4NzQgNDA1Ljc4M0M0NS42Nzc0IDQxOC40MzMgMjQuOTM4NyA0MDguODU2IDAgMzk5LjYyMVYxMS4xNDM3QzkxLjMxMzkgLTI1LjQ0ODIgMTEyLjY2OSA1MS44MzY3IDIwNi4xNzUgMTQuOTAyQzMxNC4zOTEgLTI3LjgzOTUgMzE3LjMwNSA1MC4wMjA4IDQ0MS4zODYgNi40MzA0M0M1MTIuNSAtMTguNTU1OSA1NzMuMjkyIDM4LjE5ODkgNjE1LjcwNCAyNS43NTY4QzY1OC4xMTIgMTMuMzEwNSA2NzYuOTI0IDUuNDQ2OTggNzA2Ljc2NSA0LjcwMDIxQzc1Ni4wNTQgMy40Njc4MiA4MDIuMTE1IDQ0Ljg0NjQgODc0LjA2NiAxNS44ODk2Qzk3OC44ODYgLTI2LjMwMTEgOTY0Ljc0MyA0NS42NTg1IDEwODAgMTAuODAwOUwxMDc5LjkgMTAuODM3NlYzOTkuMzE1SDEwNzkuOTFaIiBmaWxsPSIjRkVGRUZFIi8+Cjwvc3ZnPgo="); */
/* background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8IS0tIENyZWF0b3I6IENvcmVsRFJBVyAyMDIxICg2NC1CaXQpIC0tPg0KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIzMDAwMHB4IiBoZWlnaHQ9IjMwMDBweCIgdmVyc2lvbj0iMS4xIiBzdHlsZT0ic2hhcGUtcmVuZGVyaW5nOmdlb21ldHJpY1ByZWNpc2lvbjsgdGV4dC1yZW5kZXJpbmc6Z2VvbWV0cmljUHJlY2lzaW9uOyBpbWFnZS1yZW5kZXJpbmc6b3B0aW1pemVRdWFsaXR5OyBmaWxsLXJ1bGU6ZXZlbm9kZDsgY2xpcC1ydWxlOmV2ZW5vZGQiDQp2aWV3Qm94PSIwIDAgMTMxNDIuNjEgMTMxNC4yNiINCiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayINCiB4bWxuczp4b2RtPSJodHRwOi8vd3d3LmNvcmVsLmNvbS9jb3JlbGRyYXcvb2RtLzIwMDMiPg0KIDxkZWZzPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KICAgPCFbQ0RBVEFbDQogICAgLmZpbDEge2ZpbGw6I0ZFRkVGRX0NCiAgICAuZmlsMCB7ZmlsbDojMTIxMjEyfQ0KICAgXV0+DQogIDwvc3R5bGU+DQogPC9kZWZzPg0KIDxnIGlkPSJMYXllcl94MDAyMF8xIj4NCiAgPG1ldGFkYXRhIGlkPSJDb3JlbENvcnBJRF8wQ29yZWwtTGF5ZXIiLz4NCiAgPGcgaWQ9Il8xODk4MDQyMTI3MjAwIj4NCiAgIDxyZWN0IGNsYXNzPSJmaWwwIiB3aWR0aD0iMTMxNDIuNjEiIGhlaWdodD0iMTMxNC4yNiIvPg0KICAgPHBhdGggY2xhc3M9ImZpbDEiIGQ9Ik0xMzE0Mi42MSAxMjQ4LjI2Yy0xMTIuNTYsLTQ1LjI2IC0yMTguMDMsLTQ4LjY5IC0zMzEuMjMsLTMuMTkgLTMzMC4wMiwxMzIuNjQgLTM5OC4xMSwtMTA0LjUyIC03NzguNTEsMjUuNjIgLTE0OS40LDUxLjEyIC0yOTMuNDEsLTE1NS40MyAtNTE3LjQ1LC0yOC4yNiAtMjAyLjE5LDExNC43NyAtMzUzLjQ2LC0xMTEuODIgLTYyOS4wNSwtMS4wNSAtMzMwLjAyLDEzMi42NCAtMzk4LjExLC0xMDQuNTIgLTc3OC41MSwyNS42MyAtMjE2LjU5LDc0LjEgLTMxMi41NSwtMTMwLjc0IC01ODMuMjMsLTIxLjk0IC0zMzAuMDIsMTMyLjY0IC0zOTguMTEsLTEwNC41MiAtNzc4LjUxLDI1LjYyIC0xNDkuMzksNTEuMTIgLTI5My40MSwtMTU1LjQzIC01MTcuNDUsLTI4LjI2IC0yMDIuMTksMTE0Ljc3IC0zNTMuNDUsLTExMS44MiAtNjI5LjA1LC0xLjA1IC0zMzAuMDIsMTMyLjY0IC0zOTguMTEsLTEwNC41MiAtNzc4LjUxLDI1LjYzIC0yMTguODgsNzQuODggLTMwMy40NSwtMTMyLjYzIC01NzguODUsLTIxLjk0IC0zMzAuMDIsMTMyLjY0IC0zOTguMTEsLTEwNC41MiAtNzc4LjUsMjUuNjIgLTE0OS40LDUxLjEyIC0yOTMuNDEsLTE1NS40MyAtNTE3LjQ1LC0yOC4yNiAtMjAyLjIsMTE0Ljc3IC0zNTMuNDYsLTExMS44MiAtNjI5LjA2LC0xLjA1IC0zMzAuMDIsMTMyLjY0IC0zOTguMTEsLTEwNC41MiAtNzc4LjUsMjUuNjMgLTIxNi41OSw3NC4xIC0zMTIuNTUsLTEzMC43NCAtNTgzLjI0LC0yMS45NCAtMzMwLjAyLDEzMi42NCAtMzk4LjEsLTEwNC41MiAtNzc4LjUsMjUuNjIgLTE0OS40LDUxLjEyIC0yOTMuNDEsLTE1NS40MyAtNTE3LjQ1LC0yOC4yNiAtMjAyLjE5LDExNC43NyAtMzUzLjQ2LC0xMTEuODIgLTYyOS4wNSwtMS4wNSAtMzMwLjAzLDEzMi42NCAtMzk4LjExLC0xMDQuNTIgLTc3OC41MSwyNS42MyAtMTEyLjYyLDM4LjUzIC0xNzUuOTgsOS40NSAtMjUyLC0xOC43NWwwIC0xMTg3LjM2YzI3OS4xNSwtMTExLjY3IDM0NC4zNiwxMjQuNDkgNjMwLjI0LDExLjczIDMzMC44NywtMTMwLjQ5IDMzOS43LDEwNy40NCA3MTkuMDgsLTI1LjY0IDIxNy40MywtNzYuMjcgNDAzLjIxLDk3LjIzIDUzMi44OCw1OS4yNSAxMjkuNjcsLTM3Ljk5IDE4Ny4xOCwtNjIgMjc4LjQxLC02NC4yNSAxNTAuNjgsLTMuNzIgMjkxLjQ2LDEyMi43OSA1MTEuNDUsMzQuMzcgMjYwLjkxLC0xMDQuODcgMjgwLjczLDIxLjM0IDQ2OS4yLDE0LjQ5IDExOS4yLC00LjMzIDIwMi4zMiwtNzAuNjQgMzIxLjc4LC01OS4zNSAxNDkuMzUsMTQuMTMgMjM5LjY2LDEyNS42NSA0NTMuOTUsNDEuMTMgMzMwLjg3LC0xMzAuNDkgMzM5LjcsMTA3LjQ0IDcxOS4wOCwtMjUuNjQgMjE3LjQzLC03Ni4yNyA0MDMuMjEsOTcuMjMgNTMyLjg4LDU5LjI1IDEyOS42NywtMzcuOTkgMTg3LjE4LC02MiAyNzguNCwtNjQuMjUgMTUwLjY5LC0zLjcyIDI5MS40NiwxMjIuNzkgNTExLjQ1LDM0LjM3IDI2MC45MiwtMTA0Ljg3IDI4MC43NCwyMS4zNCA0NjkuMjEsMTQuNDkgMTA1LjA5LC0zLjgyIDEzNi41OCwtMzguMTkgMjI0LjA4LC01NC43NCAyMTIuNywtNDAuMjMgMjkyLjA1LDEzNy4xOSA1NDcuMjYsMzYuNTIgMzMwLjg4LC0xMzAuNDkgMzM5LjcsMTA3LjQ0IDcxOS4wOCwtMjUuNjQgMjE3LjQzLC03Ni4yNyA0MDMuMjIsOTcuMjMgNTMyLjg5LDU5LjI1IDEyOS42NiwtMzcuOTkgMTg3LjE4LC02MiAyNzguNCwtNjQuMjUgMTUwLjY5LC0zLjcyIDI5MS40NiwxMjIuNzkgNTExLjQ1LDM0LjM3IDI2MC45MSwtMTA0Ljg3IDI4MC43NCwyMS4zNCA0NjkuMjEsMTQuNDkgMTE5LjE5LC00LjMzIDIwMi4zMSwtNzAuNjQgMzIxLjc3LC01OS4zNSAxNDkuMzYsMTQuMTMgMjM5LjY2LDEyNS42NSA0NTMuOTUsNDEuMTMgMzMwLjg4LC0xMzAuNDkgMzM5LjcsMTA3LjQ0IDcxOS4wOCwtMjUuNjQgMjE3LjQzLC03Ni4yNyA0MDMuMjIsOTcuMjMgNTMyLjg4LDU5LjI1IDEyOS42NywtMzcuOTkgMTg3LjE4LC02MiAyNzguNDEsLTY0LjI1IDE1MC42OSwtMy43MiAyOTEuNDYsMTIyLjc5IDUxMS40NSwzNC4zNyAyNjAuOTEsLTEwNC44NyAyODAuNzMsMjEuMzQgNDY5LjIxLDE0LjQ5IDY0LjUzLC0yLjM0IDEwNS41OSwtMTUuODggMTQ1LjQ4LC0yOS45NWwwIDExODcuMzZ6Ii8+DQogIDwvZz4NCiA8L2c+DQo8L3N2Zz4NCg=="); */

.skills {
    --software-size: clamp(80px, 6vw, 100px);
    position: relative;
    padding: 12vw 5vw;
    display: flex;
    align-items: center;
    color: var(--bg);
    text-align: right;
    display: flex;
    justify-content: space-around;

    /* background-image: url("Assets/Loop wave3.svg");
    background-repeat: repeat-x;
    background-size: auto 100%;
    animation: scroll-background 40s linear infinite; */
}

.skills .heading,
.skills .sub-heading {
    margin-left: auto;
}

/* @keyframes scroll-background {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -100% 0;
    }
} */

.loop-wave-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* overflow: hidden; */
}

.loop-wave {
    position: absolute;
    top: 0;
    left: 0;
    height: 105%;
    /* animation: waveLoop 20s linear infinite; */
}

/* @keyframes waveLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
} */

/* .loop-wave-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.loop-wave {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 200%;
} */




figure img,
figure figcaption {
    transition: scale .4s ease;
}

figure:hover img,
figure:hover figcaption {
    scale: 1.1;
}

#affinity-designer-img {
    scale: 1.15;
}
#affinity-designer-img:hover {
    scale: 1.25;
}

/* .patch {
    width: 100vw;
    min-width: 100vw;
    height: auto;
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%) translateY(4%);
} */

.skills-right p {
    max-width: 600px;
    /* margin: 1vw 0; */
    /* font-weight: 600; */
}

.skills-left {
    margin: 0 auto 0 calc(auto -50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: clamp(10px, 4vw, 100px);
    column-gap: clamp(10px, 10vw, 120px);
    transform: translateY(8%);
    text-align: center; /* Centers text below images */
}

.skills-left2 {
    display: none;
}

.skills-left img {
    width: var(--software-size);
    height: auto;
    object-fit: cover;
    filter: drop-shadow(8px 8px 3px rgba(0, 0, 0, 0.25));
}

.skills-left figcaption {
    margin-top: 8px;
    font-size: 1rem;
    /* font-weight: 600; */
    color: #333; /* Adjust color as needed */
    font-family: var(--focus-font);
    /* letter-spacing: 1px; */
    /* text-transform: uppercase; */
}


.software-right {
    /* background-color: gray; */
    /* display: grid; */
    display: flex;
    justify-content: space-evenly;
    transform: translateY(-20%);
}

.text-overlay {
    display: inline-block;
    height: 2rem;
    width: 100%;
    text-align: center;
    font-family: var(--focus-font);
    
}

.software-image-container {
    margin-top: 2rem;
    width: var(--software-size);
    height: var(--software-size);
    border-radius: 100%;
    /* background-color: black; */
    transform-origin: center center;
}

.software-image-container svg,
.software-image-container .text-overlay {
    transition: scale .4s ease;
}

.software-image-container:hover svg,
.software-image-container:hover .text-overlay {
    scale: 1.1;
}

/* .software-image-container * {
    transform: translateY(-2.08rem);
} */

.software-image-container img,
.software-image-container svg {
    width: 101%;
    height: 101%;
    object-fit: contain;
    filter: drop-shadow(8px 8px 3px rgba(0, 0, 0, 0.25));
}

/* .black-circle {
    position: absolute;
    width: var(--software-size);
    height: var(--software-size);
    background-color: var(--bg);
    transform: translateY(-0rem);
    border-radius: 100%;
} */

/* .software-border {
    position: absolute;
} */

.work {
    margin: 10% 0;
    /* background-color: #ffffff10; */
    display: flex;
    justify-content: space-evenly;
    /* padding: 30vw auto; */
    align-items: center;
    /* height: 100vh; */
    padding: 0 5vw;
}

.work-left {
    /* border: 1px solid red; */
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.work-left p {
    max-width: 600px;
}

.work-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    width: clamp(200px, 50vw, 650px);
    height: calc((9 / 16) * clamp(200px, 50vw, 650px));
    background-image: linear-gradient(135deg, #F57B28, #EC3951);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.video-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    z-index: 1;
    transition: filter 0.3s ease;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    position: relative;
    z-index: 2;
}

.video-container:hover {
    box-shadow: 0 0 50px 10px var(--logo-color); /* Box shadow only on hover */
    /* border: 6px solid var(--logo-color); */
}

.video-container:hover::before {
    filter: brightness(5) saturate(0); /* Brightness effect only on background */
}

.logo-vid {
    pointer-events: none;
    user-select: none;
}


.portfolio-btn-container {
    display: flex;
    align-items: center;
    /* background-color: red; */
}

.portfolio-btn-container2 {
    display: none;
}

.portfolio-btn {
    /* background: linear-gradient(45deg, var(--logo-color), var(--logo-color2)); */
    background-color: var(--bg);
    border: 1px solid #5e5e5e;
    padding: 15px 40px;
    font-size: 16px;
    color: var(--text-color);
    text-wrap: nowrap;
    cursor: pointer;
    border-radius: 1.4em;
    font-family: var(--focus-font);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    width: fit-content;
    margin: 2% 0;
    transition: padding 0.3s ease;
    overflow: hidden;
}

.portfolio-btn-container img {
    position: relative;
    height: 40px;
    transform: translate(-20px, 20px);
    /* rotate: ; */
    animation: hand 3s ease infinite;
}

@keyframes hand {
    0%, 100% {
        /* transform: translateX(0px); */
        rotate: 0deg;
        scale: 1.1;
    }
    50% {
        /* transform: translateX(20px); */
        rotate: 10deg;
        scale: 1;
    }
}

.portfolio-btn:hover {
    padding: 15px 50px;
    border-color: var(--logo-color);
}

.portfolio-btn .btn-hover-circle {
    display: inline-block;
    background: linear-gradient(45deg, var(--logo-color), var(--logo-color2));
    --btn-hover-circle-size: clamp(150px, 50vw, 240px);
    z-index: -1;
    height: var(--btn-hover-circle-size);
    width: var(--btn-hover-circle-size);
    position: absolute;
    border-radius: 50%;
    transition: transform 0.15s ease-out, scale 0.4s ease-in-out, opacity 0.2s ease-in-out;
    pointer-events: none;
    scale: 0;
    opacity: 0.2;
    left: 0;
}

.portfolio-btn:hover .btn-hover-circle {
    scale: 1;
    opacity: 1;
}

.service {
    /* height: 100vh; */
    text-align: center;
    padding: 0 5vw;
}

.service .heading,
.service .sub-heading {
    margin-left: auto;
    margin-right: auto;
}

.service p {
    max-width: 900px;
    margin: 0 auto;
    /* padding: 0 5vw; */
    text-align: center;
}

/* GALLERY */

/* .gallery-container {
    position: relative;
    max-width: 100%;
    margin: 40px auto;
    height: fit-content;
    overflow: hidden;
}

.gallery {
    display: flex;
    align-items: center;
    overflow: hidden;
    scroll-behavior: smooth;
    height: 420px;
    min-height: fit-content;
    padding: 0 50%;
    width: 100%;
}

.gallery-item {
    flex: 0 0 auto;
    height: 400px;
    width: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    transform-origin: center center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    background-color: darkgray;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.gallery-item:not(.active) {
    transform: scale(0.8);
    opacity: 0.8;
    filter: brightness(0.9);
    height: 350px;
}

.gallery-item.active {
    transform: scale(1);
    z-index: 2;
}

.gallery-btn-container-left,
.gallery-btn-container-right {
    height: 100%;
    width: clamp(40px, 15vw, 150px);
    min-width: fit-content;
    background-color: var(--bg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-btn-container-left {
    left: 0;
}
.gallery-btn-container-right {
    right: 0;
}

.gallery-btn {
    background: rgba(91, 91, 91, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 4;
}

.gallery-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
} */


/* New Gallery */

/* .gallery { 
    width: 100%;
    margin: 3% 0;
} 

.gallery-container { 
    align-items: center; 
    display: flex; 
    height: 400px; 
    margin: 0 auto; 
    max-width: 1000px;
    position: relative;
} 

.gallery-item { 
    height: 100%;
    width: 300px;
    position: absolute; 
    transition: all 0.3s ease-in-out; 
    z-index: 0;
    border-radius: 15px;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.gallery-item-1 {
    left: 15%;
    transform: translateX(-50%);
    height: 70%;
}

.gallery-item-2 { 
    left: 30%; 
    transform: translateX(-50%); 
} 

.gallery-item-3 { 
    box-shadow: 0 5px 330px 6px rgb(0, 0, 0); 
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.gallery-item-2, .gallery-item-4 { 
    height: 90%;
    z-index: 1;
    filter: brightness(.6);
} 

.gallery-item-1, .gallery-item-5 { 
    filter: brightness(.2);
} 

.gallery-item-4 {
    left: 70%;
    transform: translateX(-50%);
}

.gallery-item-5 {
    left: 85%;
    height: 70%;
    transform: translateX(-50%);
} */

/* .gallery-controls {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    align-items: center;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
    transform: scaleX(-100%);
} */

/* .gallery-controls button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 2rem;
    position: absolute;
    height: 100%;
    width: 50vw;
    color: var(--text-color);
    z-index: 50;
    margin: 0 3%;
} */

/* .gallery-controls button:first-of-type {
    left: -25vw;
}
.gallery-controls button:last-of-type {
    right: -25vw;
} */

.splide {
    margin: clamp(20px, 5vw, 80px) 0;
}

.splide__slide {
    background: linear-gradient(180deg, var(--logo-color), var(--logo-color2));
    height: 400px;
    width: 300px;
    overflow: hidden;
    padding: 20px;
    border-radius: 1.6em;
}

.project-img-container {
    width: 260px;
    height: 260px;
    padding: 10px;
    background: linear-gradient(180deg, var(--logo-color), var(--logo-color2));
    border-radius: 1.6em;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.project-img-container-child {
    width: 100%;
    height: 100%;
}

/* .project-lable-container {
    font-family: var(--focus-font);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
} */

.project-lable {
    padding-top: 1em;
    font-family: var(--focus-font);
    /* font-weight: bold; */
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.06em;
}

.splide__slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

/* .footer-container {
    margin-top: 1rem;
    box-shadow: 0px -2px 30px black;
} */

.footer-border {
    height: 2px;
    background-image: linear-gradient(135deg, #F57B28, #EC3951);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}

footer {
    /* margin-top: clamp(100px, 10vw, 140px); */
    margin-top: 200px;
    position: relative;
    background-color: var(--bg);
    padding: 20px;
    background-image: url(Assets/black-orchid.png);
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

footer .copyright {
    font-size: 14px;

}

footer .copyright a {
    text-decoration: underline;
    color: var(--logo-color);
}

/* .form-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-input {
    background-color: transparent;
    border: 1px solid var(--text-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--focus-font);
    font-weight: 100;
    letter-spacing: 1px;
    padding: 12px 16px;
    width: clamp(100px, 40vw, 600px);
}

.submit-btn {
    margin: 0 30px;
}

footer .copyright a {
    text-decoration: underline;
    color: var(--logo-color);
}

.footer-link-container {
    display: flex;
    flex-direction: row;
    gap: 120px;
    width: fit-content;
}

.footer-link-container a {
    text-decoration: none;
    color: inherit;
}

.footer-link-container li {
    list-style-type: none;
}
.footer-link-container strong {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.footer-link-container .resources,
.footer-link-container .contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
} */


/* From Uiverse.io by mrhyddenn */ 
.scrolldown {
    --color: var(--logo-color2);
    --sizeX: 30px;
    --sizeY: 50px;
    position: fixed;
    width: var(--sizeX);
    height: var(--sizeY);
    margin-left: var(sizeX / 2);
    border: calc(var(--sizeX) / 10) solid var(--color);
    border-radius: 50px;
    box-sizing: border-box;
    margin-bottom: 16px;
    cursor: pointer;
    transform: rotate(180deg);
    right: -100%;
    bottom: 10px;
    background-color: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.scrolldown.show {
    opacity: 1;
    right: 20px;
    bottom: 20px;
}
  
.scrolldown::before {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: var(--color);
    border-radius: 100%;
    animation: scrolldown-anim 2s infinite;
    box-sizing: border-box;
    box-shadow: 0px -5px 3px 1px #672c2c66;
}

@keyframes scrolldown-anim {
    0% {
      opacity: 0;
      height: 6px;
    }
  
    40% {
      opacity: 1;
      height: 10px;
    }
  
    80% {
      transform: translate(0, 20px);
      height: 10px;
      opacity: 0;
    }
  
    100% {
      height: 3px;
      opacity: 0;
    }
}
  
  .chevrons {
    padding: 6px 0 0 0;
    margin-left: -3px;
    margin-top: 48px;
    width: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .chevrondown {
    margin-top: -6px;
    position: relative;
    border: solid var(--color);
    border-width: 0 3px 3px 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
  }
  
  .chevrondown:nth-child(odd) {
    animation: pulse54012 500ms ease infinite alternate;
  }
  
  .chevrondown:nth-child(even) {
    animation: pulse54012 500ms ease infinite alternate 250ms;
  }
  
  @keyframes pulse54012 {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 0.5;
    }
  }


@media (max-width: 1500px) {

    .about,
    .skills,
    .work,
    .service {
        gap: 5vw;
    }
    
    /* .about {
        margin: 120px 0 230px;
    } */
}

@media (max-width: 1400px) {
    .short-description-container {
        margin-bottom: 0;
    }
}
@media (max-width: 1250px) {
    
    /* .about {
        margin: 120px 0 170px;
    } */
    .work {
        /* margin: 20% 0 10%; */
    }
    .logo .main-logo {
        height: 120px;
    }
}

@media (max-width: 1200px) {
    .short-description-container {
        bottom: -50px;
    }
}
@media (max-width: 1050px) {

    /* .home {
        margin-top: 50px;
    }
    main {
        padding-bottom: 50px;
    } */
    /* .patch {
        width: auto;
        height: 800px;
    } */
}

@media (max-width: 940px) {

    .short-description-container {
        left: auto;
        right: 30vw;
        max-width: 50vw;
        width: auto;
    }

    .blur-circle {
        display: none;
    }
    #smooth-content {
        padding-top: 60px;
    }

    .skills {
        /* margin: 20% 0 10%; */
        --software-size: clamp(50px, 50vw, 70px);
        justify-content: center;
        display: block;
    }
    /* .about {
        margin: 80px 0 150px;
    } */
    /* .work {
    margin: 23% 0 8%;
    } */

    .skills-left1 {
        display: none;
    }
    .skills-left2 {
        display: grid;
        margin: 30px auto 50px;
        max-width: 600px;
    }

    .software-right {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .download-btn-wrapper {
        --download-btn-width: clamp(340px, 40vw, 340px);
        padding-top: 40px;
    }

    /* .patch {
        transform: translateX(-50%) translateY(2%);
        height: 900px;
    } */

    .about,
    .skills,
    .work,
    .service {
        flex-direction: column;
        text-align: center;
    }

    .about {
        display: block;
        margin-top: 12%;
    }

    .about-left {
        width: 100%;
    }
    .about-right,
    .about-right * {
        padding: 0;
        margin: 0;
    }
    .about-right {
        width: 90%;
        /* min-width: 250px; */
        margin: 100px auto;
        padding-top: 100px;
    }

    /* .about p,
    .skills p,
    .work p,
    .service p {
        
    } */
    p {
        max-width: 600px;
        margin: 0 auto;
        text-align: justify;
        font-size: clamp(0.6rem, 4.5vw, 1rem);
        text-align-last: center;
    }

    .read-more-btn {
        margin: 20px auto;
    }

    /* .skills .heading,
    .skills .sub-heading,
    .work .heading,
    .work .sub-heading {
        text-align: center;
        width: 100%;
    } */
    
    .heading,
    .sub-heading {
        text-align: center;
        width: 100%;
    }

    .heading {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    
    .sub-heading {
        font-size: clamp(1rem, 2.5vw, 1.8rem);
    }

    .skills-left {
        column-gap: clamp(10px, 5vw, 60px);
    }    

    .skills-right-top { order: 1; }
    .skills-left { order: 2; }
    .software-right { order: 3; }

    nav a {
    padding: 4px 12px;
    font-size: 0.9rem;
    }

    .portfolio-btn-container {
        margin: 5% auto 0;
    }

    .video-container {
        width: clamp(300px, 60vw, 800px);
        height: calc((9 / 16) * clamp(300px, 60vw, 800px));
        background-image: linear-gradient(135deg, #F57B28, #EC3951);
    }
    
    .work {
        display: block;
        margin: 120px 0 80px;
    }
    .video-container {
        margin-top: 40px;
    }

    .portfolio-btn-container {
        margin: 40px auto;
        width: fit-content;
        position: relative;
    }
    .portfolio-btn-container img {
        position: absolute;
        right: 0;
        bottom: 0;
        transform: translateX(50%);
    }
    

}

@media (max-width: 800px) {

    .home {
        flex-direction: column;
        padding: 60px 0;
    }

    .title-container {
        /* border: 1px solid blue; */
        display: block;
        width: fit-content;
        top: 0;
        left: 0;
        margin: 0 auto 40px;
        /* margin-top: -12vw; */
        z-index: 2;
    }
    
    .profile-image-container {
        /* border: 1px solid green; */
        transform: translate(0, 0);
        width: 66%;
        margin: 0 auto;
    }
    
    .profile-image {
        width: 100%;
        filter: drop-shadow(-5px -5px 25px rgb(0, 0, 0));
        animation: blur 1s linear;
    }

    .title {
        font-size: 14vw;
    }
    
    .subtitle {
        font-size: 5vw;
        text-align: center;
        letter-spacing: 0.3vw;
    }
    .portfolio-btn-container {
        display: flex;
        align-items: center;
    }

    .portfolio-btn-container1 {
        display: none;
    }
    .portfolio-btn-container2 {
        display: flex;
    }

    .short-description-container {
        left: 50vw;
        transform: translateX(-50%);
        right: auto;
        max-width: 80vw;
        width: 600px;
        margin: 0;
    }

}

@media (max-width: 700px) {

    #about {
        margin-top: 100px;
    }
    
}

@media (max-width: 530px) {
    .gallery-container {
        height: 300px;
        overflow: hidden;
    }
    .gallery-item {
        width: 200px;
    }
}

@media (max-width: 500px) {
    .software-right {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 5vw;
    }
}

@media (max-width: 430px) {
    .work {
        margin: 180px 0 50px;
    }
    .software-right {
        transform: translateY(-10%);
    }
    
    .skills-left {
        margin-top: 20px;
    }
    
}

@media (max-width: 330px) {
    .video-container {
        margin: 0 5vw;
    }
}

@media (max-width: 300px) {
    .software-right {
        justify-content: space-evenly;
        flex-wrap: wrap;
        gap: 5vw;
    }
}