body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: lightgray;
}

html{
    scroll-behavior: smooth;
}

.container{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    background-color: #001f7c38;
}

.back-vid{
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
    mix-blend-mode: lighten;
}

header{
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.123);
    backdrop-filter: blur(100px);
    padding: 0 30px;
    box-shadow: 0 0 15px #72a1de68;
    z-index: 999;
}

.left{
    display: flex;
    align-items: center;
}

.left img{
    width: 40px;
    margin: 0 15px;
}

header ul{
    display: flex;
    justify-content: space-between;
    width: auto;
    min-width: 30%;
    padding: 15px 25px;
    border-radius: 50px;
    background-color: rgba(0, 0, 69, 0.30);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px #727fde65;
    gap: 10px;
}

header ul li{
    list-style: none;
    white-space: nowrap;
}

header ul a{
    text-decoration: none;
    color: white;
    font-weight: 700;
    margin: 0 5px;
    font-size: 16px;
    white-space: nowrap;
}

.box-icons{
    display: flex;
    gap: 40px;
}

.box-icons a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border:2px solid #727fde;
    text-decoration: none;
    color: lightgray;
    border-radius: 50%;
    transition: 0.3s;
}

.box-icons a:hover{
    background-color: #727fde;
    color: black;
    box-shadow: 0 0 15px #727fde6f;
}

.blackhole-box{
    z-index: -1;
    position: absolute;
    top: 0;
    width: 100%;
    justify-content: center;
    mix-blend-mode: lighten;
}

.blackhole-box video{
    width: 100%;
    margin-top: -23.5%;
}

.hero{
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
}

.hero-info{
    position: absolute;
    left: 5%;
}

.hero-info .hero-info-title{
    color: #727fde;
    padding: 8px 5px;
    border: 1px solid #727fde77;
    width: 215px;
    background-color: #2200493d;
    box-shadow: 0 0 5px #727fde88;
    border-radius: 50px;
}

.hero-info h1{
    font-size: 60px;
    max-width: 600px;
    font-weight: 700;
    line-height: 70px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.hero-info p{
    max-width: 550px;
    line-height: 25px;
    margin-bottom: 40px;
    font-size: 20px;
}

.hero-info button{
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    border: 1px solid #72a1deb4;
    background-color: #2200493d;
    box-shadow: 0 0 5px #727fde86;
    cursor: pointer;
    transition: 0.3s;
}

.hero-info button:hover{
    box-shadow: 0 0 15px #727fde86;
}

.gradient{
    background: linear-gradient(to right, #008baa, #7e42a7, #6600c5, #6070fd, #2a46ff, #0099ff, #008ead);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient {
    to{
        background-position: 200%;
    }
}

.hero-vid-box{
    position: absolute;
    right: 3%;
}

.hero-vid-box video{
    height: 900px;
    mix-blend-mode: lighten;
}

.scroll-down{
    height: 50px;
    width: 30px;
    border: 2px solid lightgray;
    position: absolute;
    left: 49%;
    bottom: 8%;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.626);
}

.scroll-down::before,
.scroll-down::after{
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
    border: 2px solid lightgray;
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 2s ease-in-out infinite;
}

.scroll-down::before{
    top: 30%;
    animation-delay: 0.5s;
}

@keyframes scroll-down{
    0% {
        opacity: 0;
    }
    30%, 60% {
        opacity: 1;
    }
    100% {
        top: 90%;
        opacity: 0;
    }
}

.info-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin-top: 100px;
}

.section-title{
    font-size: 40px;
    font-weight: 700;
}

.info-cards{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    width: 100%;
    height: 100%;
    margin-top: 30px;
}

.cards{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: auto;
    height: 40vh;
    overflow: hidden;
    border: 1px solid gray;
    background-color: #080020b7;
    border-radius: 20px;
    transition: 0.3s;
}

.cards img{
    width: 80%;
    height: 50%;
    object-fit: cover;
}

.cards h1{
    position: absolute;
    margin: 0;
    bottom: 40%;
    left: 5%;
    font-size: 25px;
    z-index: 1;
    color: lightgray;
}

.cards p{
    position: absolute;
    bottom: 3%;
    left: 5%;
    z-index: 1;
    max-width: 300px;
    color: gray;
    font-size: 13px;
    line-height: 20px;
}

.cards video{
    margin-top: 10%;
    width: 70%;
    height: 50%;
    object-fit: cover;
    mix-blend-mode: lighten;
}

.cards button{
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #72a1deb4;
    background-color: #2200493d;
    box-shadow: 0 0 5px #727fde86;
    cursor: pointer;
    transition: 0.3s;
    position: absolute;
    bottom: 5%;
    left: 5%;
}

.cards button:hover{
    box-shadow: 0 0 15px #727fde86;
    opacity: 0.7;
}

.cards:hover{
    box-shadow: 0 0 15px rgba(211, 211, 211, 0.5);
}

.cards:nth-child(3){
    grid-row: span 2;
    height: 83vh;
}

.cards:nth-child(3) p{
    bottom: 12%;
}

.cards:nth-child(3) h1{
    bottom: 25%;
}

.cards:nth-child(4){
    grid-column: span 2;
}

.cards:nth-child(4) p{
    max-width: 650px;
}

.cards:nth-child(4) h1{
    bottom: 35%;
}

/* My projects */

.my-projects{
    display: flex;
    flex-direction: column;
    gap: 10%;
    align-items: center;
    position: relative;
    width: 80%;
    height: 100vh;
    margin-top: 200px;
    margin-bottom: 700px;
}

.project-card{
    display: flex;
    width: 100%;
    height: 40%;
    align-items: center;
    gap: 10%;
    justify-content: center;
}

.project-vidbox{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    position: relative;
    cursor: pointer;
    min-width: 400px;
    transition: 0.5s;
    mix-blend-mode: exclusion;
}

.project-vidbox video{
    object-fit: cover;
    width: 100%;
    box-shadow: 0 0 10px lightgray;
    border-radius: 20px;
    transition: 0.5s;
}

.project-vidbox video:hover{
    box-shadow: 0 0 20px lightgray;
}

.project-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 50%;
    padding-left: 10%;
}

.project-info h1{
    width: 90%;
    font-size: 25px;
    font-weight: bold;
    text-wrap: nowrap;
    margin-bottom: 10px;
    margin-top: 0;
    max-width: 450px;
}

.project-info p{
    width: 90%;
    max-width: 400px;
    min-width: 300px;
    margin-bottom: 50px;
    margin-top: 0;
}

.project-info button{
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #72a1deb4;
    background-color: #2200493d;
    box-shadow: 0 0 5px #727fde86;
    cursor: pointer;
    transition: 0.3s;
}

.project-info button:hover{
    box-shadow: 0 0 15px #727fde86;
    opacity: 0.7;
}

.hover-sign{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100px;
}

.hover-sign::before,
.hover-sign::after{
    content:"👆";
    text-align: center;
    position: absolute;
    font-size: 50px;
    top: 20%;
    left: 40%;
    border-radius: 50%;
    animation: hoverAnimation 3s ease-in-out infinite;
}

@keyframes hoverAnimation{
    0% {
        box-shadow: 0 0 5px lightgray;
        transform: translate(100%, 50%) rotate(30deg);
    }
    100% {
        box-shadow: 0 0 15px lightgray;
        transform: translate(80%, 50%) rotate(0deg);
    }
}

.hover-sign.active{
    display: none;
}

/* skills-section */

.skills-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.skills-box{
    width: 100%;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
}

.skills-image{
    width: 70%;
    mix-blend-mode: lighten;
    opacity: 0.7;
}

.designer{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: start;
    top: 25%;
    left: 5%;
    max-width: 300px;
}

.coder{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: start;
    top: 25%;
    right: 5%;
    max-width: 300px;
}

.skills-box h1{
    font-size: 50px;
    display: flex;
    align-items: center;
}

.skills-box p{
    line-height: 23px;
}

/* SLIDER */

.slider{
    position: absolute;
    bottom: 5%;
    right: 20%;
    width: 60%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
    mix-blend-mode: difference;
    opacity: 0.7;
}

.slider .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (10s / var(--quantity)) * (var(--position) - 1) - 10s)!important;
}

.slider .list .item img{
    width: 100%;
}

@keyframes autoRun{
    from {
        left: 100%;
    }
    to {
        left: calc(var(--width) * -1);
    }
}

.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}

.slider .item:hover{
    filter: grayscale(0);
}

/* Contact section */

.contact-section{
    width: 80%;
    height: 100vh;
    display: flex;
    justify-content: center;
    gap: 10%;
    align-items: center;
    position: relative;
}

.contact-section h1{
    position: absolute;
    top: 10%;
    left: 40%;
}

.social-box{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.social-box a{
    color: lightgray;
    text-decoration: none;
    font-size: 20px;
    text-wrap: nowrap;
}

.social-box i{
    color: #7668ff;
    font-size: 30px;
    margin-right: 10px;
}

.social-icons a i{
    color: white;
    margin-top: 40px;
}

.contact-box p{
    max-width: 400px;
    margin-top: 30px;
    margin-bottom: 5px;
}

.contact-box input{
    padding: 7.5px 30px;
    background-color: lightgray;
    width: 80%;
    height: 25px;
    border: none;
    outline: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.contact-box button{
    margin-top: 30px;
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    border: 1px solid #72a1deb4;
    background-color: #2200493d;
    box-shadow: 0 0 5px #727fde86;
    cursor: pointer;
    transition: 0.3s;
}

.contact-box button:hover{
    opacity: 0.8;
    box-shadow: 0 0 15px #727fde86;
}

footer{
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.128);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.356);
    z-index: 999;
}

footer h1{
    font-size: 30px;
}

.menu-icon{
    font-size: 35px;
    cursor: pointer;
    display: none;
}

/* SIDEBAR */

.sidebar{
    position: fixed;
    right: 0;
    top: 0;
    bottom: 70;
    width: 0%;
    background-color: #000000b8;
    backdrop-filter: blur(10px);
    z-index: 999;
    box-shadow: 0 0 20px rgba(211, 211, 211, 0.411);
    border-bottom-left-radius: 100%;
    opacity: 0;
}

.close-icon{
    font-size: 50px;
    color: lightgray;
    padding-left: 10px;
    cursor: pointer;
}

.sidebar ul{
    padding-left: 20px;
}

.sidebar ul li{
    list-style: none;
    margin-bottom: 30px;
}

.sidebar ul li a{
    text-decoration: none;
    color: lightgray;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(128, 1281 1281 0.256);
}

.sidebar .social-icons{
    padding-left: 20px;
    margin-top: 60px;
    text-wrap: nowrap;
}

.sidebar .social-icons a{
    font-size: 35px;
    padding: 5px 5px ;
    cursor: pointer;
}

/* open sidebar animation */
.sidebar.open-sidebar{
    animation: openSidebarAnimation 1.5s forwards;
}

@keyframes openSidebarAnimation {
    to {
        width: 80%;
        opacity: 1;
        bottom: 0;
        border-radius: 0;
    }
}

.sidebar.close-sidebar{
    animation: closeSidebarAnimation 1.5s forwards;
}

@keyframes closeSidebarAnimation {
    from {
        width: 80%;
        opacity: 1;
        bottom: 0;
        border-radius: 0;
    }
    to {
        width: 0;
        opacity: 0;
        bottom: 70%;
        border-bottom-left-radius: 50%;
    }
}


/* ==================== NOTIFICATION STYLES ==================== */

/* Custom Notification Styles */
.custom-notification {
    position: fixed;
    top: 90px;
    right: 30px;
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.custom-notification.success {
    background-color: #10b981;
    color: white;
    border: 2px solid #059669;
}

.custom-notification.error {
    background-color: #ef4444;
    color: white;
    border: 2px solid #dc2626;
}

.experience-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin-top: 150px;
    margin-bottom: 150px;
    position: relative;
}

.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin-top: 50px;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #72a1de, #7e42a7, #6600c5);
    transform: translateX(-50%);
    z-index: 0;
}

.experience-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 45%;
    background-color: #080020e6;
    backdrop-filter: blur(10px);
    border: 1px solid #72a1de4d;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    z-index: 1;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(114, 161, 222, 0.3);
    border-color: #72a1de;
}

.experience-card:nth-child(odd) {
    align-self: flex-start;
}

.experience-card:nth-child(even) {
    align-self: flex-end;
}

.experience-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #72a1de, #7e42a7);
    border: 3px solid #080020;
    border-radius: 50%;
    top: 40px;
    box-shadow: 0 0 15px rgba(114, 161, 222, 0.6);
    z-index: 2;
}

.experience-card:nth-child(odd)::after {
    right: -62px;
}

.experience-card:nth-child(even)::after {
    left: -62px;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.experience-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #72a1de, #7e42a7);
    border-radius: 15px;
    font-size: 30px;
    color: white;
    box-shadow: 0 5px 15px rgba(114, 161, 222, 0.4);
    flex-shrink: 0;
}

.experience-date {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: #2200493d;
    border: 1px solid #72a1de77;
    border-radius: 20px;
    color: #72a1de;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.experience-date i {
    font-size: 18px;
}

.experience-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    background: linear-gradient(to right, #008baa, #7e42a7, #6600c5, #6070fd);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-content h3 {
    font-size: 19px;
    font-weight: 600;
    color: lightgray;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.experience-content h3 i {
    color: #72a1de;
    font-size: 22px;
}

.experience-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.experience-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: lightgray;
    font-size: 14px;
    line-height: 22px;
}

.experience-points li i {
    color: #10b981;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.experience-points .highlight {
    color: #72a1de;
    font-weight: 700;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.experience-tags .tag {
    padding: 6px 15px;
    background-color: #2200493d;
    border: 1px solid #72a1de77;
    border-radius: 20px;
    color: #72a1de;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.experience-tags .tag:hover {
    background-color: #72a1de;
    color: black;
    box-shadow: 0 0 10px #72a1de6f;
}

/* Loading spinner animation for button */
@keyframes spin {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}

.bx-spin {
    animation: spin 1s linear infinite;
}


/* Blurr Effect Animation */
.autoBlur{
    animation: autoBlurAnimation linear both;
    animation-timeline: view();
}

@keyframes autoBlurAnimation{
    0% {
        filter: blur(40px);
        opacity: 0;
    }
    35%, 65% {
        filter: blur(0);
        opacity: 1;
    }
    100% {
        filter: blur(40px);
        opacity: 0;
    }
}

/* Auto display animation */
.autoDisplay{
    animation: autoDisplayAnimation both;
    animation-timeline: view();
}

@keyframes autoDisplayAnimation {
    from {
        filter: blur(10px);
        transform: translateY(-200px) scale(0);
        opacity: 0.2;
    }
    50% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) scale(1);
    }
}

/* FadeIn Right */
.fadeInRight{
    animation: fadeInAnimation both;
    animation-timeline: view();
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        transform: translateX(-500px) scale(0.2);
        filter: blur(20px);
    }
    35%, 65% {
        opacity: 1;
        transform: translateX(0px) scale(1);
        filter: blur(0);
    }
    100% {
        filter: blur(20px);
    }
}

@media (max-aspect-ratio: 16/9){
    .back-vid{
        width: auto;
        height: 100%;
    }
}

@media (min-aspect-ratio: 16/9){
    .back-vid{
        width: 100%;
        height: auto;
    }
}


/* TABLET RESPONSIVE */
@media screen and (max-width:1000px){
    .blackhole-box video{
        margin-top: -20%;
    }

    .hero-info h1{
        font-size: 40px;
        max-width: 400px;
        line-height: 40px;
    }

    .hero-info p{
        max-width: 300px;
    }

    .hero-vid-box{
        right: 0;
    }

    .hero-vid-box video{
        height: 500px;
    }

    .section-title{
        font-size: 30px;
    }

    .info-cards{
        grid-template-columns: auto;
    }

    .cards:nth-child(3){
        grid-column: span 2;
        height: 70vh;
    }

    .info-cards .card h1{
        font-size: 20px;
    }

    .cards:nth-child(3) h1{
        bottom: 25%;
    }

    .cards video{
        height: 65%;
        margin-top: 5%;
    }

    .my-projects{
        margin-bottom: 300px;
    }

    .project-vidbox video{
        width: 250px;
        margin-left: -100px;
    }

    .project-info{
        padding-left: 0;
        margin-left: -50px;
    }

    .project-info h1{
        font-size: 20px;
        max-width: 200px;
        text-wrap: wrap;
    }

    .project-info p{
        font-size: 10px;
        text-wrap:  wrap;
        max-width: 200px;
        min-width: 0;
    }

    .experience-section {
        width: 85%;
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .experience-timeline {
        gap: 40px;
    }

    /* Move timeline to left side */
    .experience-timeline::before {
        left: 30px;
        transform: none;
    }

    /* All cards aligned to right of timeline */
    .experience-card {
        width: calc(100% - 80px);
        align-self: flex-start !important;
        margin-left: 70px;
    }

    .experience-card:nth-child(odd),
    .experience-card:nth-child(even) {
        align-self: flex-start !important;
        margin-left: 70px;
        margin-right: 0;
    }

    /* All dots on left side */
    .experience-card::after {
        left: -55px !important;
        right: auto !important;
    }

    .experience-content h2 {
        font-size: 23px;
    }

    .experience-content h3 {
        font-size: 17px;
    }

    .experience-points li {
        font-size: 13px;
        line-height: 20px;
    }

    .experience-tags .tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    footer{
        font-size: 20px;
    }
}

/* Mobile devices */
@media screen and (max-width: 700px){
    header{
        position: fixed;
        height: 50px;
    }

    header ul{
        display: none;
    }

    header .box-icons{
        display: none;
    }

    header h1{
        font-size: 25px;
    }

    .blackhole-box video{
        margin-top: -16%;
    }

    .hero{
        flex-direction: column;
    }

    .autoBlur{
        animation: none;
    }

    .hero-info{
        bottom: 5%;
    }

    .scroll-down{
        bottom: 5%;
    }

    .hero-info h1{
        line-height: 50px;
    }

    .hero-vid-box{
        height: 200px;
        top: 5%;
        right: 5%;
    }

    .cards video{
        width: 100%;
    }

    .my-projects{
        margin-bottom: 600px;
    }

    .project-card{
        flex-direction: column;
        margin-left: 25%;
        gap: 30px;
    }

    .project-info{
        width: 85%;
    }

    .project-info h1{
        text-wrap: nowrap;
    }

    .project-info p{
        max-width: 300px;
    }

    .designer{
        top: 15%;
        left: 18%;
    }

    .coder{
        top: 50%;
        left: 18%;
    }

    .skills-box h1{
        margin-bottom: 0;
        margin-top: 70px;
    }

    .slider{
        bottom: 0;
    }

    .slider img{
        width: 60%;
    }

    .contact-section{
        flex-direction: column;
        margin-top: 100px;
        margin-bottom: 50px;
    }

    .contact-section .section-title{
        top: -40%;
        left: 25%;
    }

    footer h1{
        font-size: 17px;
    }

    .project-vidbox{
        min-width: 200px;
    }

    .menu-icon{
        display: inline;
    }

    .custom-notification {
        top: 70px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
        font-size: 14px;
        padding: 15px 20px;
    }

    .experience-section {
        width: 90%;
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .experience-timeline {
        gap: 35px;
    }

    /* Thinner timeline on mobile */
    .experience-timeline::before {
        left: 20px;
        width: 2px;
    }

    .experience-card {
        width: calc(100% - 60px);
        margin-left: 55px;
        padding: 20px;
    }

    .experience-card:nth-child(odd),
    .experience-card:nth-child(even) {
        margin-left: 55px;
    }

    /* Smaller dots on mobile */
    .experience-card::after {
        width: 14px;
        height: 14px;
        left: -42px !important;
        top: 25px;
        border-width: 2px;
    }

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .experience-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .experience-date {
        font-size: 11px;
        padding: 6px 12px;
    }

    .experience-date i {
        font-size: 14px;
    }

    .experience-content h2 {
        font-size: 19px;
        line-height: 1.3;
    }

    .experience-content h3 {
        font-size: 15px;
    }

    .experience-content h3 i {
        font-size: 18px;
    }

    .experience-points {
        margin: 15px 0;
    }

    .experience-points li {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 12px;
        gap: 10px;
    }

    .experience-points li i {
        font-size: 16px;
        margin-top: 2px;
    }

    .experience-tags {
        gap: 8px;
        margin-top: 15px;
    }

    .experience-tags .tag {
        font-size: 10px;
        padding: 4px 10px;
    }
}

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

    .hero .skills-video-box {
        display: none;
        
    }

    .blackhole-box {
        overflow: hidden;
    }

    .blackhole-box video {
        width: 140%;
        margin-top: -27%;

    }

    .left {
        scale: 0.9;
        margin-left: -30px;
    }

    .left h2 {
        font-size: 20px;
    }

    .hero {
        scale: 0.9;
    }

    .hero-info{
        bottom: 15%;
    }

    .hero-info h1{
        font-size: 35px;
    }

    .scroll-down{
        bottom: 15%;
        left: 60%;
    }

    .section-title {
        font-size: 25px;
    }

    .info-cards{
        display: flex;
        flex-direction: column;
    }

    .card {
        min-height: 20rem;
    }

    .card h1{
        bottom: 30%;
        font-size: 5px;
    }

    .project-card {
        height: 50%;
    }

    .project-info p{
        margin-bottom: 15px;
    }

    .project-info{
        margin-left: -80px;
    }

    .skills-box{
        height: 120vh;
        margin-right: 30px;
    }

    .slider{
        bottom: 0%;
    }

    .contact-section{
        scale: 0.9;
        height: 120vh;
    }

    .contact-section .section-title {
        top: -30px;
        left: 25%;
    }

    .footer{
        padding: 15px;
    }

    .footer h1{
        max-width: 150px;
    }

    .footer .box-icons{
        gap: 10px;
    }

    .custom-notification {
        top: 60px;
        font-size: 13px;
        padding: 12px 15px;
    }

    .experience-section {
        width: 92%;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .experience-timeline {
        gap: 30px;
    }

    .experience-timeline::before {
        left: 15px;
    }

    .experience-card {
        width: calc(100% - 50px);
        margin-left: 45px;
        padding: 15px;
    }

    .experience-card:nth-child(odd),
    .experience-card:nth-child(even) {
        margin-left: 45px;
    }

    .experience-card::after {
        width: 12px;
        height: 12px;
        left: -33px !important;
        top: 20px;
    }

    .experience-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .experience-content h2 {
        font-size: 17px;
    }

    .experience-content h3 {
        font-size: 14px;
    }

    .experience-points li {
        font-size: 11px;
        line-height: 17px;
    }

    .experience-points li i {
        font-size: 14px;
    }

    .experience-tags .tag {
        font-size: 9px;
        padding: 4px 8px;
    }
}