/* ==============================
   1. FONTS & ROOT VARIABLES
   ============================== */

@font-face {
    font-family: 'rawest-medium';
    src:url("Fonts/rawest-medium.otf");
}
:root{
    --level-wigth: 75%;
    --radius: 37px;
    --circleText1: calc(0.5vw + 1.5vh);
    --circleText2:calc(0.5vw + 1vh);
}

/* ==============================
   2. KEYFRAMES
   ============================== */

@keyframes cursorAnim {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(.955);
    }
}

@keyframes load {
    0% { width: 0; background-color: black }
    100% { width: var(--level-wigth); background-color: black }
}

/* ==============================
   3. GENERAL STYLES
   ============================== */

/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica,sans-serif;
    color: #fffefe;
    background: #eeeeee;


    overflow: hidden;
    scrollbar-width: none;


}



.cursorOut{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background: #ffffff;

    stroke-width: 5px;
    border-radius: 50%;
    position: fixed;

    mix-blend-mode: exclusion;
    pointer-events: none;
    z-index: 101;

}

.cursorIn{
    width: auto;
    height: auto;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
    font-weight: 200;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    position: fixed;

    mix-blend-mode: exclusion;
    animation: cursorAnim .5s infinite alternate;
    pointer-events: none;
    z-index: 101;
    will-change: transform;
}
.cursorIn .char{
    transform: translateY(110%) rotateZ(10deg);
    opacity: 0;
    will-change: transform;

}
.stickyContactsButton {
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 99;
    stroke-width: 20px;
    stroke: rgba(0, 0, 0, 0.75);
    pointer-events: auto;
    will-change: transform;
    height: 8vw;
    width: 8vw;
    display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: exclusion;
}


#svgCircle {
    position: absolute;
    width: 200%;
    z-index: -1;
    opacity: 1;
    stroke-dasharray: 314px;
    stroke-dashoffset: 314px;
}

.contactTitle {
    z-index: 1;
    font-family: Futura, sans-serif;
    font-size: 0.5vw;
    color: #000000;
    pointer-events: none;
}

.contactTitle h1 {
    transition: transform ease-in-out 0.5s, color ease-in-out 0.5s;
}

.blobButton {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: visible;
    transition: transform ease-in-out 0.5s;
}

.blobButton:hover {
    transform: scale(2);
}

.blobButton:hover ~ .contactTitle h1 {
    color: #9a0808;
    transform: scale(2);
}



#animatedPath {
    animation: blobAnimation 5s linear infinite 5s;
}
#animatedPath2 {
    animation: blobAnimation 5s linear infinite 5s;
}
.blobButton:nth-child(2){
    filter: blur(5px);
}

/* Menu container */
.Contactmenu1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height:50px;
    width: 50px;
    background: hsla(0, 74%, 71%, 1);

    background: linear-gradient(90deg, hsla(0, 74%, 71%, 1) 0%, hsla(0, 84%, 60%, 1) 100%);

    background: -moz-linear-gradient(90deg, hsla(0, 74%, 71%, 1) 0%, hsla(0, 84%, 60%, 1) 100%);

    background: -webkit-linear-gradient(90deg, hsla(0, 74%, 71%, 1) 0%, hsla(0, 84%, 60%, 1) 100%);

    color: #020202;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

/* Show menu when checkbox is checked */
.ContactmenuToggle{
    position: absolute;
    display: none;

}
.toggleLabel{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.Contactmenu1:nth-child(3){
    transition: transform 0.5s cubic-bezier(.56,-0.79,.33,2.13), opacity 0.5s ease;

}
.Contactmenu1:nth-child(4){
    transition: transform 0.8s cubic-bezier(.56,-0.79,.33,2.13)0.1s, opacity 0.8s ease 0.1s;

}.Contactmenu1:nth-child(5){
    transition: transform 1s cubic-bezier(.56,-0.79,.33,2.13) 0.3s, opacity 1s ease 0.3s;

}.Contactmenu1:nth-child(6){
    transition: transform 1.2s cubic-bezier(.56,-0.79,.33,2.13)0.3s, opacity 1.2s ease 0.3s;

}
.chat-container {
    width: 20vw;
    height: 30vh;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    transform: translateY(100%);
    top: 67%;
    left: 5%;
}
.chat-container-active{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0%);

}
.chat-display {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
}
.chat-message {
    margin: 5px 0;
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
}
.user-message {
    background-color: #55be8f;
    align-self: flex-end;
}
.bot-reply {
    background-color: #e7d1dd;
    align-self: flex-start;
    color: #000;
}
.chat-input {
    display: flex;
    border-top: 1px solid #6e6d6d;
    border-radius: 20px;
    background: #000000;
}
.chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    width: 20%;
    height: 6vh;
    color: #ffffff;
    background: transparent;
}
.chat-input button {
    padding: 10px;
    width: 20%;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1vw;

}
.chat-input button:hover {
    background-color: #87a3be;
}
.Contactmenu1:hover{
    background: red;
}
i{
    pointer-events: none;
}

.ContactmenuToggle:checked ~ .Contactmenu1:nth-child(3) {
    opacity: 1;
    transform: translate(30%, -300%) scale(1.2) rotateZ(360deg);
    pointer-events: auto;
}
.ContactmenuToggle:checked ~ .Contactmenu1:nth-child(4) {
    opacity: 1;
    transform: translate(-120%, -240%) scale(1.2) rotateZ(360deg);
    pointer-events: auto;
}

.ContactmenuToggle:checked ~ .Contactmenu1:nth-child(5) {
    opacity: 1;
    transform: translate(-230%, -130%) scale(1.2) rotateZ(360deg);
    pointer-events: all;
}
.ContactmenuToggle:checked ~ .Contactmenu1:nth-child(6) {
    opacity: 1;
    transform: translate(-300%, 0%) scale(1.2) rotateZ(360deg);
    pointer-events: all;
}
.ContactmenuToggle:checked ~ .Contactmenu1:nth-child(4) {
    opacity: 1;
    transform: translate(-120%, -240%) scale(1.2) rotateZ(360deg);
    pointer-events: all;
}
.ContactmenuToggle:checked ~ .Contactmenu1:nth-child(5) {
    opacity: 1;
    transform: translate(-230%, -130%) scale(1.2) rotateZ(360deg);
    pointer-events: all;
}
.ContactmenuToggle:checked ~ .Contactmenu1:nth-child(6) {
    opacity: 1;
    transform: translate(-300%, 0%) scale(1.2) rotateZ(360deg);
    pointer-events: all;
}




h2 {
    text-align: center;
    font-size: 80px;
    margin: 20px auto;
    padding-top: 150px;

}

h2:last-child {
    color: #f0f0f0;
}

/* ==============================
   4. PRELOADER
   ============================== */

.PreloaderContainer {
    background: white;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 100;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    scale: 1;
}

#logo{
    width: 30vw;
    height: 30vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    opacity: 0;
    pointer-events: none;

}
#logo path{
        will-change: stroke-dashoffset;
}


/* ==============================
   5. ADDITIONAL FONTS
   ============================== */

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}
.pacifico-regular-2 {
    font-family: "Pacifico", cursive;
    font-weight: 200;
    font-style: normal;
}

.krona-one-regular {
    font-family: "Krona One", serif;
    font-weight: 400;
    font-style: normal;
}
.reenie-beanie-regular {
    font-family: "Reenie Beanie", serif;
    font-weight: 400;
    font-style: normal;
}

/* ==============================
   6. HEADER & NAVIGATION
   ============================== */

#Header {
    height: 12vh;
    display: grid;

}
.phoneContainer{
    display: none;
}

.notPhone{
    display: flex;
    justify-content: center;
    position: sticky;
    top:0;
    z-index: 99;
}
.highlight{
    color: red;
    transition-duration: 1s;
}
.notPhone nav{
    height: 10vh;
    width: 50vw;
    z-index: 99;
    background: rgba(238, 238, 238, 0.66);
    align-content: center;
    justify-content: center;
    display: flex;
    position: fixed;
    border-radius: 10px;
    margin-top: 0.5%;
}
.notPhone nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    align-content: center;
}
button{
    background-color: transparent;
    border-color: transparent;
    border-width: 0;
}
.navButton {
    width: 9em;
    height: 8vh;
    text-transform: uppercase;
    font-size: 1.4vw;
    font-family: Futura, sans-serif;
    border-radius: 10px;
    letter-spacing: 2px;

}
ul{
    margin:0;
    padding:0;
    display:flex;
    justify-content: center;
    align-items: center;
}

ul li{
    list-style:none;
    transition:0.5s;
    margin:0 auto;
}

ul li a{
    display: block;
    position:relative;
    text-decoration:none;
    font-size:18px;
    text-transform:uppercase;
    transition:0.2s;

}

.notPhone ul:hover li a{
    transform:scale(1);
    opacity:0.2;
    filter:blur(5px);

}

.notPhone ul li a:hover{
    transform:scale(1.2);
    opacity:1;
    filter:blur(0);
    border-radius: 10px;
    text-decoration:none;
}
.notPhone ul li a:hover .navButton{
    color: white;
    transition: color 0.2s ease-in-out;
}
.notPhone ul li a:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(180, 11, 11, 0.76);

    transition:0.2s;
    transform-origin:right;
    transform:scaleX(0);
    z-index:-1;
}

.notPhone ul li a:hover:before{
    transition:transform 0.3s;
    transform-origin:left;
    transform:scaleX(1);
    border-radius: 10px;


}


/* ==============================
   7. MAIN & PAGES
   ============================== */

#main {
    display: flex;
    flex-direction: column;
    overflow: hidden;


}
#sticky{
    position: sticky;
    top:0;
    left:0 ;
    height: 105vh;
    overflow: hidden;
}
.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: none; /* Prevent interactions when invisible */
    transition: opacity 0.5s ease;
}

#page1{
    height: 100vh;
    width: 100vw;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    pointer-events: auto;

}


#svgOne{
    position: absolute;
    top:20%;
    z-index: -1;
    pointer-events: none;

}

#svgTwo{
    position: absolute;
    top:20%;
    z-index: -1;
    pointer-events: none;


}

.mask-rec2{
    will-change: transform;
}.mask-rec3{
    will-change: transform;
}

#avatarAndTitle{
    width: 80%;
    height: 100vh;
    margin-inline: auto;
    margin-block: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    will-change: transform;


}
#hero-title{
    height: 85vh;
    width: 99vw;
    border-radius: 0;
    z-index: -1;
    margin-inline: auto;
    margin-block: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 1;
}

#titleWrapper{
    font-size: 20vw;
    width: auto;
    height: fit-content;
    color: rgba(3, 3, 3, 0.9);
    text-align: center;
    z-index: 3;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;




}

#title-1{
    height: 500px;
    width: 500px;
    z-index: 1;
    mix-blend-mode: hard-light;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;

    background: #eeeeee;
    border-radius: 100%;
}
#title-1 svg{
    max-width: 500px;
    max-height: 500px;
    min-width: 300px;
    min-height: 300px;
    opacity: 1;
    scale: 1.1;
}
#title-1 svg path{
    fill: none;
    opacity: 0;
}
#avatarWrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    height: 100vh;
    width: 50vw;
    position: absolute;
    will-change: transform;
    perspective: 900px;

}
#avatar {
    position: absolute;
    max-width: 100%;
    max-height: 100%;

    z-index: 2;
    margin-inline: auto;
    margin-bottom: -10%;
    will-change: transform;
    filter: saturate(0)opacity(0);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transform-origin: 50% 50%;
}
#circle-text {
    color: #3b3b3b;
    z-index: 1;
    will-change: transform;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
#rotated{
    font-size: clamp(15px, 43px, 70px);
}


.montserrat-thin {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}


/* ==============================
   8. PAGE 2 & ABOUT SECTION
   ============================== */

#page2 {
    background: rgb(66, 66, 66);
    border-radius: 40px;

    height: 100vh;
    width: 100vw;
    z-index: 4;
    margin-inline: auto;
    display: block;
    position: absolute;
    opacity: 1;
    transform: translateX(-99%)translateY(0%);
    pointer-events: none;
    will-change: transform;


}
#page2::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(66, 66, 66);
    transform: translateX(198%)translateY(0%);
    z-index: -1;
    pointer-events: none;
    border-radius: 40px;
}

#about-content {
    height: 90%;
    width: 100%;
    margin-top: 7%;
    z-index: 3;
    background: transparent;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3,33%);
    grid-template-rows: repeat(4,23%) ;
    grid-template-areas: "main main skill" "main main skill" "leetcode map skill" "course  course course"

}

.fa-solid{
    color: #000000;
}

.grid-item{
    margin: 1vw;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

}
.inner-grid-item{
    justify-content: center;
    margin: 1vw;
    border-radius: 1vw;
    background: rgba(143, 143, 143, 0.3);
    overflow: hidden;

}

#about1{
    grid-area: main;
    overflow: hidden;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3,33%);
    grid-template-rows: repeat(3,33%) ;
    grid-template-areas: "pp info education" "pp info education""level level current-title";
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;

}


#image{
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
    grid-area: pp;
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;


}
#pp{
    max-height: 100%;
    max-width:  100%;
    overflow: hidden;
    scale: 1.2;

}
#main-content {
    grid-area: info;
    width: 105%;
    margin-left: -11%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    color: black;
    gap: 2%;

}
#main-content h1{
    font-weight: 600;
    margin-top: 5%;
    margin-left: 5%;

position: relative}
#infoText{
    display: flex;
    flex-direction: column;
    justify-content: left;
    width: 100%;
    position: relative;
}
#main-content p{
margin-left: 5%;
    display: flex;
    gap: 2%;
    font-size: calc(1vw + 1vh);

}

#education{
    grid-area: education;
    background: rgb(0, 0, 0);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2%;
    flex-wrap: wrap;
    color: rgb(0, 0, 0);

}
#education h1{
    margin-top: 5%;
    margin-left: 5%;
    color: rgb(255, 255, 255);
    font-weight: 600;
    position: relative;
}
#educationText{
    font-size: calc(1vw + 1vh);
    font-weight: 200;
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 200%;
    height: 80%;
    gap: 5%;
    position: relative;


}
#educationText span span{
    font-style: italic;
    color: #e86d6d;
}

#educationText hr{
    width: 90%;
    margin: 0 auto;
}
#major{

    margin-left: 5%;
}
#minor{
    font-size: calc(1vw + 1vh);
    color: white;
    margin-left: 5%;


}



#level{
    grid-area: level;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}
#level h1{
    color: black;
    position: relative;
    font-size: calc(2vw + 2vh);
}

.progress {
    background: rgba(208, 204, 204, 0.63);
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    display: flex;
    height: 40%;
    width: 85%;
}

.progress-value {
    animation: load 2s normal forwards;
    border-radius: 100px;
    background: #fff;
    height: 30px;
    width: 75%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.progress-value span{
    font-size: 120%;
    margin-right: 5%;

}

#current-title {
    grid-area: current-title;
    display: flex;
    align-content: center;
    justify-content: center;
    text-align: center;
    font-size: calc(2vw + 2vh);
    font-weight: 200;
    flex-wrap: wrap;

}
#current-title span{
    background: linear-gradient(-225deg, #483396 0%, #631dad 29%, #FF1361 67%, #FFF800 100%);
    background-clip: text;
    color: transparent;
}



#about2{
    grid-area: skill;
    background: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}
#about2 h1{
    margin-top: 5%;
    color: rgb(255, 255, 255);
    font-weight: 600;
    position: relative;
}
#skillsContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1%;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    position: relative;

}
#skillsContainer div{
    display: grid;
    grid-template-columns: 20% 70%;
    column-gap: 5%;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    height: 30%;
}
.skills {
    font-size: 2vw;
    font-weight: 200;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;


}
#skillsContainer div img{
    object-fit: cover;
}
.skillImg {
    max-width: 100%;
    max-height: 100%;
}



#about3 {
    display: flex;                /* Make it a flex container */
    flex-direction: column;       /* Stack elements vertically */
    justify-content: center;      /* Center vertically */
    align-items: center;          /* Center horizontally */
    text-decoration: none;        /* Remove underline from anchor */
    color: #fff;                  /* Default text color */
    background-color: black;      /* Black background */
    overflow: hidden;             /* Prevent overflow */
    grid-area: leetcode;             /* Full height */}

#about3 h1 {
    margin-top: 1.5%;
    font-size: calc(1vh + 1vw);
    font-weight: 600;
    text-align: center;
}

.progress-container {
    display: flex;                /* Stack rings and text vertically */
    flex-direction: column;
    align-items: center;          /* Center horizontally */
    justify-content: center;      /* Center vertically */
    width: 100%;
    height: 90%;                 /* Let content determine height */
    margin-top: -2%;
}

.progress-rings {
    display: flex;                /* Horizontal layout for circles */
    justify-content: center;
    align-items: center;
    gap: 10%;                    /* Space between circles */
    width: 100%;
    height: auto;
}

.progress-ring {
    position: relative;           /* Needed for absolutely positioning text inside */
    width: 100px;                 /* Fixed size for circles */
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-ring svg {
    width: 100%;
    height: 90%;
}

.progress-ring circle {
    fill: transparent;
    stroke-width: 10;
}

.progress-ring-bg {
    stroke: #444;                /* Dark background stroke */
    r: var(--radius);                       /* Radius for the circle */
}
.progress-ring-fg {
    r: var(--radius);;                       /* Radius for the circle */
}
.progress-ring-easy {
    stroke: #00bcd4;             /* Easy color */
    transition: stroke-dasharray 1s ease-in-out;
}
.progress-ring-medium {
    stroke: #ffeb3b;             /* Medium color */
    transition: stroke-dasharray 1s ease-in-out;
}
.progress-ring-hard {
    stroke: #e86d6d;             /* Hard color */
    transition: stroke-dasharray 1s ease-in-out;
}

.circle-label {
    position: absolute;          /* Absolute position inside .progress-ring */
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the text */
    font-size: 1vw;             /* Adjust font size as needed */
    font-weight: bold;
    pointer-events: none;        /* Prevent clicks on the text */
    text-align: center;          /* Center-align text */
}
.circle-label-sub {
    position: absolute;          /* Absolute position inside .progress-ring */
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the text */
    font-size: 0.7vw;             /* Adjust font size as needed */
    font-weight: bold;
    pointer-events: none;        /* Prevent clicks on the text */
    text-align: center;          /* Center-align text */
}

#about4{
    grid-area: map;
    overflow: hidden;


}
#about4 iframe{

    z-index: -1;
    position: absolute;
}
#iframeGlass{
    position: absolute;
    height: 100%;
    width: 100%;
    background: transparent;

}

#about5{
    grid-area: course;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1%;
    background: black;
}
#about5 h1{
    font-weight: 600;
    color: rgb(248, 248, 248);
    position: relative;
    margin-top: 0.5%;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
}
.container .swiper{
    position: relative;
}
.swiper{
    width: 95%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: transparent;
}


.insideSwiper{
    height: 8vh;
    width: 90%;
    border-radius: 1vw;
    background: rgba(211, 211, 211, 0.3);
    text-align: center;
    align-content: center;
    margin: 0 auto auto auto;
}
.cardList .swiper-slide{
    transition: 0.5s ease;
}

.swiper-scrollbar{
    display: none;
}
.swiper-button-next{
    scale: 0.5;
}
.swiper-button-prev{
    scale: 0.5;
}

.courseTitle{
    font-size: 120%;
    font-weight: 400;
    color: #e86d6d;
    padding: 1px;

}
.swiper-slide p{
    color: rgba(196, 194, 194, 0.9);
    margin:  auto;
    padding: 1px;
}
.slider-wrapper .swiper-pagination-bullet {
    display: none;
}

/* ==============================
   9. PAGE 3
   ============================== */

#page3 {
    height: 100vh;
    width: 100vw;
    z-index: 4;
    overflow: hidden;
    position: relative;
    background: #000000;
    pointer-events: none;

}
#page3HeadingContainer{
    height: 105vh;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

}
#video{
    height: 100%;
    width: 100%;
    position: absolute;
    clip-path: circle(3% at 0 48%);

}
#page3HeadingContainer h2{
    width: 100%;
    height: 100%;
    font-size: 15vw;
    color: #ffffff;
    position: absolute;
    background: #000000;
    mix-blend-mode: multiply;
    clip-path: circle(3% at 0 48%);

}
#page4{
    height: 100vh;
    width: 100vw;
    margin-top: -50%;
    position: relative;
    background: #000000;
    pointer-events: auto;
}
.projects-container{
    height: 100vh;
    width: 100vw;
    position: relative;
    opacity: 1;

}
.ProjectcardContainer{
    top:50% ;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 600px;
    width: 150vw;
    position: absolute;
    will-change: transform;
}
.cardImg img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.projectcards{
    position: absolute;
    width: 350px;
    height: 400px;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    display: flex;
    flex-direction: column;
    gap: 1em;
    will-change: transform;

}
.cardImg{
    flex: 1;
    border-radius: 0.5em;
    overflow: hidden;
}

.Project-Counter{
    position: absolute;
    display: flex;
    flex-direction: column;
    margin: 2em;
    top: 50%;

}
.counter-title, .counter{
    position: relative;
    width: 32vw;
    height: 3.2vh;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.counterContainer{
    position: relative;
    transform: translateY(3.2vh);
    will-change: transform;
}
.Project-Counter h1{
    width: 100%;
    height: 3.2vh;
    position: relative;
    color:#fff;
    text-transform: uppercase;
    font-family: "PP Monument Extended", serif;
    font-weight: 900; font-size:20px;
    line-height: 1;
    letter-spacing: -0.04em;
    -webkit-font-smoothing: subpixel-antialiased;
    will-change: transform;
}
.projectDescriptionContainer{
    position: absolute;
    display: flex;
    flex-direction: column;
    margin: 2em;
    top: 30%;
    right: 1%;
}
.description{
    position: relative;
    width: 55vh;
    height: 35vh;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}
.descriptionContent{
    position: relative;
    transform: translateY(35vh);

}
.descriptionContent p{
    width: 100%;
    position: relative;
    color:#fff;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    text-align: center;
    font-weight: 200; font-size:2.1vh;
    line-height: 1.28;
    height: 35vh;
    -webkit-font-smoothing: subpixel-antialiased;

    will-change: transform;
}
.scrollCounter{
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 5%;
    transform: translateX(50%);
}
.scrollCounterContainer{
    position: relative;

}
.scrollCounterContent{
     display: flex;
     flex-direction: row;
    justify-content: center;
    align-items: center;
 }
.scrollCounterContent h1{
    width: 100%;
    position: relative;
    color:#fff;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    text-align: center;
    font-weight: 200; font-size:21px;
    line-height: 1.28;
    -webkit-font-smoothing: subpixel-antialiased;
    will-change: transform;

}



/* ==============================
   10. PAGE 5 & FILTER
   ============================== */
#page5{
    height: 100vh;
    width: 100vw;
    position: relative;
    background: radial-gradient(1200px 600px at 80% 20%, rgba(255, 77, 109, 0.18), transparent 60%),
    radial-gradient(900px 500px at 10% 80%, rgba(232, 109, 109, 0.16), transparent 55%),
    #000000;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
#page5 h1{
    font-size: clamp(28px, 5vw, 64px);
    color: #ffffff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    align-self: flex-start;
    margin-top: 5%;
    position: relative;
}
.emotContainer img{
    height: 50%;
    width: 50%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 80%;
    left: 10%;
    filter: blur(0.5px);
    transform: translate(-50%, -50%);
}

.form-container {
    width: min(560px, 72vw);
    height: auto;
    padding: 28px 32px;
    border-radius: 18px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    position: absolute;
    top:40%
}
.form-container form{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-container label {
    margin-bottom: 4px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    letter-spacing: 0.02em;
    position: relative;
}
.form-container input,
.form-container textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    color: #ffffff;
    background: rgba(8, 8, 8, 0.9);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
}
.form-container textarea{
    min-height: 140px;
    resize: vertical;
}
.form-container input:focus,
.form-container textarea:focus {
    border-color: rgba(232, 109, 109, 0.9);
    box-shadow: 0 0 0 3px rgba(232, 109, 109, 0.2);
}
.form-container button {
    width: 100%;
    padding: 12px 14px;
    border: none;
    background: linear-gradient(135deg, #ff4d6d 0%, #e86d6d 60%, #ffd36e 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(232, 109, 109, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.form-container button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(232, 109, 109, 0.3);
    filter: brightness(1.03);
}
.form-container button:active{
    transform: translateY(0);
    box-shadow: 0 10px 18px rgba(232, 109, 109, 0.22);
}


#filter{
    height: 100%;
    width: 100%;
    backdrop-filter: blur(10vh);
    position: absolute;
}

:root {
    --width: 420px;
    --height: 260px;
    --i-width: calc(var(--height)*0.25 - 23px);
}


/* ==============================
   11. MISC. SECTIONS
   ============================== */




/* ==============================
   12. MEDIA QUERIES
   ============================== */
@media only screen and (max-width: 1150px) {
    .counter-title, .counter{
        position: relative;
        width: 35vw;
        height: 3.2vh;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        overflow: hidden;
    }


}@media only screen and (max-width: 1050px) {
    .counter-title, .counter{
        position: relative;
        width: 40vw;
        height: 3.2vh;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        overflow: hidden;
    }


}@media only screen and (max-width: 905px) {
    .counter-title, .counter{
        position: relative;
        width: 45vw;
        height: 3.2vh;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        overflow: hidden;
    }


}

@media only screen and (height<650px) {
    :root{
        --level-wigth: 75%;
        --radius: 40px;
        --circleText1: calc(0.5vw + 1vh);
        --circleText2:calc(0.5vw + 0.7vh);
    }
}
@media only screen and (height<600px) {
    :root{
        --level-wigth: 75%;
        --radius: 35px;
        --circleText1: calc(0.5vw + 0.8vh);
        --circleText2:calc(0.5vw + 0.5vh);
    }
}
@media only screen and (height<550px) {
    :root{
        --level-wigth: 75%;
        --radius: 25px;
        --circleText1: calc(0.4vw + 0.5vh);
        --circleText2:calc(0.4vw + 0.3vh);
    }
}

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

    :root{
        --level-wigth: 75%;
        --radius: 45px;
    }
    *{
        -webkit-tap-highlight-color: transparent;

    }

    body{
        all: initial;
    }

    body, html {
        margin:0;
        padding: 0;
        font-family: -apple-system, BlinkMacSystemFont, Helvetica,sans-serif;
        color: #ffffff;
        background: #EEEEEE;
        scrollbar-width: none;
        height: 100%;

    }
    title{
        display: none;
    }


    html.lenis, html.lenis body {
        height: auto;
        overflow: auto; /* Ensure scrolling is enabled */
    }

    .lenis.lenis-smooth {
        scroll-behavior: auto !important;
    }

    .lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
    }

    .lenis.lenis-stopped {
        overflow: hidden;
    }

    .lenis.lenis-smooth spline-viewer, .lenis.lenis-smooth body {
        pointer-events: visible;
    }

    /* Navigation */

    .notPhone{
        display: none;
    }
    .cursorOut{
       display: none;

    }

    .cursorIn{
        display: none;
    }
    .cursorIn .char{
        display: none;
    }




    ul {
        padding: 0;
        list-style-type: none;
        Display: flex;
        flex-direction: column;
        gap:10vh;

    }
    ul li a{
        color: #ffffff;
        text-align: center;
    }
    ul li a:active{
        color: black;
    }

    .phoneContainer {
        Display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

    }



    .phoneContainer #nav {
        height: 12vh;
        width: 100vw;
        z-index: 5;
        background: rgba(0, 0, 0, 0.98);
        align-content: center;
        position: fixed;

    }
    .phoneContainer nav ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        width: 99%;
        align-content: center;
    }

    #menuToggle {
        grid-area: x;
        display: flex;
        flex-direction: column;
        position: relative;
        top: auto;
        z-index: 1;
        -webkit-user-select: none;
        user-select: none;
        left: 10px;
    }
    #title{
        z-index: 5;
        position: fixed;
    }
    #title h1{
        color: #ffffff;
        font-size: 8vw;
    }

    #menuToggle input
    {
        display: flex;
        width: 10vw;
        height: 4vh;
        position: absolute;
        opacity: 0;
        z-index: 2;
    }

    #menuToggle span
    {
        display: flex;
        width: 10vw;
        height: 0.5vh;
        margin-bottom: 5px;
        position: relative;
        background: #fafafa;
        border-radius: 10px;
        z-index: 1;
        transform-origin: 2.5vw 0;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
        background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
        opacity 0.55s ease;
    }

    #menuToggle span:first-child
    {
        transform-origin: 0 0;
    }

    #menuToggle span:nth-last-child(2)
    {
        transform-origin: 0 100%;
    }

    #menuToggle input:checked ~ span
    {
        opacity: 1;
        transform: rotate(45deg) translate(8px, 6px);
        background: #36383F;
    }


    #menuToggle input:checked ~ span:nth-last-child(3)
    {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked ~ span:nth-last-child(2)
    {
        transform: rotate(-45deg) translate(-3px, 10px);
    }

    #menu
    {
        position: absolute;
        width: 80vw;
        height: 100vh;
        box-shadow: 0 0 10px #85888C;
        margin: -50px 0 0 -50px;

        background-color: rgba(183, 27, 27, 0.82);
        -webkit-font-smoothing: antialiased;
        transform-origin: 0 0;
        transform: translate(-100%, 0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }

    #menu li
    {
        transition-delay: 2s;
    }

    #menuToggle input:checked ~ ul
    {
        transform: none;
    }
    .stickyContactsButton {
        position: fixed;
        bottom: 5%;
        right: 5%;
        z-index: 99;
        stroke-width: 5px;
        stroke: rgba(255, 255, 255, 0.75);
        pointer-events: auto;
        will-change: transform;
        height: 15vw;
        width: 15vw;
        display: flex;
        justify-content: center;
        align-items: center;
        mix-blend-mode: normal;
        outline: none;
    }


    #svgCircle {
        position: absolute;
        width: 200%;
        z-index: -1;
        opacity: 1;
        stroke-dasharray: 314px;
        stroke-dashoffset: 314px;
        outline: none;
    }

    .contactTitle {
        z-index: 1;
        font-family: Futura, sans-serif;
        font-size: 0.5vh;
        color: #000000;
        pointer-events: none;
        outline: none;

    }

    .contactTitle h1 {
        transition: transform ease-in-out 0.1s, color ease-in-out 0.1s;
        outline: none;

    }

    .blobButton {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: visible;
        transition: transform ease 0.1s;
        outline: none;

    }

    .blobButton:hover {
        transform: none;
    }.blobButton:active {
        transform: scale(2);
    }

    .blobButton:hover ~ .contactTitle h1 {
        transform: none;
    }.blobButton:active ~ .contactTitle h1 {
        transform: scale(2);
    }

    .blobButton:nth-child(2) {
        filter: blur(1px);
        position: absolute;
    }

    /* Menu container */
    .Contactmenu1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height:30px;
        width: 30px;
        background: hsla(0, 74%, 71%, 1);

        background: linear-gradient(90deg, hsla(0, 74%, 71%, 1) 0%, hsla(0, 84%, 60%, 1) 100%);

        background: -moz-linear-gradient(90deg, hsla(0, 74%, 71%, 1) 0%, hsla(0, 84%, 60%, 1) 100%);

        background: -webkit-linear-gradient(90deg, hsla(0, 74%, 71%, 1) 0%, hsla(0, 84%, 60%, 1) 100%);

        color: #020202;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        outline: none;


    }

    /* Show menu when checkbox is checked */
    .ContactmenuToggle{
        position: absolute;
        display: none;
        outline: none;


    }

    .toggleLabel{
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        outline: none;

    }

    .Contactmenu1:nth-child(3){
        transition: transform 0.5s cubic-bezier(.56,-0.79,.33,2.13), opacity 0.5s ease;

    }
    .Contactmenu1:nth-child(4){
        transition: transform 0.8s cubic-bezier(.56,-0.79,.33,2.13)0.1s, opacity 0.8s ease 0.1s;

    }.Contactmenu1:nth-child(5){
         transition: transform 1s cubic-bezier(.56,-0.79,.33,2.13) 0.3s, opacity 1s ease 0.3s;

     }.Contactmenu1:nth-child(6){
          transition: transform 1.2s cubic-bezier(.56,-0.79,.33,2.13)0.3s, opacity 1.2s ease 0.3s;

      }
    .chat-container {
        width: 90vw;
        height: 30vh;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        position: fixed;
        z-index: 100;
        opacity: 0;
        transition: opacity 0.5s ease, transform 0.5s ease;
        pointer-events: none;
        transform: translateY(100%);
        top: 67%;
        left: 5%;
    }
    .chat-container-active{
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0%);

    }
    .chat-display {
        flex: 1;
        padding: 10px;
        overflow-y: auto;
        border-bottom: 1px solid #ddd;
    }
    .chat-message {
        margin: 5px 0;
        padding: 8px 12px;
        border-radius: 20px;
        display: flex;
    }
    .user-message {
        background-color: #55be8f;
        align-self: flex-end;
    }
    .bot-reply {
        background-color: #e7d1dd;
        align-self: flex-start;
        color: #000;
    }
    .chat-input {
        border-top: 1px solid #6e6d6d;
        border-radius: 20px;
        background: #000000;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .chat-input input {
        flex: 1;
        padding: 10px;
        border: none;
        font-size: 16px;
        outline: none;
        width: 20%;
        height: 3vh;
        color: #ffffff;
        background: transparent;

    }
    .chat-input button {
        padding: 10px;
        width: 20%;
        border: none;
        background-color: #007bff;
        color: white;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;

    }
    .chat-input button:hover {
        background-color: #87a3be;
    }
    .Contactmenu1:hover{
        background: red;
    }
    i{
        pointer-events: none;
    }

    .ContactmenuToggle:checked ~ .Contactmenu1:nth-child(3) {
        opacity: 1;
        transform: translate(30%, -300%) scale(1.2) rotateZ(360deg);
        pointer-events: auto;
    }
    .ContactmenuToggle:checked ~ .Contactmenu1:nth-child(4) {
        opacity: 1;
        transform: translate(-120%, -240%) scale(1.2) rotateZ(360deg);
        pointer-events: auto;
    }

    .ContactmenuToggle:checked ~ .Contactmenu1:nth-child(5) {
        opacity: 1;
        transform: translate(-230%, -130%) scale(1.2) rotateZ(360deg);
        pointer-events: all;
    }
    .ContactmenuToggle:checked ~ .Contactmenu1:nth-child(6) {
        opacity: 1;
        transform: translate(-300%, 0%) scale(1.2) rotateZ(360deg);
        pointer-events: all;
    }
    .ContactmenuToggle:checked ~ .Contactmenu1:nth-child(4) {
        opacity: 1;
        transform: translate(-120%, -240%) scale(1.2) rotateZ(360deg);
        pointer-events: all;
    }
    .ContactmenuToggle:checked ~ .Contactmenu1:nth-child(5) {
        opacity: 1;
        transform: translate(-230%, -130%) scale(1.2) rotateZ(360deg);
        pointer-events: all;
    }
    .ContactmenuToggle:checked ~ .Contactmenu1:nth-child(6) {
        opacity: 1;
        transform: translate(-300%, 0%) scale(1.2) rotateZ(360deg);
        pointer-events: all;
    }
    .PreloaderContainer {
        background: white;
        width: 100vw;
        height: 100vh;
        position: fixed;
        z-index: 100;
        color: #f0f0f0;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 1;
        scale: 1;
    }

    #logo{
        width: 70vw;
        height: 70vw;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;
        opacity: 0;
        pointer-events: none;

    }
    #logo path{
        will-change: stroke-dashoffset;
    }

    #main{
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    #sticky{
        position: relative;
        top:0;
        left:0 ;
        height: 135vh;
        width: 100vw;
        overflow: hidden;
    }
    .page {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 1;
        pointer-events: none; /* Prevent interactions when invisible */
        transition: opacity 0.5s ease;
    }

    #page1{
        height: 100vh;
        width: 100vw;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 3;
        pointer-events: auto;

    }


    #svgOne{
        position: absolute;
        top:20%;
        z-index: -1;
        pointer-events: none;

    }

    #svgTwo{
        position: absolute;
        top:20%;
        z-index: -1;
        pointer-events: none;


    }

    .mask-rec2{
        will-change: transform;
    }.mask-rec3{
         will-change: transform;
     }

    #avatarAndTitle{
        width: 80%;
        height: 100vh;
        margin-block: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: auto;
        will-change: transform;

    }
    #hero-title{
        height: 100vh;
        width: 99vw;
        border-radius: 0;
        z-index: -1;
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: none;
        opacity: 1;
        transform: translateY(-20vh);
    }

    #titleWrapper{
        font-size: 20vh;
        width: auto;
        height: fit-content;
        color: rgba(3, 3, 3, 0.9);
        text-align: center;
        z-index: 3;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        will-change: transform;




    }

    #title-1{
        max-height: 200px;
        max-width: 200px;
        min-width: 70px;
        min-height: 70px;
        margin-inline: auto;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        will-change: transform;
        border-radius: 50%;


    }
    #title-1 svg{
        max-width: 330px;
        max-height: 330px;
        min-width: 150px;
        min-height: 150px;
        opacity: 1;
        scale: 1.5;
    }
    #title-1 svg path{
        fill: none;
        opacity: 0;
    }
    #avatarWrapper{
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
        height: 100vh;
        width: 50vw;
        position: absolute;
        perspective: 900px;

    }
    #avatar {
        position: absolute;
        max-width: 600px;
        max-height: 600px;
        min-width: 400px;
        min-height: 400px;

        z-index: 2;
        margin-bottom: 0%;
        margin-left: 1%;
        will-change: transform;
        filter: saturate(0)opacity(0);
        align-self: flex-end;
        transform-style: preserve-3d;
        backface-visibility: hidden;
        transform-origin: 50% 50%;


    }
    #circle-text {
        color: #3b3b3b;
        z-index: 1;
        will-change: transform;
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: none;
        transform: translateY(-20vh);

    }
    #rotated{
        font-size: clamp(20px, 28px, 30px);
    }


    .montserrat-thin {
        font-family: "Montserrat", serif;
        font-optical-sizing: auto;
        font-weight: 200;
        font-style: normal;
    }
    #page2 {
        background: rgb(66, 66, 66);
        border-radius: 40px;

        min-height: 100svh;
        height: auto;
        width: 100vw;
        z-index: 4;
        margin-inline: auto;
        display: block;
        position: absolute;
        opacity: 1;
        transform: translateX(-99%)translateY(0%);
        pointer-events: none;
        will-change: transform;
        padding: clamp(72px, 14vh, 120px) 0 6vh;
        box-sizing: border-box;


    }
    #page2::after{
        content: "";
        display: none;
    }

    #about-content {
        height: auto;
        min-height: 100%;
        width: 100%;
        z-index: 3;
        background: transparent;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1vh;

    }
    .grid-item{
        background: rgba(255, 255, 255, 0.85);
        border-radius: 16px;
        position: relative;
        width: 90%;
        margin-inline: auto;

    }
    .grid-item h1{
        font-size: 2.7vh;
    }

    #about1{
        grid-area: main;
        overflow: hidden;
        display: grid;
        row-gap: 1.5vh;
        align-content: center;
        grid-template-columns: 100%;
        grid-template-rows: auto;
        grid-template-areas: "pp" "info""education""education";
        font-family: -apple-system, BlinkMacSystemFont, sans-serif;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(182, 227, 234, 0.68);
        padding: 2.5vh 0 2vh;

    }


    #image{
        overflow: hidden;
        background: rgba(255, 255, 255, 0.25);
        grid-area: pp;
        width: clamp(96px, 28vw, 120px);
        height: clamp(96px, 28vw, 120px);
        margin-inline: auto;
        margin-block: auto;
        border-radius: 50%;
        margin-top: 0;
        z-index: 1;
        border: 3px solid rgba(255, 255, 255, 0.65);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);


    }
    #pp{
        max-height: 100%;
        max-width:  100%;
        overflow: hidden;
        scale: 1;
        margin-left: 11%;
        margin-right: auto;


    }
    #main-content{
        grid-area: info;
        width: 88%;
        margin-inline: auto;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        align-content: flex-start;
        align-items: flex-start;
        text-align: left;
        background: rgba(255, 255, 255, 0.92);
        padding: 1rem 1.1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

    }
    #infoText{
        align-content: center;
        text-align: left;
        display: grid;
        gap: 0.4rem;
    }
    #main-content h1{
        margin: 0 0 0.4rem;
        color: black;
        font-weight: 600;
        font-size: clamp(16px, 5vw, 20px);
    }
    #main-content p{
        width: 100%;
        height: auto;
        font-size: clamp(12px, 3.8vw, 16px);
        font-weight: 200;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        line-height: 1.4;
    }

    #education{
        grid-area: education;
        background: rgb(0, 0, 0);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.6rem;
        flex-wrap: wrap;
        color: rgb(0, 0, 0);
        width: 88%;
        margin-inline: auto;
        border-radius: 14px;
        padding: 0.9rem 1rem 1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);

    }
    #education h1{
        margin: 0 0 0.4rem;
        color: rgb(255, 255, 255);
        font-weight: 600;
        position: relative;
        font-size: clamp(14px, 4.6vw, 18px);
    }
    #educationText{
        font-size: clamp(12px, 3.6vw, 16px);
        font-weight: 200;
        color: rgb(255, 255, 255);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        height: auto;
        gap: 0.6rem;
        position: relative;


    }
    #educationText span span{
        font-style: italic;
        color: #e86d6d;
    }

    #educationText hr{
        width: 90%;
        margin: 0.2rem 0;
    }
    #major{

        margin-left: 0;
    }
    #minor{
        font-size: clamp(12px, 3.6vw, 16px);
        color: white;
        margin-left: 0;


    }
    #level,
    #current-title{
        display: none;
    }



    #about2{
        background: rgb(0, 0, 0);
        height: 30vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;

    }
    #about2 h1{
        margin-top: 5%;
        font-size: calc(2vh + 1vw);

        color: rgb(255, 255, 255);
        font-weight: 600;
        position: relative;
        align-self: center;
    }
    #skillsContainer{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 5%;
        overflow-y: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        position: relative;

    }
    #skillsContainer div{
        display: grid;
        grid-template-columns: 20% 70%;
        column-gap: 5%;
        align-items: center;
        flex-wrap: wrap;
        width: 90%;
        height: 30%;
    }
    .skills {
        font-size: clamp(12px, 4.6vw, 18px);
        font-weight: 200;
        font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;


    }
    #skillsContainer div img{
        object-fit: cover;
    }
    .skillImg {
        max-width: 100%;
        max-height: 100%;
    }

    #about3 {
        display: flex;                /* Make it a flex container */
        flex-direction: column;       /* Stack elements vertically */
        justify-content: center;      /* Center vertically */
        align-items: center;          /* Center horizontally */
        text-decoration: none;        /* Remove underline from anchor */
        color: #fff;                  /* Default text color */
        background-color: black;      /* Black background */
        overflow: hidden;             /* Prevent overflow */
        grid-area: leetcode;             /* Full height */}

    #about3 h1 {
        margin-top: 5%;
        font-size: calc(2vh + 1vw);
        font-weight: 600;
        text-align: center;
    }

    .progress-container {
        display: flex;                /* Stack rings and text vertically */
        flex-direction: column;
        align-items: center;          /* Center horizontally */
        justify-content: center;      /* Center vertically */
        width: 100%;
        height: 90%;                 /* Let content determine height */
        margin-top: -2%;
    }

    .progress-rings {
        display: flex;                /* Horizontal layout for circles */
        justify-content: center;
        align-items: center;
        gap: 10%;                    /* Space between circles */
        width: 100%;
        height: auto;
    }

    .progress-ring {
        position: relative;           /* Needed for absolutely positioning text inside */
        width: 100px;                 /* Fixed size for circles */
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .progress-ring svg {
        width: 100%;
        height: 90%;
    }

    .progress-ring circle {
        fill: transparent;
        stroke-width: 10;
    }

    .progress-ring-bg {
        stroke: #444;                /* Dark background stroke */
        r: var(--radius);                       /* Radius for the circle */
    }
    .progress-ring-fg {
        r: var(--radius);;                       /* Radius for the circle */
    }
    .progress-ring-easy {
        stroke: #00bcd4;             /* Easy color */
        transition: stroke-dasharray 1s ease-in-out;
    }
    .progress-ring-medium {
        stroke: #ffeb3b;             /* Medium color */
        transition: stroke-dasharray 1s ease-in-out;
    }
    .progress-ring-hard {
        stroke: #e86d6d;             /* Hard color */
        transition: stroke-dasharray 1s ease-in-out;
    }

    .circle-label {
        position: absolute;          /* Absolute position inside .progress-ring */
        top: 48%;
        left: 50%;
        transform: translate(-50%, -50%); /* Center the text */
        font-size: 3vw;             /* Adjust font size as needed */
        font-weight: bold;
        pointer-events: none;        /* Prevent clicks on the text */
        text-align: center;          /* Center-align text */
    }
    .circle-label-sub {
        position: absolute;          /* Absolute position inside .progress-ring */
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%); /* Center the text */
        font-size: 3vw;             /* Adjust font size as needed */
        font-weight: bold;
        pointer-events: none;        /* Prevent clicks on the text */
        text-align: center;          /* Center-align text */
    }
    #about4{
        display: none;
    }
    #about5{
        grid-area: course;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5%;
        background: black;
    }
    #about5 h1{
        font-weight: 600;
        color: rgb(248, 248, 248);
        position: relative;
        margin-top: 5%;
        font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
    }
    .container .swiper{
        position: relative;
    }
    .swiper{
        width: 95%;
        height: 80px;
        display: flex;
        flex-direction: column;
    }


    .insideSwiper{
        height: 62px;
        width: 90%;
        border-radius: 1vw;
        background: rgba(211, 211, 211, 0.3);
        text-align: center;
        align-content: center;
        display: flex;
        flex-direction: column;
        margin: 0 auto auto auto;
        box-sizing: border-box;
    }
    .cardList .swiper-slide{
        transition: 0.5s ease;
    }

    .swiper-scrollbar{
        display: none;
    }
    .swiper-button-next{
        scale: 0.5;
    }
    .swiper-button-prev{
        scale: 0.5;
    }

    .courseTitle{
        font-size: clamp(12px, 3.6vw, 18px);
        font-weight: 400;
        color: #e86d6d;
        padding: 1px;

    }
    .swiper-slide p{
        color: rgba(196, 194, 194, 0.9);
        margin:  auto;
        padding: 1px;
        font-size: clamp(8px, 3vw, 12px);
    }
    .slider-wrapper .swiper-pagination-bullet {
        display: none;
    }



    #page3 {
        height: 45vh;
        width: 100vw;
        z-index: 4;
        overflow: hidden;
        position: relative;
        background: #000000;
        pointer-events: none;

    }
    #page3HeadingContainer{
        height: 50vh;
        width: 100vw;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;

    }
    #video{
        height: 100%;
        width: 100%;
        position: absolute;
        clip-path: circle(3% at 0 48%);

    }
    #page3HeadingContainer h2{
        width: 100%;
        height: 100%;
        font-size: 15vw;
        color: #ffffff;
        position: absolute;
        background: #000000;
        mix-blend-mode: multiply;
        clip-path: circle(3% at 0 48%);

    }
    #page4{
        height: 100vh;
        width: 100vw;
        position: relative;
        background: #000000;
        pointer-events: auto;
    }
    .projects-container{
        height: 100vh;
        width: 100vw;
        position: relative;
        opacity: 1;

    }
    .ProjectcardContainer{
        top:50% ;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 600px;
        width: 150vw;
        position: absolute;
        will-change: transform;
    }
    .cardImg img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .projectcards{
        position: absolute;
        width: 350px;
        height: 400px;
        top:50%;
        left:50%;
        transform: translate(-50%, -50%);
        transform-origin: center center;
        display: flex;
        flex-direction: column;
        gap: 1em;
        will-change: transform;

    }
    .cardImg{
        flex: 1;
        border-radius: 0.5em;
        overflow: hidden;
    }

    .Project-Counter{
        position: absolute;
        display: flex;
        flex-direction: column;
        margin: 2em;
        top: 80%;
        left: 50%;
        transform: translateX(-60%);

    }
    .counter-title, .counter{
        position: relative;
        width: 80vw;
        height: 3.2vh;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        overflow: hidden;
    }

    .counterContainer{
        position: relative;
        transform: translateY(3.2vh);
        will-change: transform;
    }
    .Project-Counter h1{
        width: 100%;
        height: 3.2vh;
        position: relative;
        color:#fff;
        text-transform: uppercase;
        font-family: "PP Monument Extended", serif;
        font-weight: 400; font-size:20px;
        line-height: 1;
        letter-spacing: -0.04em;
        -webkit-font-smoothing: subpixel-antialiased;
        will-change: transform;
    }
    .projectDescriptionContainer{
        position: absolute;
        display: none;
    }

    .scrollCounter{
        position: absolute;
        display: flex;
        flex-direction: column;
        bottom: 5%;
        transform: translateX(20%);
    }
    .scrollCounterContainer{
        position: relative;

    }
    .scrollCounterContent{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .scrollCounterContent h1{
        width: 100%;
        position: relative;
        opacity: 0;
        color:#fff;
        font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
        text-align: center;
        font-weight: 200; font-size:21px;
        line-height: 1.28;
        -webkit-font-smoothing: subpixel-antialiased;
        will-change: transform;

    }



    /* ==============================
       10. PAGE 5 & FILTER
       ============================== */
    #page5{
        height: 100vh;
        width: 100vw;
        position: relative;
        background: radial-gradient(900px 500px at 85% 10%, rgba(255, 77, 109, 0.2), transparent 60%),
        radial-gradient(700px 400px at 15% 85%, rgba(232, 109, 109, 0.2), transparent 55%),
        #000000;
        overflow: hidden;
        pointer-events: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #page5 h1{
        font-size: clamp(22px, 7vw, 34px);
        color: #ffffff;
        align-self: flex-start;
        margin-top: 18%;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .form-container {
        width: 88%;
        height: auto;
        padding: 22px 20px;
        border-radius: 16px;
        background: rgba(20, 20, 20, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
        display: flex;
        flex-direction: column;
        pointer-events: auto;
        position: absolute;
        top: 30%;
    }

    .form-container label {
        margin-bottom: 6px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
        font-size: 13px;
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
    }
    .form-container input,
    .form-container textarea {
        width: 100%;
        padding: 12px 14px;
        margin-bottom: 10px;
        margin-top: 6px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 12px;
        outline: none;
        font-size: 14px;
        position: relative;
        color: #ffffff;
        background: rgba(8, 8, 8, 0.9);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .form-container input:focus,
    .form-container textarea:focus {
        border-color: rgba(232, 109, 109, 0.9);
        box-shadow: 0 0 0 3px rgba(232, 109, 109, 0.2);
    }
    .form-container button {
        width: 100%;
        padding: 12px 14px;
        border: none;
        background: linear-gradient(135deg, #ff4d6d 0%, #e86d6d 60%, #ffd36e 100%);
        color: white;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        cursor: pointer;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        box-shadow: 0 12px 24px rgba(232, 109, 109, 0.25);
    }
    .form-container button:hover {
        filter: brightness(1.03);
    }

}

/* ==============================
   13. LENIS SMOOTH SCROLL
   ============================== */

html.lenis, html.lenis body {
    scroll-behavior: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}
