@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
}

::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background: url('../img/bg.jpg');
    background-size: cover;
    color: #000;
    font-size: 18px;
    height: fit-content;
    overflow-x: hidden;
    scrollbar-width: none;
    font-family: Arial, Helvetica, sans-serif;
}


header {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    z-index: 9;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    max-height: 62px;
    min-height: 62px;
    height: 62px;
    transition: all 0.4s ease;
    background: transparent;
}

header.solid {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.1);
}


header ul {
    list-style: none;
    width: 100%;
    position: relative;
    display: flex;
    gap: 40px;
}

header ul li a {
    text-decoration: none;
    color: #000;
    font-size: 0.8em;
    cursor: pointer;

    &:hover {
        background: linear-gradient(90deg, #000, #000, #000, #fff, #000);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        background-size: 200% 200%;
        animation: gradientAnimation 0.3s linear;
    }

}

.logo {
    position: fixed;
    top: 20px;
    left: 20px;
    display: none;
}

#logo {
    width: 115px;
    box-sizing: border-box;
    margin-bottom: -2px;
    display: none;
}

.ham {
    position: fixed;
    right: 10px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0px 10px;
    gap: 4px;
    display: none;
    z-index: 9;
    top: 20px;
}

.ham.active .ham-line:first-child {
    transform: rotate(45deg) translateY(1px);
    transform-origin: center;
    width: 14px;
}

.ham.active .ham-line:nth-child(2) {
    transform: translateX(-14.5px) translateY(-.5px);
}

.ham.active .ham-line:last-child {
    transform: rotate(-45deg) translateY(-2px);
    ;
    transform-origin: center;
    width: 14px;
}

.ham-line {
    display: block;
    height: 1px;
    width: 25px;
    border-bottom: 1px solid;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.right-content {
    position: fixed;
    right: 0;
    width: 156px;
    display: grid;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 1;
    z-index: 9;
}

.right-content.opacity {
    opacity: 0;
    user-select: none;
    pointer-events: none;
}

.svg-icon {
    width: 18px;
}


#google-icon:hover .svg-icon path {
    stroke: rgb(255, 47, 0);
}

#google_translate_element {
    right: 0;
    top: 61px;
    border: none !important;
    outline: none;
}

@media only screen and (min-width: 767px) {
    .translate-hidden {
        transform: translateY(-100%);
    }

    .featured-works {
        padding-bottom: 30px !important;
    }

    .animate.right-to-left {
        margin-left: -100px;
        margin-right: 100px;
        animation: slideLeft linear forwards;
        animation-timeline: view();
        animation-range: 200px 500px;
    }

    @keyframes slideLeft {
        to {
            margin-left: 0px;
            margin-right: 0px;
        }
    }

}

.translate-hidden-perm {
    display: none;
}

#google-icon {
    position: absolute;
    height: 23px;
    left: 0px;
    width: 15%;
    box-sizing: border-box;
    cursor: auto;
    border-radius: 0px;
    border: 0;
    outline: 0;
    background: #fff;
    border-top: 1px solid #aaa;
}

#google-icon {
    cursor: pointer;
}

audio {
    width: 50%;
    border-radius: 20px;
    border: 2px solid #aaa;
    background-color: #f0f0f0;
    padding: 5px;
    box-sizing: border-box;
}

.audio-div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

audio::-webkit-media-controls-timeline {
    display: none;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    display: none;
}

main {
    width: 75vw;
    margin: auto;
    height: fit-content;
    box-sizing: border-box;
    border: 1px solid transparent;
}

main

.intro {
    min-height: 450px;
    height: 80vh;
    margin: auto;
    border-radius: 13px;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    width: 100%;
}

.logo.hidden {
    display: none;
}

p {
    font-size: 0.8em;
    line-height: 1.2em;
}

.intro .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 40px;
    color: #000;
    background: transparent;
}

#my-title {
    text-align: right;
    font-size: 0.8em;
    margin-top: -35px;
    color: #000;

    &:hover {
        background: linear-gradient(90deg, #000, #000, #000, #fff, #000);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        background-size: 200% 200%;
        animation: gradientAnimation 1s linear;
    }
}

h1 {
    font-size: 3.5em;
    background: linear-gradient(90deg, #000, #000, #000, #000, #000, #000, #000, #fff, #000, #000, #000, #000, #000, #000, #000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientAnimation 6s linear infinite;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
}

@keyframes gradientAnimation {
    0% {
        background-position: 140% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


#more-btn {
    position: fixed;
    bottom: 25px;
    padding: 15px 50px;
    border-radius: 10px;
    font-size: 20px;
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
    cursor: default;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    display: none;

    &:hover {
        transform: translateX(-50%) translateY(10%);
    }
}

#more-btn.hidden {
    display: none;
}


.btns {
    margin: 10px 0;
    gap: 10px;
    display: flex;
}


.shine {
    cursor: pointer;
    background: #6A0DAD;
    color: white;
    transition: all 0.5s;

    &:hover {
        background: #a01aff;
    }
}

.shine::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -80%;
    width: 200%;
    height: 150%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.shine:hover::before {
    left: 120%;
    opacity: 1;
    transition: all 0.5s;
}


.intro-btn {
    text-decoration: none;
    padding: 13px;
    color: #fff;
    width: fit-content;
    font-size: 0.9em;
    background: rgba(18, 140, 126, 0.78);
    backdrop-filter: blur(4.4px);
    -webkit-backdrop-filter: blur(4.4px);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.22);

    &:hover {
        color: #fff;
        background: rgba(18, 140, 126, 1);
        border: 2px solid rgba(255, 255, 255, 0.22);
    }
}

.intro-btn:last-child {
    background: rgba(0, 95, 183, 0.78);

    &:hover {
        background: rgba(0, 95, 183, 1);
        border: 2px solid rgba(255, 255, 255, 0.22);
    }
}

h3 {
    padding: 15px 0px 30px 30px;
    font-size: 2.5em;
    background: linear-gradient(90deg, #000, #000, #000, #000, #000, #000, #000, #fff, #000, #000, #000, #000, #000, #000, #000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
}

h4 {
    margin-bottom: 8px;
    background: linear-gradient(90deg, #000, #000, #000, #000, #000, #000, #000, #fff, #000, #000, #000, #000, #000, #000, #000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    font-family: "PT Sans", sans-serif;
}

.featured-works {

}

.featured-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 10px 0;
    padding-bottom: 0px;
    scroll-snap-type: x mandatory;
    height: fit-content;
}

.indicators {
    text-align: center;
    margin: 30px 0 15px 0;
    height: 6%;
    min-height: 5px;
    display: none;
}

.indicator {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px;
}

.indicator.active {
    background-color: #001d3e;
}

.featured-work {
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-radius: 10px;
    gap: 15px;
    padding: 15px;
    padding-bottom: 20px;
    scroll-snap-align: start;
    border-radius: 15px;
    background: #f0f1f4;
    transition: box-shadow 0.3s ease;
    border: 1px solid #e7eaf0;
}

.rotate {
    transition: transform 0.1s ease, box-shadow 0.4s ease !important;
}

.youtube-video,
.featured-work img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    width: 100%;
    min-width: 180px;
    min-height: 155px;
    max-height: 155px;
    object-fit: cover;
}

.featured-work a {
    text-decoration: none;
}

.featured-work p {
    color: #000;
}

.featured-work a {
    color: #000;

    &:hover {
        background: linear-gradient(90deg, #000, #000, #000, #fff, #000);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        background-size: 200% 200%;
        animation: gradientAnimation 0.3s linear;
    }
}

.about-me {
    z-index: 4;
    height: fit-content;
    border-radius: 13px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: fit-content;
}

.about-me-box {
    display: flex;
    gap: 20px;
}

.image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.profile img {
    width: 100%;
    border-radius: 7px;
}

.details {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    padding: 1px;
}

.details p {
    font-size: 0.8em;
    color: #000;
    max-width: fit-content;
    border-radius: 7px;
    padding: 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #f0f1f4;
}

.details img {
    height: 25px;
}

.details a{
    color: #000;
    text-decoration: none;
    &:hover {
        background: linear-gradient(90deg, #000, #000, #000, #fff, #000);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        background-size: 200% 200%;
        animation: gradientAnimation 0.3s linear;
    }
}

.skill {
    display: flex;
    justify-content: space-between;
    background: #e7eaf0;
    min-width: fit-content;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 0.9em;
    transition: transform 0.1s ease;

    &:hover {
        transform: scale(1.02);
    }
}

.skill span {
    font-style: italic;
    color: gray;
}

.draggable {
    cursor: move;
    transition: box-shadow 0.2s ease, transform 0s ease;
    z-index: 8;
}

.dragging {
    z-index: 9;
}




.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #aaaaaa78;
    background: #fff;
    transition: box-shadow 0.2s ease;
    overflow: hidden;
}

.skills {
    color: #000;
    border-radius: 13px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.skills-box {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
}

.field-heading {
    text-align: center;
    font-size: 1em;
}

.qualification {
    border-radius: 13px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.qual-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.qualification h4 {
    text-align: center;
    margin-bottom: 25px;
}

.experiences {
    display: flex;
    flex-direction: column;
    line-height: 1px;
}



.experience {
    display: flex;
    gap: 15px;
    border-radius: 8px;
    align-items: center;
    border: 1px solid #aaaaaa78;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0 ease;
    height: fit-content;
    &:hover {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);


        transform: scale(1.01);
    }
}

.company {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
}

.company p:first-child {
    font-weight: 300;
}

.company p:nth-child(2) {
    font-size: 0.8em;
    color: #0000009d;
}


.experience a {
    text-decoration: none;
    color: #000;

    &:hover {
        background: linear-gradient(90deg, #000, #000, #000, #fff, #000);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        background-size: 200% 200%;
        animation: gradientAnimation 0.3s linear;
    }
}

.experience img {
    width: 35px;
    min-height: 125px;
    border-radius: 1px;
    object-fit: contain;
    background: #57769f1e;
    padding: 0 20px;
}

.disabled {
    pointer-events: none;
    user-select: none;
    color: #666 !important;
}

.freelancing {
    color: #087724;
    font-size: 1.3em;
}

.no-shadow {
    box-shadow: 0;

    &:hover {
        box-shadow: 0;
    }
}

.line {
    width: 1.5px;
    height: 30px;
    background: #aaaaaa78;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
    margin-left: 40px;
}

.scroll {
    background: #fff;
    padding: 20px 0;
    border-radius: 10px;
    background: transparent;
}

.projects {
    border-radius: 13px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.project-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    max-height: 260px;
    overflow: hidden;
    transition: all 1.2s ease;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: transparent;
}

.project-box.expanded {
    max-height: 1500px;
    box-shadow: none;
}

.projects h4 {
    text-align: center;
    margin: 35px 0 10px 0;
}

.projects h4:first-child {
    margin: 0px 0 10px 0;
}

.projects a {
    text-decoration: none;
    color: #000;

    &:hover {
        background: linear-gradient(90deg, #000, #000, #000, #fff, #000);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        background-size: 200% 200%;
        animation: gradientAnimation 0.3s linear;
    }
}

.project-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-radius: 10px;
    padding: 20px;
}


.project {
    display: flex;
    align-items: start;
    gap: 15px;
    border: 1px solid #aaaaaa78;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0s ease;

    &:hover {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }
}

.project p{
    padding: 2px;
}

.project span {
    color: #aaa;
    font-size: 0.9em;
}

.project-details {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.project-details p:first-child {
    font-weight: 700;
}

.project-details p:nth-child(2) {
    font-size: 0.8em;
    color: #001d3e;
}

.project img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 1px;
}

#expandButton {
    width: fit-content;
    padding: 10px 60px;
    border: 0;
    outline: none;
    border: 1px solid #000;
    background: #fff;
    border-radius: 8px;
    color: #000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0s ease;
    z-index: 1;
}

#expandButton.clicked {
    padding: 10px 60px;
    font-size: 0.65em;
    box-shadow: inset 2px 2px 5px #bfbfbf52,
        inset -2px -2px 5px #ffffff;
}

.showmore-btn {
    height: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hr-line {
    height: 1px;
    background: #000;
    position: absolute;
}

.spreads{
    width: 0%;
    animation: spreads linear forwards;
    animation-timeline: view();
    animation-range: 0px 150px;
}

@keyframes spreads {
    to { width: 100%; }
}

.circle {
    display: flex;
    justify-content: center;
    align-items: end;
    text-align: center;
}
/* 
.center-gif {
    background: url(../img/interests/center.png);
    background-size: cover;
    position: absolute;
    margin: auto;
    width: 550px;
    max-width: 90vw;
    height: 350px;
    z-index: 1;
} */

.interests {
    width: 150px;
    height: 200px;
    top: 10%;
    transform-style: preserve-3d;
    transform: perspective(3000px);
    animation: autoRun 25s linear infinite;
    z-index: 2;
    margin: 100px auto 210px auto;

    &:hover {
        animation-play-state: paused;
    }
}

.interest-box {
    border-radius: 13px;
    padding: 30px 30px 0 30px;
    background-color: #fff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-top: 25px;
}

@keyframes autoRun {
    from {
        transform: perspective(3000px) rotateX(-10deg) rotateY(0deg);
    }

    to {
        transform: perspective(3000px) rotateX(-10deg) rotateY(360deg);
    }
}
/* Targeting specific children individually */
.interests p:nth-child(7),
.interests p:nth-child(8),
.interests p:nth-child(9) {
    background: url('../img/bg.jpg') center;
}

.interests p {
    user-select: none;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: 700;
    color: #fff;
    background: url('../img/bg.jpg');
    border: 1px solid #001d3e;
    padding: 10px 10px;
    border-radius: 15px;
    font-size: 0.6em;
    gap: 10px;
    position: absolute;
    inset: 0 0 0 0;

    transition: box-shadow 0.2s ease, transform 0.2s ease;

    &:hover {
        box-shadow: 5px 5px 15px #aaaaaa2c,
            -5px -5px 15px #92929286;
    }
}


.contact {
    border-radius: 13px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding-bottom: 60px;
}


form {
    display: flex;
    flex-direction: column;
    width: 40vw;
    margin: auto;
    gap: 10px;
    box-sizing: border-box;
}

form textarea,
form input {
    padding: 20px;
    font-size: 0.8em;
    outline: none;
    border: 0;
    border-radius: 10px;
    background: #e7eaf0;
}

form input[type="submit"] {
    background: #000;
    cursor: pointer;
    color: #fff;
    text-transform: uppercase;
    transition: all 0s ease;

    &:hover {
        background: url('../img/bg.jpg');
    }
}

footer {
    border-top: 1px solid #aaa;
    padding: 40px;
    margin-top: 50px;
    color: #000;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer img {
    width: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.social-links a:nth-child(4) img {
    width: 26.5px;
    margin-bottom: 0px;
}

.social-links a:nth-child(5) img {
    width: 29px;
    margin-left: 1px;
    margin-bottom: 2px;
}

.social-links a:nth-child(6) img {
    margin-bottom: 2px;
}

.social-links :first-child img {
    width: 27px;
}

.overlay {
    z-index: 9;
    position: absolute;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: #0000009d;
    width: 100%;
    height: 100%;
    display: none;
}

.overlay.active {
    display: block;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
}

.loader {
    width: 130px;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.loader-wrapper.loaded {
    display: none;
}

.right-line-wrapper {
    height: 100vh;
    right: 0px;
    width: 10px;
    position: fixed;
    z-index: 8;
    background: #aaa;
    overflow: hidden;
}

.right-line {
    position: absolute;
    width: 0%;
    height: 100%;
    background: #000;
    transition: width 0.2s ease;
}

.overlay-closed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.899);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maintenance-message {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: center;
    user-select: none;
}

.maintenance-message h1 {
    color: green;
}

.fade-in{
    scale: 0.9;
    opacity: 0;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: 50px 500px;
}


@keyframes fade-in {
    to { scale: 1; opacity: 1; }
}

.card-spread{
    transform:
    rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(16vw);
    animation: card-spread linear forwards;
    animation-timeline: view();
    animation-range: 50px 350px;
}


@keyframes card-spread {
    to { transform:
        rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(30vw) }
}


@media only screen and (max-width: 767px) and (orientation: portrait) {

    .youtube-video,
    .featured-work img {
        min-width: 76vw;
    }

}

@media screen and (max-width: 1024px) {
    body {
        font-size: 17px;
    }

    .project-details {
        font-size: 0.8em;
        padding: 10px;
    }

    .experience {
        font-size: 0.9em;
    }

    .projects img {
        width: 50px;
        height: 100%;
    }
}


@media only screen and (max-width: 767px) {

    @keyframes card-spread {
        to { transform:
            rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(160px) }
    }

    h1 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.7em;
        margin: 15px 0px 30px 0px;
    }

    #my-title {
        margin-top: -20px;
        font-size: 0.7em;
    }

    body {
        font-size: 16px;
    }

    .logo {
        display: none;
    }

    .ham {
        display: none;
    }

    .right-line-wrapper {
        height: 10px;
        bottom: -5px;
        width: 100vw;
        z-index: 9;
    }

    header {
        padding: 20px 5px;
    }

    header ul {
        gap: 15px;
    }

    .right-content {
        display: none;
    }

    .qual-box {
        grid-template-columns: 1fr;
    }

    .qual-box h4 {
        margin-bottom: 15px;
    }

    main {
        width: 95%;
        padding: 0px;
        padding-top: 0px;
    }

    main > div {
        background: rgba(255, 255, 255, 0.4 ) !important;
        backdrop-filter: blur(100px);
        -webkit-backdrop-filter: blur(100px);
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.1);
    }

    .intro {
        margin-top: 70px;
    }

    .intro-btn {
        font-size: 0.7em;
    }

    .intro .content {
        padding: 20px 30px 20px 20px;
    }

    .intro::before {
        background-color: rgba(0, 0, 0, 0.8);
    }

    #more-btn {
        display: none;
    }

    .featured-box {
        gap: 10px;
        overflow-x: auto;
    }
    .featured-work{
        padding:10px 10px 25px 10px;
    }

    .indicators {
        display: block;
    }

    .details {
        gap: 5px;
        padding: 0;
    }

    .details p {
        padding: 2px 5px;
        background: #fff;
    }

    .experience img {
        min-height: 110px;
    }

    .project-container {
        padding: 5px;
        gap: 5px;
        grid-template-columns: 1fr;
        font-size: 0.7em;
    }

    .projects img {
        width: 100px;
        height: 100%;
    }

    .project-details {
        font-size: 1.2em;
        padding: 7px;
    }

    .skills-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .interests {
        width: 100px;
        height: 150px;
    }

    form {
        width: 100%;
    }

    footer {
        padding: 40px 5px;
    }
}