.page1 {
    background: black;

}

header {
    position: sticky; /* Keeps the header stuck at the top */
    top: 0; /* Position the header at the very top */
    /* z-index: 1000; Ensures the header is above other elements */
    z-index: 1; /* Ensures it's below the header but above other sections */
    background: white; /* Add a background color to prevent transparency */
    color: black;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Parkinsans", sans-serif;
    padding: 5px 20px;
    box-shadow: 0 2px 5px rgba(231, 152, 27, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: 15px;
    gap: 15px; /* Space between logo and name */
}

.logo {
    height: 40px; /* Adjust as needed for the logo size */
}

.name-link {
    color: black;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    font-size: 30px;
    display: flex;
    justify-content: space-evenly;
    gap: 60px; /* Adjust spacing between navigation links */
    padding: 0.3em 0.5em;
}

.nav-links a {
    color: black;
    text-decoration: none;
}

header a:hover {
    color: #555;
}

header h1:hover {
    color: #555;
}

.hero {
      
    display: flex;
    position: sticky;
    align-items: center;
    height: 90vh;
    background: url('Desktop - 5.jpg') no-repeat center center/cover;
    position: relative;
    
    
    /* Hey I'm */
    p {
        color: rgb(255, 255, 255);
        font-size: 20px;
        font-style: normal;
        font-family: "Parkinsans", sans-serif;
        position: absolute;
        top: 32%;
        left: 40px;
    }

    /* Anjana Kuttamath */
    h1 {
        color: rgb(255, 255, 255);
        font-size: 25px;
        font-style: normal;
        font-family: "Parkinsans", sans-serif;
        position: absolute;
        top: 39%;
        left: 40px;
    }

    /* UI & UX Designer */
    h2 {
        color: rgb(255, 255, 255);
        font-size: 55px;
        font-style: normal;
        position: absolute;
        font-family: "Parkinsans", sans-serif;
        top: 40%;
        left: 40px;
    }

    /* Description */
    p1 {
        color: rgb(255, 255, 255);
        font-size: 20px;
        font-style: normal;
        position: absolute;
        font-family: "Parkinsans", sans-serif;
        top: 60%;
        left: 40px;
    }
}

.subject {
    color: rgb(255, 255, 255);
    font-size: 20px;
    position: absolute;
    font-family: "Parkinsans", sans-serif;
    font-weight: 300;
    top: 10px;
    right: 20px;
    text-align: right;
}

.schoolname {
    color: rgb(255, 255, 255);
    font-size: 20px;
    position: absolute;
    font-family: "Parkinsans", sans-serif;
    font-weight: 300;
    top: 30px;
    right: 20px;
    text-align: right;
}

.mail {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-style: normal;
    position: absolute;
    font-family: "Parkinsans", sans-serif;
    bottom: 40px;
    right: 20px;
    text-align: right;
}

.address {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-style: normal;
    position: absolute;
    font-family: "Parkinsans", sans-serif;
    bottom: 10px;
    right: 20px;
    text-align: right;
}

/* im passionate */
.passion {
    background-color: black;
    color: rgb(253, 253, 253);
    text-align: center;
    font-size: 20px;
    height: 30vh;
    padding: 50px 20px;
    font-style: normal;
    font-family: "Parkinsans", sans-serif;
}

/* interaction */
.interaction {
    background: #000000;
    display: flex;
    flex-wrap: wrap;

    .fun {
        height: 100vh;
        width: 40.07px;
        height: 40.07px;
        background: #000000;
        display: block;
        transition: all 0.3s ease;
        border-radius: 0%, rgb(72, 28, 28);

        &:hover {
            background: blueviolet;
        }

        &:active {
            animation: transformToCircle 5s ease-out forwards;
            border-radius: 50%;
            background: rgb(250, 250, 250);

        }

        /* @keyframes transformToCircle {  
            0% {
            border-radius: 0;
            background: #000000;
            }
            100% {
             border-radius: 50%;
            background: rgb(250, 250, 250);
            } */
    }
}

/* whatido */
.whatido {
    height: 30%;
    background-color: black;
    color: rgb(253, 253, 253);
    text-align: center;
    padding: 5%;
    font-family: "Parkinsans", sans-serif;


    .cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3%;
    }

    .card {
        /* background-color: #0e0e0e; */
        padding: .5%;
        width: 30%;
        text-align: center;
    }

    .card h3 {
        font-size: 1.5rem;
        margin-bottom: 3%;
    }

    .card p {
        font-size: 1rem;
        line-height: 1.5;
    }

}

/* projects */
.portfolio {
    height: 130vh;
    font-family: "Parkinsans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    /* White text */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 60px;
    text-align: center;


    .portfolio-item {
        background-color: #000000;
        /* Slightly lighter black */
        border-radius: 20px;
        padding: 10px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    }

    .portfolio-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    .portfolio-item h3 {
        margin: 15px 0;
        font-size: 1.5rem;
        color: white;
        font-weight: bold;
        text-decoration: none;
    }

    .portfolio-item:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }

}

.hero1 {
    display: flex;
    align-items: center;

    p {
        color: rgb(0, 0, 0);
        font-size: 30px;
        font-style: normal;
    }

    h1 {
        color: rgb(9, 9, 9);
        font-size: 30px;
        font-style: normal;
        display: center;
    }

}