@font-face {
    font-family: inter;
    src: url("./Inter-VariableFont_opsz\,wght.ttf");

}

html {
    scroll-behavior: smooth;
}





* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    color: white;
    cursor: none;
}




/* body  */
body {
    scroll-behavior: smooth;
    background: #000;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.links a {
    cursor: none;
}


/* contianer */

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}


.box01 {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* card */


.card {

    height: 43rem;
    width: 24rem;
    border: 1px solid gray;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* margin-top: -60rem; */
    position: fixed;
    top: 5rem;
    margin: 10px;

}


.card:hover {
    border: 1px solid #00ff55;
    transition: all 0.2s ease-in;
}

.card {
    opacity: 0;
    transform: translateY(30px);
    animation: appear 0.8s ease-out forwards;
}

@keyframes appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* profile image */

.image {
    height: 19rem;
    width: 19rem;
    border: 1px solid white;
    border-radius: 20px;
    background-image: url('./Screenshot\ 2025-07-10\ 200051.png');
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(100%);

}



/* availabke too work  */


.work {
    width: 14rem;
    height: 3rem;
    border: 1px solid gray;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 10px;
    font-family: inter;
    font-weight: 700;
}

/* dot effect  */

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00ff55;
    /* green dot */
    box-shadow: 0 0 8px #00ff55;
    animation: pulse 1.5s infinite ease-in-out;
    font-family: "Inter", sans-serif;

}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 85, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(0, 255, 85, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 85, 0);
    }
}





/* name */
.name {
    font-size: 2rem;
    font-family: 'Poppins';
    font-weight: 700;
}



@keyframes appear {
    from {
        opacity: 0;
        clip-path: inset(100% 100% 0 0);
    }

    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.project-card {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.stake-box {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}


#typing-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #00FC8A;
    width: fit-content;
    animation: blink-caret 0.95s step-end infinite;
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #00FC8A;
    }
}





/* links */

.fa-brands {
    padding: 10px;
    border: 1px solid gray;
    border-radius: 10px;
    gap: 10px;
    font-size: 2rem;
}

.fa-brands:hover {
    transform: scale(0.9);
    transition: all 0.3s ease-in-out;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn01 {
    font-family: inter;
    padding: 12px;
    border: 0px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
}

.btn01:hover {
    cursor: pointer;
}

.btn01:active {
    transform: scale(0.9);
    transition: all 0.2s ease-in-out;
}




/* box */
.box {
    /* border: 2px solid white; */
    width: 100%;
    height: 100%;

}



/* box01 */
.box01 {
    width: 100%;
    height: 100%;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* box02 */
.box02 {
    font-family: inter;
    padding: 10px;
    scroll-behavior: smooth;
    margin-top:5rem;
}

.name_info {
    font-size: 2.9rem;
    font-weight: 700;

}

.about_me {
    margin-top: 30px;
    width: 80%;
    margin-bottom: 90px;
}

.information {
    margin-top: 90px;
}


/* stack */


.stakes-wrapper {
    width: 900px;
    margin-top: 90px;

}

.title {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.title::before {
    content: url("https://img.icons8.com/ios-filled/24/ffffff/layers.png");
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stake-box {
    background-color: #111111;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

.stake-box:hover {
    background-color: #1a1a1a;
}

.icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
}

.icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.name {
    font-weight: 600;
    font-size: 1rem;
}

.subtext {
    font-size: 0.85rem;
    color: #bbb;
}





/* education  */



.edu-wrapper {
    width: 900px;
}

.edu-title {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.edu-title::before {
    content: url("https://img.icons8.com/ios-filled/24/ffffff/graduation-cap.png");
}

.edu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edu-box {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.edu-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #eee;
}

.edu-degree {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.edu-institute {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.edu-description {
    font-size: 0.92rem;
    color: #ccc;
    line-height: 1.6;
}













/* contact  */




.contact-section {
    width: 900px;
    margin-top: 4rem;
}

.contact-header {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-header::before {
    content: url("https://img.icons8.com/ios-filled/24/ffffff/paper-plane.png");
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 8px 0 25px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-box {
    background-color: #111;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-box i {
    font-size: 20px;
    color: #00ff88;
    margin-top: 4px;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 0.85rem;
    color: #aaa;
}

.info-data {
    font-size: 0.98rem;
    font-weight: 500;
    margin-top: 4px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 12px;
}

.form-field {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
}

.form-field::placeholder {
    color: #777;
}

.message-box {
    resize: none;
    height: 100px;
}

.send-btn {
    background-color: #00e676;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.send-btn:hover {
    background-color: #00c467;
}



.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    padding: 5px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background: #00c467;
    cursor: none;
}



/* project  */



.projects-section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Cards */
.project-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: #242323;
}

.project-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.project-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 20px;
}



/* Button */
.btn {
    display: inline-block;
    background-color: #ffffff;
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e4e4e4;
}





















/* media query  */

@media only screen and (max-width: 768px) {
    /* Mobile styles here */


    * {
        scroll-behavior: smooth;
    }

    .card {
        border: 1px solid #00c467;
    }

    .container {
        display: flex;
        flex-direction: column;
    }

    .card {
        position: relative;
        width: 27rem;
        margin-top: -40px;
        padding: 20px;
    }

    .btn019 {
        width: 7rem;
    }

    .eng_stud {
        height: 99px;
        width: 100%;
    }

    .about_me {
        width: 100%;
    }

    .surname {
        display: none;
    }

    .edu-wrapper {
        width: 90vw;
    }

    .box02 {
        display: flex;
        flex-direction: column;
    }


    .grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stake-box {
        width: 21rem;
    }

    .stakes-wrapper {
        width: 4px;
    }

    .contact-form {
        width: 3px;
    }

    .contact-title {
        margin: 3px;
        width: 100%;
    }



    .contact-section {
        width: 300px;
    }

    .custom-cursor {
        cursor: none;
        display: none;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }



    .contact-info-box {
        padding: 16px 1px;
        border: 1px solid gray;
        width: 21rem;
        height: 4rem;
        padding: 10px;

    }

    .contact-info-text {
        width: 100%;
        /* border: 1px solid white; */
    }

    .contact-form {}

    .contact-header {
        width: 9px;
    }

    .contact-form {}


    .form-field {
        border: 1px solid white;
        width: 21rem;
    }

    .send-btn {
        width: 21rem;

    }
}


@keyframes appear {
    from {
        opacity: 0;
        clip-path: inset(100% 100% 0 0);
    }

    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}



.box02 {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 18%;
}


.contact-info-box {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 18%;
}



















/* warning */
