
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #000;
            color: #fff;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            scroll-behavior: smooth;
        }
        nav {
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 80px;
            background-color: rgb(1, 1, 38);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        nav ul {
            display: flex;
            justify-content: center;
        }
        nav ul li {
            list-style: none;
            margin: 0 23px;
        }
        nav ul li a {
            text-decoration: none;
            color: white;
            transition: color 0.3s, font-size 0.3s;
        }
        nav ul li a:hover {
            color: rgb(153, 153, 226);
            font-size: 1.05rem;
        }
        main {
            margin-top: 100px;
            padding: 20px;
            animation: fadeIn 1s ease-in-out;
        }
        main hr {
            border: 0;
            background: #9c97f1;
            height: 1.3px;
            margin: 60px 80px;
        }
        .left {
            font-size: 1.5rem;
        }
        .firstSection {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 130px 0;
            animation: slideInFromLeft 1s ease-in-out;
        }
        .firstSection > div {
            width: 30%;
        }
        .leftSection {
            font-size: 3rem;
        }
        .rightSection img {
            width: 100%; /* Adjusted to 100% width for responsiveness */
            max-width: 300px; /* Set a max-width for larger screens */
            height: auto;
            border-radius: 60%;
            animation: slideInFromRight 1s ease-in-out;
        }
        .purple {
            color: blueviolet;
        }
        #element {
            color: blueviolet;
        }
        .secondSection {
            max-width: 80vw;
            margin: auto;
            margin-top: 20px;
        }
        .second h1, .projects h1 {
            font-size: 2rem;
            text-align: center;
            margin-top: 40px;
        }
        .projects {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px; /* Adjust gap between project items */
        }
        .project {
            width: 300px; /* Adjust width of project items */
            text-align: center;
        }
        .project img {
            width: 100%; /* Adjusted image width for responsiveness */
            max-width: 100%; /* Set max-width to ensure images don't exceed container */
            height: auto;
            border-radius: 8px; /* Added border-radius for rounded corners */
        }
      
      
        .project strong {
            display: block;
            margin-top: 10px;
            font-size: 1.2rem;
        }
        .project a {
            color: #9c97f1; /* Adjusted link color */
            text-decoration: none;
            display: block;
            margin-top: 5px;
        }
        .project a:hover {
            color: #fff;
        }
        .contact-info {
            text-align: center;
            margin: 20px 0 40px; /* Added bottom margin */
        }
        .contact-info p {
            margin-bottom: 10px; /* Adjusting margin for individual paragraphs */
        }
        footer {
            text-align: center;
            padding: 20px;
            background-color: rgb(1, 1, 38);
            position: fixed;
            width: 100%;
            bottom: 0;
            z-index: 1000;
            box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
        }
        footer a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
        }
        footer a:hover {
            color: rgb(153, 153, 226);
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes slideInFromLeft {
            from { transform: translateX(-100%); }
            to { transform: translateX(0); }
        }
        @keyframes slideInFromRight {
            from { transform: translateX(100%); }
            to { transform: translateX(0); }
        }
        .social-media {
            display: inline-block;
            width: 30px;
            height: 30px;
            margin: 0 10px;
            vertical-align: middle;
        }
        .social-media img {
            width: 100%;
            height: auto;
            border-radius: 50%;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            max-width: 600px;
            margin: auto;
            padding: 20px;
            background-color: #1a1a1a;
            border-radius: 8px;
        }
        
        .contact-form label {
            margin-bottom: 5px;
            font-size: 1rem;
            color: #9c97f1; /* Adjust label color */
        }
        
        .contact-form input,
        .contact-form textarea {
            margin-bottom: 15px;
            padding: 10px;
            font-size: 1rem;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .skills-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .skill {
            background: linear-gradient(45deg, #9c97f1, #6a64c3);
            color: #fff;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 1.1rem;
            text-align: center;
            animation: fadeInUp 1s ease-in-out both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .contact-form button {
            padding: 10px;
            font-size: 1.2rem;
            color: #fff;
            background-color: #9c97f1;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .contact-form button:hover {
            background-color: #6f6fbd;
        }

   .google-form-button {
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #fff;
    background-color: #f1c40f;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.google-form-button:hover {
    background-color: #d4ac0d;
}
.custom-line {
    border: 0;
    background: #9c97f1; /* Same as the previous line color */
    height: 1.3px;
    margin: 60px 80px;
    max-width: 80vw;
}

.google-form-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(45deg, #9c97f1, #6a64c3); /* Similar to other buttons */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.google-form-button:hover {
    background-color: #6f6fbd; /* Similar hover effect */
}

        

    
