@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Righteous&display=swap');


body {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bodyBg);
    /* font-family: 'Righteous', cursive; */
}


/* ---------------------- Common CSS Section Start ---------------------- */
:root {
    --lightblue: #19ccdf;
    --gray: #3e3e3e;
    --darkGray: #222222;
    --LightGray: #444444;
    --hoverColor: #333333;
    --headingColor: #dadada;
    --textColor: #a1a0a0;
    --headingColorTwo: #002336;
    --bodyBg: #01050b;
}

h2,
h3,
h4,
h5 {
    font-family: 'Righteous', cursive;
}

h2 {
    text-transform: uppercase;
    font-size: 80px;
    line-height: 100px;
    color: var(--lightblue);
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 36px;
}

h5 {
    font-size: 24px;
}

.glass-bg {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.089);
}

.btn {
    width: 180px;
    height: 60px;
    color: var(--headingColor);
    border: 2px solid var(--lightblue);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#tab-content {
    width: calc(100% - 360px - 100px);
    height: 96vh;
    background-image: url(../img/bg8.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px -4px 12px -1px rgba(0, 0, 0, 0.75);
    margin-left: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 0;
    z-index: 10;
    overflow: hidden;
    transition: 0.7s;
}

#particles-js {
  width: 100%;
  height: 96vh; 
}

/* width */
::-webkit-scrollbar {
    width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--lightblue);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--headingColor);
}


.scroll-down {
    width: 40px;
    height: 60px;
    margin: 0 auto;
    border: 1px solid var(--textColor);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: movedown;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

@keyframes movedown {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(40px);
    }
}

.scroll-right {
    width: 60px;
    height: 36px;
    margin: 0 auto;
    border: 1px solid var(--textColor);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: moveright;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.scroll-right img {
    height: 20px;
}

@keyframes moveright {
    from {
        transform: translateX(-20px);
    }

    to {
        transform: translateX(20px);
    }
}

/* ---------------------- Common CSS Section End ---------------------- */

/* ---------------------- Loading Section CSS Start ---------------------- */

.loading {
    width: 100%;
    height: 100%;
    background-color: #01040a;
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

svg {
    width: 40%;
    height: auto;
    stroke: var(--textColor);  
    animation: 3s infinite alternate animate-stroke;
}

@keyframes animate-stroke {
    0% {
        fill: transparent;
        stroke: var(--textColor);
        stroke-width: 1;
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 32%;
    }

    50% {
        fill: transparent;
        stroke: var(--textColor);
        stroke-width: 1;
    }

    80%, 100% {
        fill: var(--lightblue);
        stroke: transparent;
        stroke-width: 0.5;
        stroke-dashoffset: -25%;
        stroke-dasharray: 32% 0;
    }
}

/* ---------------------- Loading Section CSS End ---------------------- */


/* ---------------------- Side Navbar Section CSS Start ---------------------- */
#navbar {
    width: 60px;
    height: 100%;
    background-color: var(--bodyBg);
    padding: 20px 10px 40px;
    position: fixed;
    top: 0;
    left: 0;
    border-right: 1px solid var(--lightblue);
    box-shadow: 7px 0px 14px -5px rgba(0, 0, 0, 0.5);
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    z-index: 999;
}

#navbar nav ul,
#navbar .follow-me ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#navbar nav ul li {
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

#navbar nav ul li img {
    height: 30px;
}

#navbar nav ul li img.img-blue,
#navbar nav ul li img.img-white {
    position: absolute;
}

#navbar nav ul li img.img-blue {
    transition: all 0.5s;
    z-index: 20;
}

#navbar nav ul li img.img-white {
    transform: translateY(60px);
    transition: all 0.5s;
}

#navbar nav ul li:hover img.img-blue {
    transform: translateY(-60px);
    transition: all 0.5s;
}

#navbar nav ul li:hover img.img-white {
    transform: translateY(0px);
    transition: all 0.5s;
}

#navbar nav ul li a {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--lightblue);
    transition: all 0.5s;
}

#navbar nav ul li a:hover {
    background-color: #012235e3;
    transition: all 0.5s;
}

#navbar .follow-me {
    text-align: center;
}

#navbar .follow-me ul li {
    padding-block: 5px;
}

#navbar .follow-me ul li a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    color: var(--lightblue);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s;
    z-index: 99;
}

#navbar .follow-me ul li a:hover {
    color: var(--headingColor);
    transform: scale(1.5);
    transition: all 0.5s;
}

#navbar .follow-me ul li a::before {
    content: "";
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.089);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: -1;
}

#navbar .follow-me ul li a:hover::before {
    transform: scale(0);
    transition: all 0.5s;
}

#navbar .follow-me .text-rotate {
    width: 92px;
    height: 82px;
    color: rgba(255, 255, 255, 0.226);
    font-size: 14px;
    margin-top: 16px;
    transform: rotate(270deg);
}

/* ---------------------- Side Navbar Section CSS End ---------------------- */

/* ---------------------- Responsive Nav CSS Section ---------------------- */
#responsive-navbar {
    width: 100%;
    height: 100px;
    background-image: url(../img/navbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 5px 7px -3px rgba(0, 0, 0, 0.29);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

#responsive-navbar .responsive-nav-inner {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#responsive-navbar .responsive-nav-inner .my-intro {
    display: flex;
    justify-content: left;
    align-items: center;
}

#responsive-navbar .profile-img {
    width: 80px;
    height: 80px;
    border: 2px solid var(--lightblue);
    margin-right: 20px;
}

#responsive-navbar .profile-img img {
    width: 100%;
    height: 100%;
}

#responsive-navbar .responsive-nav-inner .my-intro .intro h4 {
    color: var(--headingColor);
}

#responsive-navbar .responsive-nav-inner .my-intro .intro span {
    font-size: 16px;
    color: var(--textColor);
}

#responsive-navbar .download-cv {
    width: 160px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bodyBg);
    border: 2px solid var(--lightblue);
    border-radius: 10px;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
    overflow: hidden;
}

#responsive-navbar .download-cv a {
    padding: 18px;
    text-decoration: none;
    color: var(--headingColor);
    z-index: 333;
}

#responsive-navbar .download-cv::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-color: var(--lightblue);
    border-radius: 10px;
    z-index: 0;
    transform: rotate(90deg) translateX(-100%) scale(0);
    transition: all 0.5s;
}

#responsive-navbar .download-cv:hover::before {
    transform: rotate(0deg) translateX(0%) scale(1.1);
    transition: all 0.5s;
}

#responsive-navbar .download-cv i {
    font-size: 20px;
}

#responsive-navbar .option-btn {
    color: var(--lightblue);
    font-size: 36px;
    display: none;
}

.side-btn {
    width: 50px;
    height: 50px;
    background-color: transparent;
    box-sizing: border-box;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    z-index: 999;
}

.side-btn span {
    width: 36px;
    height: 3px;
    background-color: #09aeea;
    border: none;
    border-radius: 10px;
    transition: all .5s;
}

.side-btn span:nth-child(1) {
    transform: translateY(-8px);
    width: 22px;
}

.side-btn span:nth-child(3) {
    transform: translateY(8px);
    width: 22px;
}

.side-btn.active span:nth-child(2) {
    transform: translateX(100px);
}

.side-btn.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.side-btn.active span:nth-child(3) {
    transform: translateY(-2px) rotate(-45deg);
}

/* ---------------------- Responsive Nav CSS Section ---------------------- */

/* ---------------------- Introducing Section CSS Start ---------------------- */
#introducing {
    width: 360px;
    height: 100%;
    margin-left: 60px;
    background-image: url(../img/bg6.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    z-index: -1;
    text-align: center;
    padding: 20px;
    z-index: 998;
}

#introducing .profile-img {
    width: 280px;
    height: 280px;
    border: 5px solid var(--lightblue);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#introducing .profile-img::before {
    content: url(../img/doted-object.png);
    position: absolute;
    bottom: -40px;
    right: -34px;
    z-index: -1;
}

#introducing .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#introducing .title {
    margin-top: 40px;
}

#introducing .title h6 {
    color: var(--lightblue);
}

#introducing .title h4 {
    color: var(--headingColor);
    line-height: 32px
}

#introducing .info {
    width: 96%;
    height: 60px;
    padding: 15px 10px;
    box-sizing: border-box;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: var(--headingColor);
    margin: 20px auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#introducing .info h6 {
    font-size: 16px;
}

#introducing .personal-info {
    margin-top: 20px;
}

#introducing .personal-info .info-box .icon-box {
    width: 60px;
    text-align: center;
    margin-bottom: 10px;
    display: inline-block;
}

#introducing .personal-info .info-box span {
    color: var(--headingColor);
    padding-left: 10px;
}

#introducing .personal-info .info-box a {
    text-decoration: none;
    color: var(--headingColor);
    padding-left: 10px;
}

#introducing .personal-info .icon-box img {
    height: 30px;
}

#introducing .personal-info .info-box {
    display: flex;
    justify-content: left;
    align-items: center;
}

#introducing .download-cv {
    width: 280px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: var(--bodyBg);
    border: 3px solid var(--lightblue);
    margin: 20px auto 0;
    border-radius: 10px;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
    overflow: hidden;
}

#introducing .download-cv a {
    width: 100%;
    padding: 20px;
    text-decoration: none;
    color: var(--headingColor);
    z-index: 333;
}

#introducing .download-cv::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-color: var(--lightblue);
    border-radius: 10px;
    z-index: 0;
    transform: rotate(90deg) translateX(-100%) scale(0);
    transition: all 0.5s;
}

#introducing .download-cv:hover::before {
    transform: rotate(0deg) translateX(0%) scale(1.1);
    transition: all 0.5s;
}

#introducing .download-cv i {
    font-size: 24px;
}

#introducing .freelance {
    margin-top: 15px;
    display: block;
    font-size: 16px;
}

#introducing .freelance a {
    text-decoration: none;
    color: var(--headingColor);
}

#introducing .freelance i {
    font-size: 14px;
    color: var(--lightblue);
    margin-top: 5px;
}

#introducing .legal {
    font-size: 14px;
    color: var(--headingColor);
    margin-top: 20px;
}

/* ---------------------- Introducing Section CSS End ---------------------- */

/* ---------------------- Responsive introduction slide Section CSS Start ---------------------- */
#introduction {
    width: 100%;
    height: 100%;
    padding-bottom: 100px;
    background-image: url(../img/bg6.jpg);
    background-size: cover;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 995;
    overflow-x: hidden;
    overflow-y: scroll;
    display: none;
}

#introduction .introduction-info {
    width: 100%;
    padding: 160px 20px;
    position: absolute;
    top: 45%;
    left: 14px;
    right: 0;
    transform: translateY(-50%);
}

#introduction .image-box {
    width: 80%;
    height: 80%;
    margin: 40px auto 10px auto;
    text-align: center;
}

#introduction .image-box img {
    width: 100%;
    object-fit: cover;
}

#introduction .profile-info {
    width: 100%;
    height: 100%;
}

#introduction .profile-info .title {
    margin-top: 20px;
}

#introduction .title h6 {
    color: var(--lightblue);
}

#introduction .title h4 {
    color: var(--headingColor);
    line-height: 32px
}

#introduction .info {
    width: 100%;
    height: 60px;
    padding: 15px 10px;
    box-sizing: border-box;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: var(--headingColor);
    margin: 20px auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#introduction .info h6 {
    font-size: 18px;
}

#introduction .personal-info .info-box .icon-box {
    width: 60px;
    text-align: center;
    margin-bottom: 10px;
    display: inline-block;
}

#introduction .personal-info .info-box span {
    color: var(--headingColor);
    padding-left: 10px;
}

#introduction .personal-info .info-box a {
    text-decoration: none;
    color: var(--headingColor);
    padding-left: 10px;
}

#introduction .personal-info .icon-box img {
    height: 30px;
}

#introduction .personal-info .info-box {
    display: flex;
    justify-content: left;
    align-items: center;
}

#introduction .follow-me {
    margin-block: 20px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
}

#introduction .follow-me .find-me {
    font-size: 20px;
    color: var(--headingColor);
}

#introduction .follow-me .social-touch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

#introduction .follow-me a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    color: var(--lightblue);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s;
    z-index: 99;
}

#introduction .follow-me a:hover {
    color: var(--headingColor);
    transform: scale(1.5);
    transition: all 0.5s;
}

#introduction .follow-me a::before {
    content: "";
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.089);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: -1;
}

#introduction .follow-me a:hover::before {
    transform: scale(0);
    transition: all 0.5s;
}

#introduction .freelancing {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

#introduction .download-cv {
    width: 200px;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bodyBg);
    border: 3px solid var(--lightblue);
    border-radius: 10px;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
    overflow: hidden;
}

#introduction .download-cv a {
    padding: 20px;
    text-decoration: none;
    color: var(--headingColor);
    z-index: 333;
}

#introduction .download-cv::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-color: var(--lightblue);
    border-radius: 10px;
    z-index: 0;
    transform: rotate(90deg) translateX(-100%) scale(0);
    transition: all 0.5s;
}

#introduction .download-cv:hover::before {
    transform: rotate(0deg) translateX(0%) scale(1.1);
    transition: all 0.5s;
}

#introduction .download-cv i {
    font-size: 24px;
}

#introduction .freelance {
    margin-top: 15px;
    display: block;
    font-size: 16px;
}

#introduction .freelance a {
    text-decoration: none;
    color: var(--headingColor);
}

#introduction .freelance i {
    font-size: 14px;
    color: var(--lightblue);
    margin-top: 5px;
}

#introduction .legal {
    font-size: 14px;
    color: var(--headingColor);
    margin-top: 20px;
}

/* ---------- Responsive introduction slide Section CSS End ---------- */

/* ---------------------- Responsive Custom-Nav CSS Section Start ---------------------- */
#responsive-nav-btn {
    display: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background-color: var(--bodyBg);
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 30px;
    overflow: hidden;
    z-index: 999;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-btn img {
    width: 66%;
    height: 66%;
    object-fit: cover;
}

#custom-nav {
    width: 50px;
    height: 50px;
    background-color: var(--bodyBg);
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 20px;
    right: 30px;
    overflow: hidden;
    z-index: 996;
    transition: all 0.5s;
    display: none;
}

#custom-nav.active {
    height: 400px;
    transition: all 0.5s;
}

#custom-nav .responsive-nav {
    width: 50px;
    height: auto;
}

#custom-nav .responsive-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#custom-nav .responsive-nav ul li {
    width: 50px;
    height: 50px;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#custom-nav .responsive-nav ul li:hover {
    background-color: var(--hoverColor);
    transition: all 0.5s;
}

#custom-nav .responsive-nav ul li img {
    width: 30px;
}

/* ---------------------- Responsive Custom-Nav CSS Section End ---------------------- */

/* ---------------------- Banner Section CSS Start ---------------------- */
#banner {
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    transition: 0.8s;
}

#banner .banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 100px 0;
}

.word {
    position: absolute;
    opacity: 0;
}

.letter {
    display: inline-block;
    position: relative;
    transform: translateZ(25px);
    transform-origin: 50% 50% 25px;
}

.letter.out {
    transform: rotateX(90deg);
    transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
    transform: rotateX(-90deg);
}

.letter.in {
    transform: rotateX(0deg);
    transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#banner .banner-container .banner-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--lightblue);
    position: relative;
}

#banner .banner-container .banner-img::before {
    content: url(../img/object-2.svg);
    width: 150px;
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    z-index: -1;
}

#banner .banner-container .banner-img::after {
    content: url(../img/object-2.svg);
    width: 150px;
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    z-index: -1;
}

#banner .banner-container .banner-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

#banner .banner-container .banner-text-content {
    margin-top: 20px;
    text-align: center;
}

#banner .banner-container .banner-text-content h2 {
    font-size: 90px;
}

#banner .banner-container .banner-text-content .greet {
    font-size: 16px;
    font-weight: 300;
    color: var(--headingColor);
}

#banner .banner-container .banner-text-content .job-title {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 500;
    color: var(--textColor);
    /* border: 1px solid var(--lightblue); */
    letter-spacing: 1px;
    position: relative;
}

#banner .banner-container .banner-text-content .job-title::before {
    content: "";
    width: 18px;
    height: 1px;
    border-radius: 50px;
    background-color: var(--textColor);
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}

#banner .banner-container .banner-text-content .job-title::after {
    content: "";
    width: 18px;
    height: 1px;
    border-radius: 50px;
    background-color: var(--textColor);
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

#banner .banner-container .follow-me {
    width: 68%;
    margin: 0 auto;
    margin-block: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#banner .banner-container .follow-me a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    color: var(--lightblue);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s;
    z-index: 98;
}

#banner .banner-container .follow-me a:hover {
    color: var(--headingColor);
    transform: scale(1.5);
    transition: all 0.5s;
}

#banner .banner-container .follow-me a::before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.089);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: -1;
}

#banner .banner-container .follow-me a:hover::before {
    transform: scale(0);
    transition: all 0.5s;
}

#banner .banner-container .banner-text-content .banner-btn {
    width: 360px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#banner .banner-container .banner-text-content .banner-btn .hire-me {
    width: 120px;
    height: 55px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--headingColor);
    position: relative;
    transition: all 0.7s;
    z-index: 1;
}

#banner .banner-container .banner-text-content .banner-btn .hire-me:hover {
    color: var(--headingColorTwo);
    transition: all 0.7s;
}

#banner .banner-container .banner-text-content .banner-btn .hire-me::before {
    content: "";
    width: 2.5%;
    height: 100%;
    background-color: var(--lightblue);
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.7s;
    z-index: -1;
}

#banner .banner-container .banner-text-content .banner-btn .hire-me:hover::before {
    width: 100%;
    transition: all 0.7s;
}

#banner .banner-container .banner-text-content .banner-btn .consult-btn {
    width: 180px;
    height: 55px;
    padding-inline: 20px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.5s;
}

#banner .banner-container .banner-text-content .banner-btn .consult-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transition: all 0.5s;
}

#banner .banner-container .banner-text-content .banner-btn .consult-btn a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--headingColor);
    font-size: 14px;
    transform: translateX(0px);
    transition: all 0.5s;
}

#banner .banner-container .banner-text-content .banner-btn .consult-btn:hover a {
    transform: translateX(-10px);
    transition: all 0.5s;
}

#banner .banner-container .banner-text-content .banner-btn .consult-btn img {
    transform: translateX(0px);
    opacity: 1;
    transition: all 0.5s;
}

#banner .banner-container .banner-text-content .banner-btn .consult-btn:hover img {
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.5s;
}


/* ---------------------- Banner Section CSS End ---------------------- */

/* ---------------------- About Section CSS Start ---------------------- */

#about {
    width: 100%;
    height: 100%;
    padding: 40px 20px 60px;
    position: absolute;
    transform: translateY(-100%);
    opacity: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: 0.8s;
}

#about .about-container .about-title {
    color: var(--headingColor);
    margin-top: 40px;
}

#about .about-description p {
    color: var(--textColor);
    text-align: justify;
}

#about .interest-area,
#about .knowledge-info {
    width: 100%;
    margin-top: 40px;
}

#about .interest-area h5,
#about .knowledge-info h5 {
    color: var(--headingColor);
}

#about .knowledge-info .knowledge-box {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

#about .knowledge-info .knowledge-item {
    min-width: 120px;
    height: 30px;
    padding: 5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    color: var(--textColor);
    display: flex;
    justify-content: center;
    align-items: center;
}

#about .interest-area .passion-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
}

#about .interest-area .passion-type .passion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

#about .interest-area .passion-type .passion .passion-icon {
    width: 45px;
    height: 45px;
    background-color: var(--lightblue);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about .interest-area .passion-type .passion .passion-icon img {
    width: 60%;
    height: 60%;
    object-fit: cover;
}

#about .interest-area .passion-type .passion .passion-title {
    font-size: 20px;
    font-weight: 300;
    color: var(--textColor);
}

#about .experties {
    margin-top: 15px;
}

#about .experties h3 {
    color: var(--lightblue);
    margin-bottom: 24px;
}

#about .experties .why-choose {
    width: 100%;
    min-height: 120px;
    padding: 20px;
    box-sizing: border-box;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

#about .experties .why-choose span {
    color: var(--textColor);
    font-size: 16px;
    margin-left: 30px;
    position: relative;
}

#about .experties .why-choose span::before {
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--textColor);
    position: absolute;
    top: 50%;
    left: -24px;
}

/* ---------------------- About Section CSS End ---------------------- */

/* -------------- Resume Section CSS Start -------------- */
#resume {
    width: 100%;
    height: 100%;
    padding: 40px 20px 60px;
    position: absolute;
    transform: translateY(-100%);
    opacity: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: 0.8s;
}

#resume .resume-title {
    color: #fff;
    text-align: center;
    margin-block: 20px;
}

#resume .resume-container .resume-info .resume-type {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

#resume .resume-container .resume-info .resume-type h5 {
    color: var(--lightblue);
}

#resume .resume-info .resume-items {
    width: 100%;
    min-height: 160px;
    display: flex;
    justify-content: left;
    gap: 20px;
}

#resume .resume-info .resume-items .resume-icon {
    width: 10%;
    min-height: 160px;
}

#resume .resume-info .resume-items .resume-icon .img-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /* background-color: var(--lightblue); */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#resume .resume-info .resume-items .resume-icon .img-box::before {
    content: "";
    width: 0.5px;
    height: 60px;
    background-color: var(--textColor);
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
}

#resume .resume-info .resume-items .edu-info {
    width: 90%;
    padding: 0;
}

#resume .resume-info .resume-items .edu-info .year {
    font-size: 20px;
    line-height: 12px;
    margin: 10px 0;
    color: var(--lightblue);
}

#resume .resume-info .resume-items .edu-info .edu-title {
    font-size: 20px;
    color: var(--headingColor);
}

#resume .resume-info .resume-items .edu-info p {
    font-size: 14px;
    color: var(--textColor);
}

#resume .resume-info .resume-items .resume-icon img {
    width: 70%;
}

#resume .about-description {
    color: var(--headingColor);
    text-align: justify;
}

#resume .skills-title {
    color: var(--lightblue);
}

#resume .progressing {
    margin-top: 28px;
}

#resume .progressing .level {
    color: var(--lightblue);
}

#resume .progressing .progressing-bar {
    max-width: 100%;
    height: 5px;
    background-color: var(--bodyBg);
    border-radius: 50px;
    margin-top: 10px;
    padding: 1px;
}

#resume .progressing .progressing-bar .progressing-fill {
    height: 100%;
    background-color: var(--lightblue);
    width: 0;
    opacity: 0;
    transition: 1s ease 0.3s;
    position: relative;
}

/* ---------------------- Resume Section CSS End ---------------------- */

/* ---------------------- Services Section CSS Start ---------------------- */
#services {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: absolute;
    transform: translateY(-100%);
    opacity: 0;
    transition: 0.8s;
}

#services .services-heading {
    color: var(--headingColor);
}

#services .service-item {
    width: 100%;
    height: 400px;
    margin-block: 100px;
    margin-inline: auto;
    position: relative;
    border-right: 15px solid var(--lightblue);
    z-index: 5;
    transition: all 0.5s;
}

/* #services .service-item .ui {
    background-image: url(../img/uiux.png);
    background-size: cover;
    background-repeat: no-repeat;
} */

#services .service-item .front {
    position: absolute;
    transform: perspective(600px) rotateY(0deg);
    width: 100%;
    height: 400px;
    backface-visibility: hidden;
    /* cant see the backside elements as theyre turning around */
    transition: transform .5s linear 0s;
}

#services .service-item .back {
    padding: 10px 20px;
    background-color: var(--bodyBg);
    position: absolute;
    transform: perspective(600px) rotateY(180deg);
    border: 1px solid #44444485;
    width: 100%;
    height: 400px;
    backface-visibility: hidden;
    /* cant see the backside elements as theyre turning around */
    transition: transform .5s linear 0s;
}

#services .service-item:hover>.front {
    transform: perspective(600px) rotateY(-180deg);
}

#services .service-item:hover>.back {
    transform: perspective(600px) rotateY(0deg);
}

#services .service-item::before {
    content: "";
    width: 54%;
    height: 15px;
    background-color: var(--lightblue);
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 5;
}

#services .service-item::after {
    content: "";
    width: 54%;
    height: 15px;
    background-color: var(--lightblue);
    position: absolute;
    bottom: -15px;
    right: -15px;
    z-index: 5;
}

#services .service-item .overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(1, 5, 11, 1) 15%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.5s;
    opacity: 0;
}

#services .service-item:hover .overlay {
    opacity: 1;
    transition: all 0.5s;
}

#services .service-item .service-type {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 10PX;
    overflow: hidden;
}

#services .service-item .service-type .service-info {
    width: 100%;
    height: 400px;
    transition: all 0.5s;
}

#services .service-item .service-type .service-info {
    transform: translateY(0);
}

#services .service-item .service-type .service-info .scroll-down img {
    width: 16px;
}

#services .service-item .service-type .service-info .service-icon {
    width: 60px;
    height: 60px;
    margin: 30px auto 10px auto;
    border-radius: 50%;
    border: 2px solid var(--headingColor);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.5s;
}

#services .service-item .service-type .service-info .service-icon::before {
    content: "";
    width: 2px;
    height: 54px;
    background-color: var(--headingColor);
    position: absolute;
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s;
}

#services .service-item .service-type .service-info .service-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

#services .service-item .service-type .service-info .services-text-info {
    margin-top: 10px;
}

#services .service-item .service-type .service-info .services-text-info .service-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--headingColor);
    text-align: center;
    margin-bottom: 10px;
}

#services .service-item .service-type .service-info .services-text-info .service-description P {
    font-size: 16px;
    color: var(--textColor);
    text-align: center;
    margin-bottom: 20px;
}

#services .service-item .service-type .service-info .services-text-info .service-description .read-more {
    width: 40px;
    height: 40px;
    text-align: right;
}

#services .service-item .service-type .service-info .services-text-info .scroll-right {
    margin-top: 60px;
}

#services .service-item .service-detail {
    padding: 10px 0;
}

#services .service-item .service-detail .proficiency {
    width: 90%;
    height: 50px;
    margin: 0 auto;
    color: var(--headingColor);
    text-align: center;
    text-transform: uppercase;
    font-family: 'Righteous', cursive;
    font-size: 20px;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#services .service-item .service-detail ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

#services .service-item .service-detail ul li {
    height: 40px;
    margin: 0 auto;
    padding-inline: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#services .service-item .service-detail ul li a {
    text-decoration: none;
    color: var(--lightblue);
    font-size: 18px;
    font-weight: 300;
}

#services .service-item .service-detail .usage {
    width: 90%;
    height: 50px;
    margin: 20px auto 0;
    color: var(--headingColor);
    text-align: center;
    text-transform: uppercase;
    font-family: 'Righteous', cursive;
    font-size: 20px;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#services .service-item .service-detail .tools-detail {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

#services .service-item .service-detail .tools-detail .img-box {
    width: 50px;
    height: 50px;
    margin-top: 10px;
}

#services .service-item .service-detail .tools-detail .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#services .owl-carousel {
    margin-top: 20px;
    height: 100%;
}

#services .owl-dots {
    text-align: center;
    padding-top: 15px;
}

#services .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    margin: 0 3px;
}

#services .owl-dots button.owl-dot.active {
    background-color: var(--lightblue);
}

#services .owl-dots button.owl-dot:focus {
    outline: none;
}

#services .read-more-btn {
    width: 170px;
    height: 50px;
    padding-inline: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin: 20px auto 20px;
    cursor: pointer;
    transition: all 0.5s;
}

#services .read-more-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transition: all 0.5s;
}

#services .read-more-btn a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--headingColor);
    font-size: 14px;
    transform: translateX(0px);
    transition: all 0.5s;
}

#services .read-more-btn:hover a {
    transform: translateX(-10px);
    transition: all 0.5s;
}

#services .read-more-btn img {
    transform: translateX(0px);
    opacity: 1;
    transition: all 0.5s;
}

#services .read-more-btn:hover img {
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.5s;
}

/* ---------------------- Services Section CSS End ---------------------- */


/* ---------------------- Portfolio Section CSS Start ---------------------- */
#portfolio {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: absolute;
    transform: translateY(-100%);
    opacity: 0;
    transition: 0.8s;
}

#portfolio .portfolio-tab {
    margin-top: 40px;
}

#portfolio .portfolio-tab ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#portfolio .portfolio-tab ul li {
    /* width: 80%; */
    min-width: 210px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin: 10px auto;
    padding: 0 20px;
    cursor: pointer;
}

#portfolio .portfolio-tab ul li:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transition: all 0.7s;
}

#portfolio .portfolio-tab ul li.active {
    background-color: #ffffff3b;
}

#portfolio .portfolio-tab ul li a {
    font-size: 18px;
    color: var(--headingColor);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transform: translateX(0px);
    transition: all 0.5s;
}

#portfolio .portfolio-tab ul li:hover a {
    transform: translateX(-10px);
    transition: all 0.5s;
}

#portfolio .portfolio-tab ul li img {
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.5s;
}

#portfolio .portfolio-tab ul li:hover img {
    transform: translateX(0px);
    opacity: 1;
    transition: all 0.5s;
}

#portfolio-tab-content {
    width: 100%;
    height: auto;
    margin-top: 40px;
    overflow: hidden;
    transition: 0.7s;
}

#portfolio .portfolio-item {
    margin: 20px auto;
    width: 100%;
    position: relative;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#portfolio .portfolio-item .item-overlay {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18); */
    background: #041016d7;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
}

#portfolio .portfolio-item .item-overlay span {
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s;
}

#portfolio .portfolio-item .item-overlay img {
    width: 50px;
    height: 50px;
}

#portfolio .portfolio-item:hover .item-overlay {
    opacity: 1;
    transition: all 0.5s;
}

#portfolio .portfolio-item:hover .item-overlay span{
    transform: translateY(0px);
    opacity: 1;
    transition: all 0.5s;
}

#portfolio .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#portfolio .portfolio-item a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 24px;
    color: var(--textColor);
}



/* ---------------------- Portfolio Section CSS End ---------------------- */

/* ---------------------- Testimonial Section CSS Start ---------------------- */

#testimonial {
    width: 100%;
    height: 100%;
    padding: 40px 20px 60px;
    position: absolute;
    transform: translateY(-100%);
    opacity: 1;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: 0.8s;
}

#testimonial .testimonial-container .about-title {
    color: var(--headingColor);
    margin-top: 40px;
}

#testimonial .item {
    width: 100%;
    min-height: 500px;
    padding: 40px;
    position: relative;
    z-index: 1;
    background: transparent;
    border-left: 1px solid var(--headingColor);
    margin-block: 50px;
}

#testimonial .object-one {
    width: 60px;
    height: auto;
    position: absolute;
    left: 20%;
    top: -10px;
}

#testimonial .object-two {
    width: 60px;
    height: auto;
    position: absolute;
    left: 86%;
    bottom: -10px;
}

#testimonial .item::before {
    content: "";
    width: 20%;
    height: 1px;
    background: var(--headingColor);
    position: absolute;
    left: 0;
    top: 0;
}

#testimonial .item::after {
    content: "";
    width: 86%;
    height: 1px;
    background: var(--headingColor);
    position: absolute;
    left: 0;
    bottom: 0;
}

#testimonial .item .img-content {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 16px 0px 0px 0px #19ccdf;
}

#testimonial .item .img-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#testimonial .item .text-content {
    margin-top: 20px;
    text-align: center;
}

#testimonial .item .text-content .msg {
    font-size: 14px;
    color: var(--textColor);
    line-height: 24px;
}

#testimonial .item .text-content .rating {
    font-size: 24px;
    color: var(--lightblue);
    margin-block: 16px;
}

#testimonial .item .text-content .author .name {
    font-size: 24px;
    font-weight: 600;
    color: var(--headingColor);
    letter-spacing: 1px;
}

#testimonial .item .text-content .author .designation {
    font-size: 14px;
    color: var(--lightblue);
}

#testimonial .owl-carousel {
    padding-block: 20px ;
}

#testimonial .owl-dots {
    text-align: center;
    padding-top: 15px;
}

#testimonial .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    margin: 0 3px;
}

#testimonial .owl-dots button.owl-dot.active {
    background-color: var(--lightblue);
}

#testimonial .owl-dots button.owl-dot:focus {
    outline: none;
}
/* ---------------------- Testimonial Section CSS End ---------------------- */

/* ---------------------- Contact Section CSS Start ---------------------- */

#contact {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: absolute;
    transform: translateY(-100%);
    opacity: 0;
    transition: 0.8s;
}

#contact .contact-container .contact-heading h3 {
    color: var(--headingColor);
}

#contact .contact-container .contact-heading p {
    color: var(--lightblue);
}

#contact .contact-container .contact-me {
    width: 100%;
    height: 410px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

#contact .contact-container .contact-me .info-box {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 15px;
    border-radius: 10px;
}

#contact .contact-container .contact-me .info-box label {
    display: block;
    font-size: 20px;
    font-weight: 300;
    color: var(--textColor);
    margin-bottom: 5px;
}

#contact .contact-container .contact-me .info-box a {
    text-decoration: none;
    font-size: 18px;
    color: var(--lightblue);
}

#contact .contact-container .contact-me .info-box span {
    color: var(--lightblue);
}

#contact .contact-container .contact-me .info-box i {
    font-size: 20px;
    width: 40px;
}

#contact .contact-container .contact-me .info-box .find-me {
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact .contact-container .contact-me .info-box .find-me a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    color: var(--lightblue);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s;
    z-index: 98;
}

#contact .contact-container .contact-me .info-box .find-me a:hover {
    color: var(--headingColor);
    transform: scale(1.5);
    transform-origin: center;
    transition: all 0.5s;
}

#contact .contact-container .contact-me .info-box .find-me a::before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.089);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: -1;
}

#contact .contact-container .contact-me .info-box .find-me a:hover::before {
    transform: scale(0);
    transition: all 0.5s;
}

#contact .contact-container .contact-form {
    width: 100%;
    min-height: 410px;
    margin: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 20px 15px 20px 15px;
    box-sizing: border-box;
    border-radius: 10px;
    position: relative;
}

#contact .contact-container .contact-form input {
    width: 100%;
    min-height: 50px;
    padding: 0 10px;
    background-color: transparent;
    color: var(--headingColor);
    font-size: 16px;
    line-height: 16px;
    outline: none;
    border: none;
    border-bottom: 1px dotted var(--lightblue);
    margin: 16px 0 16px 0;
    position: relative;
    transition: 0.3s ease;
    z-index: 1111;
}

#contact .contact-container .contact-form .contact-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

#contact .contact-container .contact-form .contact-info #mobile,
#contact .contact-container .contact-form .contact-info #email {
    width: 48%;
}

#contact .contact-container .contact-form .contact-info #mobile .label,
#contact .contact-container .contact-form .contact-info #email .label {
    padding-left: 16px;
}

#contact .contact-container .contact-form .label {
    position: absolute;
    font-size: 18px;
    color: var(--headingColor);
    padding: 0 16px;
    background: transparent;
    margin: 0 20px;
    transform: translate(-36px, -55px);
    transition: 0.5s ease;
}

#contact .contact-container .contact-form input:focus+.label,
#contact .contact-container .contact-form input:valid+.label {
    color: var(--lightblue);
    height: 30px;
    line-height: 22px;
    padding: 0 12px;
    transform: translate(-40px, -88px) scale(0.88);
    z-index: 1110;
}

#contact .contact-container .contact-form textarea {
    width: 100%;
    min-height: 118px;
    padding: 10px 10px;
    background-color: transparent;
    color: var(--headingColor);
    font-size: 16px;
    line-height: 28px;
    outline: none;
    border: none;
    margin: 16px 0;
    border-bottom: 1px dotted var(--lightblue);
    position: relative;
    transition: 0.3s ease;
    z-index: 1112;
}

#contact .contact-container .contact-form .label-msg {
    position: absolute;
    font-size: 18px;
    line-height: 24px;
    color: var(--headingColor);
    padding: 0 16px;
    background: transparent;
    margin: 0 20px;
    transform: translate(-36px, -130px);
    transition: 0.5s ease;
}

#contact .contact-container .contact-form textarea:focus+.label-msg,
#contact>.contact-container>.contact-form>textarea:valid+.label-msg,
#contact .contact-container .contact-form textarea:not(:placeholder-shown)+.label-msg {
    color: var(--lightblue);
    height: 160px;
    line-height: 28px;
    padding: 0 12px;
    transform: translate(-42px, -172px) scale(0.88);
    z-index: 1110;
}

#contact .contact-container .contact-form textarea::placeholder {
    opacity: 0;
}

#contact .contact-container .contact-form button {
    width: 120px;
    height: 50px;
    background-color: var(--lightblue);
    color: var(--headingColor);
    border: none;
    border-radius: 4px;
}

#contact .contact-container .location {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 20px;
}

#contact .contact-container .location iframe {
    width: 100%;
}

/* ---------------------- Contact Section CSS End ---------------------- */


/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */


/* ---------------------- Responsive CSS Start ---------------------- */
@media (max-width: 1500px) {

    #banner,
    #about {
        overflow-x: hidden;
        overflow-y: scroll;
    }

}

@media (max-width: 1200px) {
    #tab-content {
        width: 95%;
        height: 85vh;
        top: 120px;
        right: 30px;
    }

    #custom-nav,
    #responsive-nav-btn {
        display: block;
    }

    #navbar,
    #introducing {
        display: none;
    }

    #responsive-navbar {
        display: block;
    }
}

@media (max-width: 1024px) {
    #services .service-item .service-type .service-info .services-text-info .service-description P {
        font-size: 14px;
    }

    #services .service-item .service-detail ul li a {
        font-size: 16px;
    }

    #services .service-item .service-detail .usage {
        font-size: 18px;
        letter-spacing: 0px;
    }
}

@media (max-width: 992px) {

    svg {
        width: 70%;
    }

    #tab-content {
        width: 98%;
        right: 8px;
    }

    #about .experties .why-choose {
        margin-block: 10px;
    }

    #responsive-navbar .responsive-nav-inner .responsive-nav,
    #responsive-navbar .download-cv {
        display: none;
    }

    #responsive-navbar .option-btn {
        display: block;
    }

    #introduction .image-box {
        margin: 170px auto 60px auto;
    }

    #introduction .profile-info .title {
        text-align: center;
    }

    #resume .skills-title {
        margin-top: 40px;
    }

    #resume .resume-info .resume-items {
        width: 50%;
        margin: 0 auto;
    }

}

@media (max-width: 768px) {
    #tab-content {
        width: 100%;
        height: 90vh;
        top: 80px;
        right: 0px;
    }

    h2 {
        font-size: 100px;
    }

    h3 {
        font-size: 36px;
    }

    #resume .resume-info .resume-items {
        width: 100%;
        margin: 0 auto;
    }

    #contact .contact-container .contact-me .info-box {
        margin-block: 10px;
    }

    #contact .contact-container .contact-form {
        margin: 80px 0 20px;
    }

}

@media (max-width: 576px) {
    svg {
        width: 90%;
    }

    #responsive-navbar .profile-img {
        width: 50px;
        height: 50px;
        border: 2px solid var(--lightblue);
        margin-right: 20px;
    }

    #responsive-navbar .responsive-nav-inner .my-intro .intro h4 {
        font-size: 24px;
        line-height: 16px;
    }

    #responsive-navbar .responsive-nav-inner .my-intro .intro span {
        font-size: 14px;
    }

    #responsive-navbar,
    #responsive-navbar .responsive-nav-inner {
        height: 80px;
    }

    #about .interest-area .passion-type {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 480px) {

    svg {
        width: 100%;
    }

    #banner .banner-container .banner-img {
        width: 160px;
        height: 160px;
    }

    #banner .banner-container .banner-img::before {
        left: -72px;
    }

    #banner .banner-container .banner-img::after {
        right: -72px;
    }

    #banner .banner-container .banner-text-content h2 {
        font-size: 60px;
    }

    #banner .banner-container .banner-text-content .job-title {
        font-size: 24px;
    }

    #banner .banner-container .banner-text-content .job-title::before {
        left: 15px;
    }

    #banner .banner-container .banner-text-content .job-title::after {
        right: 15px;
    }

    #banner .banner-container .banner-text-content .banner-btn .hire-me {
        border-radius: 5px;
    }

    h2 {
        font-size: 70px;
        line-height: 70px;
    }

    #banner,
    #about,
    #resume,
    #services,
    #portfolio,
    #contact {
        padding: 40px 0px;
    }

    h3 {
        font-size: 28px;
    }

    #responsive-navbar .responsive-nav-inner .my-intro .intro {
        display: none;
    }

    #introduction .freelancing {
        flex-direction: column;
        justify-content: center;
        margin-top: 60px;
    }

    #introduction .introduction-info {
        padding-inline: 0px;
    }

    #introduction .download-cv {
        width: 100%;
    }

    #introduction .follow-me {
        flex-direction: column;
    }

    #about .about-container .about-description p {
        font-size: 14px;
    }

    #about .about-button {
        flex-direction: column;
    }

    #resume .resume-info .resume-items .edu-info .edu-title {
        font-size: 18px;
    }

    .btn {
        width: 100%;
    }

    #testimonial .item {
        padding: 20px;
    }

    #contact .contact-container .contact-me .info-box a {
        font-size: 14px;
    }

    #contact .contact-container .contact-me .info-box span {
        font-size: 14px;
    }

    #contact .contact-container .contact-form .contact-info {
        flex-direction: column;
    }

    #contact .contact-container .contact-form .contact-info #mobile,
    #contact .contact-container .contact-form .contact-info #email {
        width: 100%;
    }
}

@media (max-width: 360px) {

    #about .about-button {
        margin-top: 20px;
        flex-direction: column;
    }
}

/* ---------------------- Responsive CSS End ---------------------- */