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

 body {
     background: url("https://static.vecteezy.com/system/resources/thumbnails/020/933/072/small_2x/abstract-blur-gradient-background-vector.jpg") no-repeat center center/cover fixed;
     font-family: "Baloo Bhai 2", sans-serif;
     font-optical-sizing: auto;
 }

 .container1 {
     position: fixed;
     top: 20px;
     width: 97%;
     height: 70px;
     padding: 3px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background-color: #333;
     border-radius: 10px;
     z-index: 2;
 }

 header {
     color: white;
     padding: 20px;
 }

 nav ul {
     list-style: none;
     display: flex;
     gap: 30px;
     margin-right: 30px;
 }

 nav ul li {
     display: inline;
 }

 nav ul li:hover {
     transform: scale(1.1);
     transition: all 0.5s ease;
 }

 nav ul li:active {
     transform: scale(0.5);
     transition: all 0.5s ease;
 }

 nav ul li a {
     font-size: 15px;
     color: white;
     text-decoration: none;
     font-weight: bold;
 }

 a:hover {
     text-decoration: underline;
 }

 .logo img {
     width: 60px;
     height: auto;
     border-radius: 50%;
     margin-left: 20px;
 }

 /* Mobile Menu Styles */
 .mobile-menu-btn {
     display: none;
     flex-direction: column;
     cursor: pointer;
     padding: 5px;
     z-index: 1001;
 }

 .mobile-menu-btn span {
     width: 25px;
     height: 3px;
     background-color: white;
     margin: 3px 0;
     transition: 0.3s;
     border-radius: 2px;
 }

 .mobile-menu-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.9);
     z-index: 999;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .mobile-menu-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .mobile-menu-content {
     position: absolute;
     top: 0;
     right: 0;
     width: 80%;
     max-width: 300px;
     height: 100%;
     background-color: #333;
     padding: 20px;
     transform: translateX(100%);
     transition: transform 0.3s ease;
 }

 .mobile-menu-overlay.active .mobile-menu-content {
     transform: translateX(0);
 }

 .mobile-menu-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 30px;
     padding-bottom: 20px;
     border-bottom: 1px solid #555;
 }

 .mobile-logo img {
     width: 50px;
     height: auto;
     border-radius: 50%;
 }

 .mobile-close-btn {
     cursor: pointer;
     width: 30px;
     height: 30px;
     position: relative;
 }

 .mobile-close-btn span {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 20px;
     height: 2px;
     background-color: white;
     transform-origin: center;
 }

 .mobile-close-btn span:first-child {
     transform: translate(-50%, -50%) rotate(45deg);
 }

 .mobile-close-btn span:last-child {
     transform: translate(-50%, -50%) rotate(-45deg);
 }

 .mobile-nav ul {
     list-style: none;
     display: block;
     padding: 0;
 }

 .mobile-nav ul li {
     margin: 20px 0;
 }

 .mobile-nav ul li a {
     color: white;
     text-decoration: none;
     font-size: 18px;
     font-weight: bold;
     display: block;
     padding: 15px 0;
     border-bottom: 1px solid #555;
     transition: color 0.3s ease;
 }

 .mobile-nav ul li a:hover {
     color: #007bff;
     text-decoration: none;
 }

 .logo form button {
     display: none;

 }

 #home {
     padding: 20px 20px;
     background-color: burlywood;
     border: 2px solid rgb(81, 0, 0);
     border-radius: 10px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     margin-top: 105px;
 }

 .avatar img {
     width: 190px;
     height: auto;
     border-radius: 50%;
     border: 5px solid rgb(81, 0, 0);
     box-shadow: 3px 3px 10px rgba(225, 0, 0, 1.5);
 }

 .description1 h1 {
     color: purple;
     font-size: 50px;
 }

 .description1 h1 span {
     color: blue;
     font-weight: bold;
 }

 .description1 h3 {
     text-align: center;
     margin-top: 20px;
     color: black;
 }

 #About {
     padding: 20px;
     background-color: #009dff;
     border-radius: 10px;
     display: flex;
     flex-direction: column;
     align-self: center;
     text-align: center;
     justify-content: center;
     border: 2px solid #00314f;
     margin: 20px;
 }

 #About h2 {
     color: black;
     font-size: 50px;
     margin-bottom: 50px;
 }

 #About p {
     color: black;
     font-size: 30px;
     margin-bottom: 20px;
     padding: 0 65px;
 }

 .details {
     border-radius: 10px;
     border: 2px solid #000000;
     color: rgb(0, 208, 255);
     box-shadow: 3px 3px 20px rgba(0, 208, 255, 1.5);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 20px;
     margin-bottom: 20px;
     background-color: #00314f;
     margin: 50px 300px;
     padding: 20px;
     color: turquoise;
 }

 .details span h1 {
     font-size: 20px;
     color: white;
 }

 #About hr {
     border: 1px solid #00314f;
     margin: 2px 50px;
 }

 #cv form {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 20px;
     margin-top: 20px;
 }

 #cv label {
     font-size: 30px;
     margin-right: 10px;
     width: 1005px;
 }

 #cv label:hover {
     cursor: pointer;
     color: #ffcc00;
     transition: color 0.3s ease;
 }

 .btn1 {
     background-color: #00314f;
     color: white;
     padding: 10px 20px;
     border: none;
     border-radius: 100px;
     cursor: pointer;
     font-size: 20px;
 }

 .btn1:hover {
     background-color: #005f7f;
 }

 #skill {
     padding: 20px;
     background-color: rgb(113, 241, 255);
     border-radius: 10px;
     border: 2px solid rgb(0, 59, 66);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: rgb(0, 0, 0);
     margin: 20px;
 }

 #skill h2 {
     text-align: center;
     color: black;
     font-size: 50px;
     margin-bottom: 20px;
 }

 #skill p {
     text-align: center;
     font-size: 30px;
     width: 1005px;
     margin-bottom: 20px;
 }

 .skills-list ul {
     display: flex;
     margin: 50px 0;
     flex-direction: column;
     flex-wrap: wrap;
     justify-content: center;
     margin-left: 347px;
     padding: 0;
     font-size: 25px;
     padding: 20px;
     color: black;
     list-style: none;
 }

 #skill ul li {
     margin: 10px 0;
     padding: 10px;
     width: 300px;
     background-color: #00314f;
     color: white;
     border-radius: 5px;
     box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);
 }

 #project {
     padding: 20px;
     background-color: navy;
     border-radius: 10px;
     border: 2px solid #00314f;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: black;
     margin: 20px;
 }

 #project h1 {
     text-align: center;
     color: black;
     font-size: 50px;
     margin-bottom: 20px;
 }

 .project {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 20px;
     margin: 20px;
     border-radius: 10px;
     background-color: navy;
     border: 2px solid #001a2b;
     padding: 20px;
 }

 .project div {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     margin: 10px;
     background-color: #009dff;
     padding: 20px;
     border-radius: 10px;
 }

 .project div img {
     width: 300px;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
 }

 .project div p {
     text-align: center;
     width: 300px;
     font-size: 20px;
     color: black;
     margin-top: 10px;
 }

 .proj1,
 .proj2,
 .proj3 {
     background-color: #00314f;
     padding: 20px;
     border-radius: 10px;
     color: white;
     box-shadow: 3px 3px 10px rgba(0, 255, 251, 0.721);
     transition: all 0.8s ease;
 }

 .proj2 {
     height: 32rem;
 }

 .proj1:hover,
 .proj2:hover,
 .proj3:hover {
     transform: scale(1.05);
     box-shadow: 5px 5px 15px rgba(0, 255, 251, 0.721);
 }

 .project form button {
     background-color: #00314f;
     color: white;
     padding: 10px 20px;
     border: none;
     border-radius: 100px;
     cursor: pointer;
     font-size: 20px;
     margin: 20px;
 }

 .project form button:hover {
     background-color: #005f7f;
 }

 #contact {
     padding: 20px;
     background-color: #9580ff;
     border-radius: 10px;
     border: 2px solid #00314f;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: black;
     margin: 20px;
 }

 #contact h2 {
     z-index: 1009;
     text-align: center;
     color: black;
     font-size: 50px;
     margin-bottom: 20px;
 }

 #contact p {
     text-align: center;
     font-size: 20px;
     width: 1005px;
     margin-bottom: 20px;
 }

 #contact form {
     display: flex;
     background-color: #7458ff;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     width: 440px;
     padding: 20px;
     border: 2px solid #00314f;
     border-radius: 10px;
     box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
     height: 32rem;
 }

 #contact label {
     font-size: 30px;
     color: black;
 }

 #contact input,
 #contact textarea {
     width: 100%;
     padding: 10px;
     border-radius: 5px;
     border: 0px solid;
     font-size: 16px;
 }

 #contact input:focus,
 #contact textarea:focus {
     border-color: #00314f;
     outline: none;
 }

 #contact button {
     background-color: #00314f;
     color: white;
     padding: 10px 20px;
     border: none;
     border-radius: 100px;
     cursor: pointer;
     font-size: 20px;
 }

 #contact button:hover {
     background-color: #005f7f;
 }

 #contact form input,
 #contact form textarea {
     width: 100%;
     padding: 10px;
     border-radius: 5px;
     border: 1px solid #ccc;
     font-size: 16px;
 }

 #contact form input:focus,
 #contact form textarea:focus {
     border-color: #00314f;
     outline: none;
 }

 footer {
     background-color: #00314f;
     color: white;
     text-align: center;
     padding: 20px;
     position: relative;
 }

 .footer-links {
     margin-top: 10px;
 }

 footer a {
     color: white;
     text-decoration: none;
     margin: 0 10px;
 }

 footer a:hover {
     text-decoration: underline;
 }

 /* <---Laptop Media Quary--> */
 @media (min-width:1024px) and (max-width:1337px) {
     .container1 {
         width: 96%;
         height: 70px;
         padding: 5px;
     }

     .project div img {
         width: 200px;
     }

     .project div p {
         width: 215px;
         font-size: 15px;
     }

     .proj2 {
         height: 27rem;
     }

     #contact form {
         gap: 0px;
         width: 394px;
         height: 32rem;
     }

     #contact form input,
     #contact form textarea {
         width: 100%;
         padding: 8px;
         border-radius: 5px;
         border: 1px solid #ccc;
         font-size: 11px;
     }

     .detail {
         margin: 50px 171px;
         padding: 20px;
         color: turquoise;
         width: 50%;
     }
 }

 /* <---Tablet Media Quary--> */
 @media (min-width:768px) and (max-width:1023px) {
     .details {
         margin: 50px 171px;
         padding: 20px;
         color: turquoise;
         width: 50%;
     }

     #cv label {
         font-size: 20px;
         width: 700px;
     }

     .container1 {
         width: 95%;
         height: 60px;
         padding: 5px;
     }

     nav ul {
         gap: 20px;
         margin-right: 20px;
     }

     nav ul li a {
         font-size: 12px;
     }

     .logo img {
         width: 50px;
         height: auto;
         border-radius: 50%;
         margin-left: 10px;
     }

     #home {
         margin-top: 88px;
     }

     .avatar img {
         width: 150px;
     }

     .description1 h1 {
         font-size: 40px;
     }

     .description1 h3 {
         font-size: 20px;
         margin-top: 10px;
     }

     #About h2 {
         font-size: 40px;
         margin-bottom: 30px;
     }

     #About p {
         font-size: 20px;
         padding: 0 30px;
     }

     #cv label {
         font-size: 15px;
         margin-right: 10px;
         width: 600px;
     }

     .btn1 {
         font-size: 15px;
     }

     #skill h2 {
         font-size: 40px;
         margin-bottom: 20px;
     }

     #skill p {
         font-size: 20px;
         width: 700px;
     }

     .skills-list ul {
         margin-left: 150px;
         font-size: 20px;
     }

     #project h1 {
         font-size: 40px;
         margin-bottom: 20px;
     }

     .project div img {
         width: 150px;
     }

     .project div p {
         width: 150px;
         font-size: 10px;
     }

     .project form button {
         font-size: 10px;
     }

     .proj2 {
         height: 20rem;
     }

     #contact h2 {
         font-size: 40px;
         margin-bottom: 20px;
     }

     #contact p {
         font-size: 18px;
         width: 700px;
     }

     #contact form {
         gap: 0px;
         width: 342px;
         height: 27rem;
     }

     #contact form input,
     #contact form textarea {
         width: 100%;
         padding: 8px;
         border-radius: 5px;
         border: 1px solid #ccc;
         font-size: 11px;
     }

     #contact label {
         font-size: 20px;
         color: black;
     }

     #contact button {
         font-size: 15px;
     }

     footer {
         padding: 10px;
     }

     footer a {
         font-size: 12px;
     }

     footer p {
         font-size: 12px;
     }
 }


 /* <--Mobile L Media Quary--> */
 @media (min-width:425px) and (max-width:767px) {

     /* Show mobile menu button and hide desktop nav */
     .mobile-menu-btn {
         display: flex;
     }

     .project {
         flex-direction: column;
     }

     .nav {
         display: none;
     }

     .details {
         margin: 50px 45px;
         padding: 20px;
         color: turquoise;
         width: 74%;
     }

     #cv label {
         font-size: 11px;
         margin-right: 10px;
         width: 87%;
     }

     .container1 {
         width: 91%;
         height: 60px;
         padding: 5px;
     }

     nav ul {
         display: none;
         gap: 20px;
         margin-right: 20px;
     }

     nav ul li a {
         font-size: 12px;
     }

     .logo img {
         width: 50px;
         height: auto;
         border-radius: 50%;
         margin-left: 10px;
     }

     #home {
         margin-top: 88px;
     }

     .avatar img {
         width: 150px;
     }

     .description1 h1 {
         font-size: 40px;
         width: 99%;
     }

     .description1 h3 {
         font-size: 16px;
         margin-top: 10px;
     }

     #About h2 {
         font-size: 40px;
         margin-bottom: 30px;
     }

     #About p {
         font-size: 12px;
         padding: 0 30px;
     }

     .btn1 {
         font-size: 15px;
     }

     #skill h2 {
         font-size: 40px;
         margin-bottom: 20px;
     }

     #skill p {
         font-size: 17px;
         margin: auto;
         width: 96%;
     }


     .skills-list ul {
         margin-left: 5px;
         font-size: 15px;
     }

     .project {
         flex-direction: column;
     }

     #project h1 {
         font-size: 40px;
         margin-bottom: 20px;
     }

     .project div img {
         width: 150px;
     }

     .project div p {
         width: 150px;
         font-size: 10px;
     }

     .project form button {
         font-size: 10px;
     }

     .proj2 {
         height: 19rem;
     }

     #contact h2 {
         font-size: 40px;
         margin-bottom: 20px;
     }

     #contact p {
         font-size: 18px;
         width: 100%;
     }

     #contact form {
         gap: 0px;
         width: 342px;
         height: 27rem;
     }

     #contact form input,
     #contact form textarea {
         width: 100%;
         padding: 8px;
         border-radius: 5px;
         border: 1px solid #ccc;
         font-size: 11px;
     }

     #contact label {
         font-size: 20px;
         color: black;
     }

     #contact button {
         font-size: 15px;
     }

     footer {
         padding: 10px;
     }

     footer a {
         font-size: 12px;
     }

     footer p {
         font-size: 12px;
     }
 }

 /* <--Mobile M Media Quary--> */
 @media (min-width:375px) and (max-width:424px) {

     /* Show mobile menu button and hide desktop nav */
     .mobile-menu-btn {
         display: flex;
     }

     .nav {
         display: none;
     }

     .container1 {
         width: 89%;
         height: 60px;
         padding: 5px;
     }

     .logo img {
         width: 45px;
         height: auto;
         border-radius: 50%;
         margin-left: 10px;
     }

     #home {
         margin-top: 88px;
     }

     .avatar img {
         width: 140px;
     }

     .description1 h1 {
         font-size: 35px;
         width: 99%;
     }

     .description1 h3 {
         font-size: 15px;
         margin-top: 10px;
     }

     #About h2 {
         font-size: 35px;
         margin-bottom: 30px;
     }

     #About p {
         font-size: 11px;
         padding: 0 25px;
     }

     .details {
         margin: 50px 35px;
         padding: 20px;
         color: turquoise;
         width: 80%;
     }

     #cv label {
         font-size: 10px;
         margin-right: 10px;
         width: 90%;
     }

     .btn1 {
         font-size: 14px;
     }

     #skill h2 {
         font-size: 35px;
         margin-bottom: 20px;
     }

     #skill p {
         font-size: 16px;
         margin: auto;
         width: 95%;
     }

     .skills-list ul {
         margin-left: 5px;
         font-size: 14px;
     }

     .project {
         flex-direction: column;
     }

     #project h1 {
         font-size: 35px;
         margin-bottom: 20px;
     }

     .project div img {
         width: 140px;
     }

     .project div p {
         width: 140px;
         font-size: 9px;
     }

     .project form button {
         font-size: 9px;
     }

     .proj2 {
         height: 18rem;
     }

     #contact h2 {
         font-size: 35px;
         margin-bottom: 20px;
     }

     #contact p {
         font-size: 17px;
         width: 100%;
     }

     #contact form {
         gap: 0px;
         width: 320px;
         height: 26rem;
     }

     #contact form input,
     #contact form textarea {
         width: 100%;
         padding: 7px;
         border-radius: 5px;
         border: 1px solid #ccc;
         font-size: 10px;
     }

     #contact label {
         font-size: 18px;
         color: black;
     }

     #contact button {
         font-size: 14px;
     }

     footer {
         padding: 8px;
     }

     footer a {
         font-size: 11px;
     }

     footer p {
         font-size: 11px;
     }
 }

 /* <--Mobile S Media Quary--> */
 @media (min-width:320px) and (max-width:374px) {

     /* Show mobile menu button and hide desktop nav */
     .mobile-menu-btn {
         display: flex;
     }

     .nav {
         display: none;
     }

     .container1 {
         width: 88%;
         height: 60px;
         padding: 5px;
     }

     .logo img {
         width: 45px;
         height: auto;
         border-radius: 50%;
         margin-left: 10px;
     }

     #home {
         margin-top: 88px;
     }

     .avatar img {
         width: 140px;
         margin: 21px -125px
     }

     .description1 h1 {
         font-size: 35px;
         width: 99%;
     }

     .description1 h3 {
         font-size: 15px;
         margin-top: 10px;
     }

     #About h2 {
         font-size: 35px;
         margin-bottom: 30px;
     }

     #About p {
         font-size: 11px;
         padding: 0 0px;
     }

     .details {
         margin: 50px 16px;
         padding: 20px;
         font-size: 10px;
         color: turquoise;
         width: 86%;
     }

     #cv label {
         font-size: 10px;
         margin-right: 10px;
         width: 90%;
     }

     .btn1 {
         font-size: 14px;
     }

     #skill h2 {
         font-size: 35px;
         margin-bottom: 20px;
     }

     #skill p {
         font-size: 14px;
         margin: auto;
         width: 79%;
     }

     .skills-list ul {
         margin-left: 0px;
         font-size: 14px;
         margin: 10px 0
     }

     #skill ul li {
         width: 210px;
     }

     .project {
         flex-direction: column;
     }

     #project h1 {
         font-size: 35px;
         margin-bottom: 20px;
     }

     .project div img {
         width: 140px;
     }

     .project div p {
         width: 140px;
         font-size: 9px;
     }

     .project form button {
         font-size: 9px;
     }

     .proj2 {
         height: 18rem;
     }

     #contact h2 {
         font-size: 35px;
         margin-bottom: 20px;
     }

     #contact p {
         font-size: 17px;
         width: 100%;
     }

     #contact form {
         gap: 0px;
         width: 219px;
         height: 22rem;
     }

     #contact form input,
     #contact form textarea {
         width: 100%;
         padding: 7px;
         border-radius: 5px;
         border: 1px solid #ccc;
         font-size: 10px;
     }

     #contact label {
         font-size: 18px;
         color: black;
     }

     #contact button {
         font-size: 14px;
     }

     footer {
         padding: 8px;
     }

     footer a {
         font-size: 7px;
     }

     footer p {
         font-size: 10px;
     }
 }


 /* <--Lower Mobile S Media Quary--> */
 @media (min-width:50px) and (max-width:319px) {

     /* Show mobile menu button and hide desktop nav */
     .mobile-menu-btn {
         display: flex;
     }

     .nav {
         display: none;
     }

     .container1 {
         width: 88%;
         height: 60px;
         padding: 5px;
     }

     .logo img {
         width: 45px;
         height: auto;
         border-radius: 50%;
         margin-left: 10px;
     }

     #home {
         margin-top: 88px;
     }

     .avatar img {
         width: 140px;
         margin: 21px 0px
     }

     .description1 h1 {
         font-size: 35px;
         width: 99%;
     }

     .description1 h3 {
         font-size: 15px;
         margin-top: 10px;
     }

     #About h2 {
         font-size: 35px;
         margin-bottom: 30px;
     }

     #About p {
         font-size: 11px;
         padding: 0 0px;
     }

     .details {
         margin: 50px 16px;
         padding: 20px;
         font-size: 10px;
         color: turquoise;
         width: 86%;
     }

     #cv label {
         font-size: 10px;
         margin-right: 10px;
         width: 90%;
     }

     .btn1 {
         font-size: 14px;
     }

     #skill h2 {
         font-size: 35px;
         margin-bottom: 20px;
     }

     #skill p {
         font-size: 14px;
         margin: auto;
         width: 79%;
     }

     .skills-list ul {
         margin-left: 0px;
         font-size: 14px;
         margin: 10px 0
     }

     #skill ul li {
         width: 210px;
     }

     .project {
         flex-direction: column;
     }

     #project h1 {
         font-size: 35px;
         margin-bottom: 20px;
     }

     .project div img {
         width: 140px;
     }

     .project div p {
         width: 140px;
         font-size: 9px;
     }

     .project form button {
         font-size: 9px;
     }

     .proj2 {
         height: 17rem;
     }

     #contact h2 {
         font-size: 35px;
         margin-bottom: 20px;
     }

     #contact p {
         font-size: 17px;
         width: 100%;
     }

     #contact form {
         gap: 0px;
         width: 219px;
         height: 22rem;
     }

     #contact form input,
     #contact form textarea {
         width: 100%;
         padding: 7px;
         border-radius: 5px;
         border: 1px solid #ccc;
         font-size: 10px;
     }

     #contact label {
         font-size: 18px;
         color: black;
     }

     #contact button {
         font-size: 14px;
     }

     footer {
         padding: 8px;
     }

     footer a {
         font-size: 7px;
     }

     footer p {
         font-size: 10px;
     }
 }