        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            color: white;
            background-color: black;
            line-height: 1.6;
        }

        .container h1,
        h2 {
            font-size: 40px;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 50px;
        }

        .header-text {
            text-align: center;
            padding: 50px;
        }

        .profile-pic {
            border-radius: 50%;
            display: block;
            margin: 20px auto;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 20px;
            margin-bottom: 50px;

        }

        .gallery-item {
            position: relative;
            width: auto;
            height: 160px;
            border-radius: 15px;
            overflow: hidden;
            display: inline-block;

        }

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

        .photo-label {
            position: absolute;
            bottom: 10px;
            left: 10px;
            color: white;
            font-size: 16px;
            font-weight: bold;
            padding: 5px 10px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 5px;
        }

        .photo-label.name {
            bottom: 10px;
            left: 10px;
        }

        .portfolio-section {
            margin: 0 0;
        }

        .title {
            font-size: 32px;
            text-align: center;
            margin-bottom: 30px;
        }

        .social {
            text-align: center;
        }

        .social-icon {
            display: inline-block;
            width: 50px;
            height: 50px;
            background-color: white;
            color: black;
            border-radius: 50%;
            margin: 0 10px;
            line-height: 50px;
            text-align: center;
            transition: background-color 0.3s, color 0.3s;
        }

        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.148);
            color: white;
        }

        .social-icon i {
            font-size: 24px;
            vertical-align: middle;
        }

        .container p {
            color: #ccc;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 0px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 10px;
        }

        .spacing {
            height: 100px;
        }

        #moreText {
            display: none;
        }

        .read-more-container {
            text-align: center;
        }

        .styled-button {
            padding: 10px 20px;
            font-size: 16px;
            color: white;
            background: rgba(255, 255, 255, 0.265);
            border: none;
            border-radius: 20px;
            cursor: pointer;
            outline: none;
            transition: background-color 0.3s ease;
            margin-top: 20px;
        }

        .styled-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }


        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            /* Size of the button */
            height: 50px;
            /* Size of the button */
            background-color: #333;
            /* Dark background */
            border-radius: 50%;
            /* Circular button */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            /* Subtle shadow for depth */
            text-decoration: none;
            /* This will remove the underline */
            color: #ffffff;
            /* Default icon color */
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
            /* Smooth transitions for hover effects */
        }



        .back-to-top:hover {
            color: #cccccc;
            /* Light grey color on hover */
            text-decoration: none;
            background-color: #555;
            /* Slightly lighter background on hover */
            transform: translateY(-3px);
            /* Slightly raise the button */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            /* Increased shadow for a "lifted" effect */
        }


        /* background-color: rgba(255, 255, 255, 0.5); Semi-transparent white */

        .top-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* This will push the logo and title to one side and the nav to the other */
            position: fixed;
            top: -60px;
            /* Start off-screen */
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            /* Semi-transparent black for dark mode */
            backdrop-filter: blur(10px);
            /* Glassy effect */
            transition: top 0.3s;
            z-index: 100;
            padding: 10px 20px;
        }

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

        .top-bar-profile-pic {
            border-radius: 50%;
            width: 40px;
            height: 40px;
            object-fit: cover;
            margin-right: 10px;
            /* Add some space between the image and the title */
        }

        .top-bar-title {
            color: #fff;
            font-weight: bold;
            width: auto;
        }

        .top-bar nav {
            display: flex;
            justify-content: center;
            /* Center the nav items */
            width: 100%;
            /* Give nav the full width to allow centering within it */
        }

        .top-bar nav a {
            margin: 0 15px;
            text-decoration: none;
            color: #fff;
            font-weight: bold;
        }

        /* Rest of your CSS */


        #search-box {
            padding: 8px;
            font-size: 16px;
            border: none;
            outline: none;
            border-radius: 20px 0 0 20px;
            transition: all 0.3s;
        }

        #search-button {
            padding: 8px;
            font-size: 16px;
            border: none;
            outline: none;
            cursor: pointer;
            background-color: rgba(255, 255, 255, 0.5);
            /* Semi-transparent white */
            border-radius: 0 20px 20px 0;
            transition: all 0.3s;
        }

        #search-button i {
            color: #333;
        }

        #search-button:hover {
            background-color: rgba(255, 255, 255, 0.7);
            /* Lighter semi-transparent white on hover */
        }

        /* Rest of your CSS */




        .search-container {
            position: relative;
            display: flex;
            align-items: center;
            /* margin-right: auto; Pushes all other items to the right */

        }

        .search-icon {
            font-size: 20px;
            /* Set the default size of the icon */
            color: #fff;
            /* Set the color for dark mode */
            cursor: pointer;
            transition: font-size 0.3s ease, right 0.3s ease;
            /* Add transition for right property */
            position: absolute;
            right: 10px;
            /* Start with some padding from the right */
            top: 50%;
            transform: translateY(-50%);
            z-index: 11;
            /* Ensure the icon is above the expanded input field */
        }

        .search-input {
            font-size: 16px;
            padding: 8px 16px;
            border: none;
            border-radius: 20px;
            outline: none;
            background: #333;
            /* Dark background for dark mode */
            color: #fff;
            /* Light text for dark mode */
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease-in-out;
            /* Transition for multiple properties */
            padding-right: 40px;
            /* Padding to not overlap the search icon */
        }

        .search-input:focus {
            /* background: rgba(255, 255, 255, 0.8); */
            background: rgba(255, 255, 255, 0.1);
            /* Slightly lighter background on focus */

            border-color: #555;
            /* Slightly lighter border on focus */

        }

        /* Rest of your CSS */

        /* new dev Rest of your CSS */
/* Developer Projects Section */
/* Developer Projects Section */
#developer-projects {
    margin-top: 50px;
}

.dev-gallery-item-link {
    text-decoration: none; /* Remove underline from link */
    color: inherit; /* Ensure link text color matches surrounding text */
    display: block; /* Make the link behave as a block element */
}

/* Ensure no underline or color change for all link states */
.dev-gallery-item-link:link,
.dev-gallery-item-link:visited,
.dev-gallery-item-link:focus,
.dev-gallery-item-link:hover,
.dev-gallery-item-link:active {
    text-decoration: none;
    color: inherit;
}

/* Styling for the Developer Project Items */
.dev-gallery-item {
    position: relative;
    width: auto;
    border-radius: 15px;
    overflow: hidden;
    display: flex;  
    flex-direction: column;
    /*justify-content: space-between;  
    min-height: 400px;  Adjust height to ensure all elements have space */
    padding: 20px;  
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.dev-gallery-item:hover {
    transform: scale(1.03); /* Slight scale to indicate hover */
    cursor: pointer; /* Indicates the box is clickable */
}

/* Styling for Project Info Box */
.project-info {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #ccc;
    transition: transform 0.3s ease;
    min-height: 300px; /* Increased height to fit all content */
}

.project-info:hover {
    transform: scale(1.05);
}

/* Styling for Titles, Descriptions, and Tags */
.project-title {
    font-size: 24px;
    margin-bottom: 10px; /* Reduced margin to reduce space */
    color: #fff; /* Ensure consistent text color */
    text-decoration: none; /* Remove underline from titles */
    text-align: center; /* Center the title */
}

.project-description {
    color: #fff; /* Ensure consistent text color */
    text-decoration: none; /* Remove underline from descriptions */
    font-size: 16px;
    margin-bottom: 10px; /* Reduced margin to reduce space */
}

.tags-container {
    margin-bottom: 00px; /* Reduced margin to reduce space */
}

.tech-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    margin: 5px 5px 0 0;
}

/* Styled Button for Other Elements */
.styled-button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Remove underline */
}

.styled-button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Remove default hover underline behavior */
.styled-button:link,
.styled-button:visited,
.styled-button:focus,
.styled-button:hover,
.styled-button:active {
    text-decoration: none;
}



        /* This is the class for elements that you want to hide on mobile screens */
        .hide-on-mobile {
            display: block;
            /* or inline-block, flex, etc., depending on your layout */
        }

        /* Media query for mobile screens */
        @media (max-width: 800px) {
            .hide-on-mobile {
                display: none;
                /* This will hide the elements on screens smaller than 768px */
            }
        }




        @media (max-width: 950px) {
            .container {
                padding: 0 30px;
            }

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

            .header-text {
                padding: 30px;
            }

            p {
                font-size: 14px;
                padding: 0 5px;
            }

        }