      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-behavior: smooth;
      }

      body {
        background-color: rgb(15, 15, 52);
        color: #d5f2ff;
        font-family: "Poppins", sans-serif;
        padding-top: 80px;
      }

      nav {
        position: fixed; /* Makes the navbar fixed */
        top: 0; /* Stick it to the top */
        width: 100%; /* Full width */
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 80px;
        background-color: rgb(9, 9, 37);
        z-index: 1000; /* Ensure it's above other elements */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Optional: subtle shadow */
      }

      nav ul {
        display: flex;
        justify-content: center;
      }

      nav ul li {
        list-style: none;
        margin: 0 23px;
      }

      nav ul li a {
        text-decoration: none;
        color: #d5f2ff;
        transition: 0.3s;
      }

      nav ul li a:hover {
        color: rgb(83, 83, 246);
        font-size: 1.04rem;
      }

      #element {
        color: #1e41af;
      }

      .left {
        font-size: 1.5rem;
      }

      .firstSection {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 70px 0;
        flex-wrap: wrap;
        padding-top: 90px;
      }

      .firstSection > div {
        width: 30%;
        min-width: 250px;
      }

      .leftSection {
        font-size: 3rem;
      }

      .rightSection img {
        width: 80%;
      }

      .purple {
        color: #1e41af;
      }

      .text-grey {
        color: grey;
        font-size: 1.2rem;
      }

      main hr {
        border: 0;
        background: #303076;
        height: 1.2px;
        margin: 40px 84px;
      }

      /* Projects Section */
      .projects {
        padding: 40px;
        background: rgb(15, 15, 52);
        text-align: center;
        padding-top: 50px;
      }

      .projects h1 {
        font-size: 2.5rem;
        color: #d5f2ff;
        margin-top: 10px;
      }

      .filter-buttons {
        margin: 20px 0;
      }

      .filter-buttons button {
        background: #21262d;
        color: #d5f2ff;
        border: none;
        padding: 10px 20px;
        margin: 5px;
        cursor: pointer;
        border-radius: 5px;
        transition: background 0.3s;
      }

      .filter-buttons .active,
      .filter-buttons button:hover {
        background: #1e41af; /* Green */
      }

      .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        /* margin-top: 20px; */
        padding: 0 20px;
        width: 100%; /* Use full width of the container */
        max-width: 1200px; /* Optional: Limit max width for better readability */
        margin-left: auto;
        margin-right: auto;
      }

      .project-card {
        background: #161b22;
        padding: 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
      }

      .project-card img {
        width: 100%;
        border-radius: 10px;
      }

      .project-card h3 {
        margin-top: 15px;
        color: #1e41af;
      }

      .project-card p {
        margin-top: 10px;
        color: #d5f2ff;
      }

      .project-card:hover {
        transform: scale(1.05);
      }

      /* Education Section */

      .education {
        padding: 50px 20px;
        background: rgb(15, 15, 52);
        color: #d5f2ff;
        text-align: center;
        padding-top: 110px;
      }

      .education h1 {
        font-size: 2.5rem;
        color: #d5f2ff;
        margin-bottom: 40px;
      }

      .education-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
      }

      .edu-card {
        background: #161b22;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
      }

      .edu-card:hover {
        transform: translateY(-5px);
      }

      .edu-card h3 {
        margin-bottom: 10px;
        color: #1e41af;
      }

      .edu-card p {
        margin: 5px 0;
        color: #d5f2ff;
      }

      /* About Section */

      .about-section {
        padding: 50px 20px;
        background: rgb(15, 15, 52);
        color: #d5f2ff;
        text-align: center;
        padding-top: 90px;
      }

      .about-section h1 {
        font-size: 2.5rem;
        color: #d5f2ff;
        margin-bottom: 30px;
      }

      .about-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        max-width: 1000px;
        margin: 0 auto;
        gap: 40px;
      }

      .profile-image img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
      }

      .about-text {
        max-width: 600px;
        text-align: left;
        font-size: 1.1rem;
        line-height: 1.8;
        color: #d5f2ff;
      }

      .about-text .highlight {
        color: #1e41af;
        font-weight: 600;
      }

      .contact-info {
        margin-top: 20px;
      }

      .contact-info p {
        margin: 5px 0;
        color: #d5f2ff;
      }

      .download-btn {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 20px;
        background-color: #1e41af;
        color: #d5f2ff;
        text-decoration: none;
        border-radius: 5px;
        transition: background 0.3s ease;
        font-weight: 600;
      }

      .download-btn:hover {
        background-color: #21262d;
      }

      /* end of about section */

      /* Contact Section */

      .contact-section {
        padding: 50px 20px;
        background: rgb(15, 15, 52);
        color: #d5f2ff;
        text-align: center;
      }

      .contact-section .section-title h2 {
        font-size: 2.5rem;
        color: #d5f2ff;
      }

      .contact-section hr {
        width: 80px;
        height: 2px;
        background: #1e41af;
        margin: 10px auto 30px auto;
        border: none;
      }

      .contact-grid {
        /* display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: 60px auto; */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        /* margin-top: 20px; */
        padding: 0 20px;
        width: 100%; /* Use full width of the container */
        max-width: 1200px; /* Optional: Limit max width for better readability */
        margin-left: auto;
        margin-right: auto;
      }

      .contact-item {
        background: #161b22;
        padding: 20px;
        border-radius: 12px;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      }

      .contact-item:hover {
        transform: translateY(-5px);
      }

      .icon-circle {
        width: 60px;
        height: 60px;
        background: #1e41af;
        color: #d5f2ff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 15px auto;
        font-size: 1.5rem;
      }

      .contact-item h3 {
        color: #1e41af;
        margin-bottom: 10px;
      }

      .contact-item p,
      .contact-item a {
        color: #d5f2ff;
        text-decoration: none;
        display: block;
        margin: 5px 0;
        transition: color 0.3s ease;
      }

      .contact-item a:hover {
        color: #1e41af;
      }

      .social-links a {
        color: #d5f2ff;
        display: inline-block;
        margin: 0 10px;
        font-size: 1.4rem;
        transition: color 0.3s ease;
      }

      .social-links a:hover {
        color: #1e41af;
      }

      /* end of contact section */

      /* footer section */
      .footer-section {
        background: rgb(9, 9, 37);
        padding: 30px 20px;
        text-align: center;
        color: #d5f2ff;
        font-family: "Poppins", sans-serif;
      }

      .footer-slogan {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: #1e41af;
        font-weight: 600;
      }

      .footer-links {
        margin-bottom: 15px;
      }

      .footer-links a {
        color: #d5f2ff;
        margin: 0 10px;
        font-size: 1.4rem;
        transition: color 0.3s;
      }

      .footer-links a:hover {
        color: #1e41af;
      }

      .footer-copy {
        font-size: 0.9rem;
        color: grey;
      }

      /* end of footer section  */
