
    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&family=Open+Sans:ital,wght@1,400&display=swap');

    /* Reset margins and paddings for all elements */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Body styles */
    body {
      background-color: #FFFFFF;
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      font-style: normal;
    }

    /* Header */
    header {
      background-color: #8121d0;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .branding {
      font-family: 'Roboto', sans-serif;
      font-weight: bold;
      color: #FFFFFF;
      font-size: 24px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }

    .company-hi {
      font-family: 'Roboto', sans-serif;
      font-weight: bold;
      font-style: normal;
    }

    .company-dev {
      font-family: 'Open Sans', sans-serif;
      font-style: italic;
    }

    nav {
      display: flex;
      justify-content: center;
      flex: 1;
    }

    nav ul {
      display: flex;
      list-style-type: none;
      padding: 0;
      margin: 0;
    }

    ul li {
      margin: 0 10px;
      position: relative;
    }

    ul li a {
      text-decoration: none;
      color: white;
      padding: 10px 15px;
      display: flex;
      align-items: center;
      border-radius: 8px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    ul li a i {
      margin-right: 8px;
    }

    ul li a:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    ul li:last-child {
      background-color: #FFFFFF;
      border-radius: 8px;
      margin-left: 20px;
      position: relative;
    }

    ul li:last-child a {
      color: #8121d0;
    }

    ul li:last-child a:hover {
      color: #6a0da5;
    }

    /* Showcase Section */
    .showcase {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 40px;
      background-color: #331C52;
      color: #FFFFFF;
      gap: 40px;
    }

    .showcase .content {
      max-width: 600px;
      flex: 1;
    }

    .showcase h1 {
      font-size: 48px;
      margin-bottom: 15px;
      font-family: 'Playfair Display', serif;
      color: #FFFFFF;
      animation: fadeInUp 1.5s ease-out;
    }

    .showcase h2 {
      font-size: 36px;
      margin-bottom: 25px;
      color: #E0E0E0;
      animation: fadeInUp 1.5s ease-out 0.3s;
    }

    .showcase p {
      font-size: 22px;
      color: #CCCCCC;
      margin-bottom: 30px;
      animation: fadeInUp 1.5s ease-out 0.6s;
    }

    .showcase .social-icons {
      display: flex;
      gap: 25px;
      animation: fadeInUp 1.5s ease-out 0.9s;
    }

    .showcase .social-icons a {
      color: #E0E0E0;
      font-size: 30px;
      transition: color 0.3s, transform 0.3s;
    }

    .showcase .social-icons a:hover {
      color: #B0B0B0;
      transform: scale(1.1);
    }

    /* Laptop Animation */
    .laptop-animation {
      position: relative;
      width: 400px;
      height: 250px;
      margin-left: 20px;
      animation: fadeInUp 1.5s ease-out;
    }

    .laptop-animation::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
      border-radius: 12px;
      border: 2px solid #333;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .laptop-screen {
      position: absolute;
      top: 15px;
      left: 15px;
      width: calc(100% - 30px);
      height: calc(100% - 30px);
      background: #f0f0f0;
      border-radius: 7px;
      z-index: 2;
      overflow: hidden;
      animation: screenFadeIn 1s ease-out 0.5s;
    }

    .laptop-content {
      padding: 15px;
      font-size: 18px;
      color: #333;
    }

    @keyframes screenFadeIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Mini Showcase Section */
    .mini-showcase {
      background-color: #291C3A;
      color: #FFFFFF;
      padding: 40px 20px;
    }

    .mini-showcase h3 {
      font-size: 28px;
      margin-bottom: 20px;
      font-family: 'Playfair Display', serif;
      color: #E0E0E0;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
      text-align: center;
    }

    .mini-showcase .stats {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .mini-showcase .stat-item {
      font-size: 24px;
      color: #F0F0F0;
      background-color: #3D2D54;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      flex: 1;
      max-width: 250px;
      font-weight: bold;
    }

    .mini-showcase .stat-item.strong {
      font-size: 26px;
      font-weight: 700;
    }

    .mini-showcase .icons {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .mini-showcase .icons img {
      width: 60px;
      height: 60px;
      transition: transform 0.3s;
    }

    .mini-showcase .icons img:hover {
      transform: scale(1.1);
    }

    /* Media Queries for Responsiveness */
    @media (max-width: 1200px) {
      .showcase {
        padding: 50px 20px;
        gap: 20px;
      }

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

      .showcase h2 {
        font-size: 30px;
      }

      .showcase p {
        font-size: 20px;
      }

      .laptop-animation {
        width: 350px;
        height: 220px;
      }
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .branding {
        margin-bottom: 10px;
        font-size: 20px;
      }

      nav {
        width: 100%;
        justify-content: center;
      }

      nav ul {
        flex-direction: column;
        width: auto;
        padding: 0;
      }

      ul li {
        margin: 10px 0;
      }

      ul li:last-child {
        margin-left: 0;
      }

      .showcase {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
      }

      .laptop-animation {
        margin-left: 0;
        margin-top: 20px;
        width: 80%;
      }

      .showcase .social-icons {
        justify-content: center;
        margin-top: 20px;
      }

      .mini-showcase .icons img {
        width: 50px;
        height: 50px;
      }
    }

    @media (max-width: 480px) {
      .branding {
        font-size: 18px;
      }

      .showcase {
        padding: 30px 15px;
      }

      .showcase h1 {
        font-size: 32px;
      }

      .showcase h2 {
        font-size: 24px;
      }

      .showcase p {
        font-size: 18px;
      }

      .laptop-animation {
        width: 300px;
        height: 180px;
      }

      .mini-showcase .stat-item {
        font-size: 20px;
        padding: 15px;
      }

      .mini-showcase .icons img {
        width: 40px;
        height: 40px;
      }
    }

     /* About Me and My Skills Section */
      .about-my-skills {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Two equal columns */
        grid-template-rows: auto auto; /* Two rows: one for About Me and My Skills, one for My Projects */
        gap: 20px; /* Space between items */
        padding: 40px 20px;
        background-color: #E1EBED;
      }

      .about-me {
        padding: 20px;
        grid-column: 1 / 2; /* Occupies the first column */
        grid-row: 1; /* Place in the first row */
      }

      .my-skills {
        padding: 20px;
        grid-column: 2 / 3; /* Occupies the second column */
        grid-row: 2; /* Place in the second row, lower than About Me */
      }

      .my-projects {
        padding: 20px;
        grid-column: 1 / 3; /* Occupies both columns */
        grid-row: 3; /* Place in the third row, below About Me and My Skills */
      }

      .my-projects::before {
        content: "";
        display: block;
        width: 100%;
        height: 4px;
        background: linear-gradient(to right, transparent 0%, #331C52 10%, transparent 20%, #331C52 30%, transparent 40%, #331C52 50%, transparent 60%, #331C52 70%, transparent 80%, #331C52 90%, transparent 100%);
        background-size: 200% 100%;
        background-position: 0 0;
        margin: 20px 0; /* Adjust spacing as needed */
        animation: dash 3s linear infinite;
      }

      @keyframes dash {
        from {
          background-position: 0 0;
        }
        to {
          background-position: 100% 0;
        }
      }

      .project-box {
        background-color: #DCCFED !important;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 250px; /* Reduced width */
        height: 350px; /* Increased height */
        margin-right: 20px; /* Added space between boxes */
        flex: 1;
        transition: transform 0.3s ease; /* Smooth transition effect */
      }

      .projects-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
        gap: 20px; /* Space between boxes */
        padding: 20px 0;
        position: relative;
      }

      .projects-grid-wrapper {
        display: flex;
        width: max-content; /* Adjust to the width of its content */
        animation: slide 20s linear infinite;
      }

      @keyframes slide {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-100%);
        }
      }

      .project-box img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
      }

      .project-info {
        text-align: center;
        flex: 1; /* Make sure the project-info fills available space */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center content vertically */
      }

      .project-info h1 {
        font-size: 20px; /* Reduced font-size */
        color: #331C52;
        margin-bottom: 10px;
      }

      .project-info p {
        font-size: 16px; /* Reduced font-size */
        color: #331C52;
        margin-bottom: 15px;
      }

      .view-code {
        display: flex;
        align-items: center;
        justify-content: center; /* Center content horizontally */
        text-decoration: none;
        color: #FFFFFF; /* White text color */
        font-weight: 500;
        background-color: #331C52; /* Background color */
        padding: 10px 15px;
        border-radius: 8px;
      }

      .view-code i {
        margin-right: 8px;
      }

      .view-code:hover {
        color: #FFFFFF;
        background-color: #6a0da5; /* Darker background on hover */
      }

      .about-me h1,
      .my-skills h1,
      .my-projects h1 {
        color: #331C52;
        font-size: 36px;
        margin-bottom: 20px;
      }

      .about-me p,
      .my-skills p,
      .my-projects p {
        color: #331C52;
        font-size: 18px;
      }

      .skills-icons {
        display: grid;
        grid-template-columns: repeat(5, 1fr); /* 5 images per row */
        gap: 20px;
      }

      .skill-box {
        background-color: #331C52;
        padding: 20px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .skills-icons img {
        width: 60px; /* Reduced width */
        height: 60px;
        transition: transform 0.3s;
      }

      .skills-icons img:hover {
        transform: scale(1.1);
      }

      .project-number {
        font-size: 24px;
        font-weight: bold;
        color: #8121d0;
        display: block;
        margin-bottom: 10px;
      }

      .project-info button {
        background-color: #8121d0;
        color: #FFFFFF;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
      }

      .project-info button:hover {
        background-color: #6a0da5;
      }

     /* Responsive Styles */
    /* For screens larger than 1200px */
    @media (max-width: 1200px) {
      .about-my-skills {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto auto auto; /* Three rows: About Me, My Skills, My Projects */
      }

      .my-skills {
        grid-column: 1 / 2; /* Full width */
        grid-row: 2; /* Second row */
      }

      .my-projects {
        grid-column: 1 / 2; /* Full width */
        grid-row: 3; /* Third row */
      }

      .skills-icons {
        grid-template-columns: repeat(3, 1fr); /* 3 images per row */
      }

      .discussion-content {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto auto; /* Two rows: text, form */
      }
    }

    /* For screens smaller than 768px */
    @media (max-width: 768px) {
      .about-my-skills {
        padding: 20px;
      }

      .about-me h1,
      .my-skills h1,
      .my-projects h1 {
        font-size: 28px;
      }

      .about-me p,
      .my-skills p,
      .my-projects p {
        font-size: 16px;
      }

      .project-box {
        width: 200px; /* Adjust width */
        height: auto; /* Adjust height */
        margin-right: 10px; /* Space between boxes */
      }

      .projects-grid {
        flex-wrap: wrap;
        gap: 10px; /* Space between boxes */
      }

      .projects-grid-wrapper {
        display: block;
        animation: none; /* Disable animation for smaller screens */
      }

      .skills-icons {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row */
      }

      .skills-icons img {
        width: 50px; /* Reduced size */
        height: 50px;
      }

      .project-info h1 {
        font-size: 18px;
      }

      .project-info p {
        font-size: 14px;
      }

      .view-code {
        padding: 8px 12px;
      }

      .discussion-content {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto auto; /* Two rows: text, form */
      }

      .discussion-text {
        padding: 15px;
      }

      .discussion-text h1 {
        font-size: 24px;
      }

      .discussion-text p {
        font-size: 14px;
      }

      .discussion-form input,
      .discussion-form textarea,
      .discussion-form button {
        font-size: 14px;
      }

      .discussion-form textarea {
        height: 60px;
      }

      .link-list {
        margin-top: 10px;
      }

      .link-row {
        flex-direction: column; /* Stack links vertically */
        gap: 5px;
      }

      .link-list a {
        padding: 8px 12px;
      }

      .social-icons a {
        width: 30px; /* Adjust size */
        height: 30px;
        font-size: 18px;
      }
    }

    /* For screens smaller than 480px */
    @media (max-width: 480px) {
      .about-me h1,
      .my-skills h1,
      .my-projects h1 {
        font-size: 24px;
      }

      .about-me p,
      .my-skills p,
      .my-projects p {
        font-size: 14px;
      }

      .project-box {
        width: 100%; /* Full width for project boxes */
        margin-right: 0;
      }

      .skills-icons {
        grid-template-columns: 1fr; /* Single column layout */
      }

      .skills-icons img {
        width: 40px; /* Further reduced size */
        height: 40px;
      }

      .view-code {
        padding: 6px 10px;
      }

      .discussion-text {
        padding: 5px;
      }

      .discussion-text h1 {
        font-size: 20px;
      }

      .discussion-text p {
        font-size: 12px;
      }

      .discussion-form input,
      .discussion-form textarea,
      .discussion-form button {
        font-size: 12px;
      }

      .discussion-form textarea {
        height: 50px;
      }

      .link-list {
        margin-top: 5px;
      }

      .link-row {
        flex-direction: column; /* Stack links vertically */
        gap: 5px;
      }

      .link-list a {
        padding: 6px 10px;
      }

      .social-icons a {
        width: 25px; /* Further reduced size */
        height: 25px;
        font-size: 16px;
      }
    }

   /* Existing Section Styles */
    .cool-discussion {
      padding: 40px 20px;
      background-color: #DCCFED;
    }

    .discussion-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .discussion-text {
      padding: 20px;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
    }

    .discussion-text h1 {
      color: #331C52;
      font-size: 36px;
      margin: 0;
    }

    .discussion-text .highlight {
      color: #ab187e;
    }

    .discussion-text p {
      color: #331C52;
      font-size: 18px;
      margin-top: 40px;
      margin-bottom: 0;
    }

    .discussion-form {
      padding: 20px;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .discussion-form input,
    .discussion-form textarea,
    .discussion-form button {
      border: 1px solid #ccc;
      border-radius: 8px;
      outline: none;
      padding: 8px;
      font-size: 14px;
      width: 100%;
    }

    .discussion-form input,
    .discussion-form textarea {
      max-width: 100%;
    }

    .discussion-form textarea {
      resize: vertical;
      height: 100px;
    }

    .discussion-form button {
      background-color: #331C52;
      color: #FFFFFF;
      border: none;
      padding: 10px;
      cursor: pointer;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 100%;
    }

    .discussion-form button i {
      margin-right: 8px;
    }

    .discussion-form button:hover {
      background-color: #6a0da5;
    }

    .link-list {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .link-row {
      display: flex;
      gap: 10px;
    }

    .link-list a {
      color: #331C52;
      border: 2px solid #331C52;
      border-radius: 8px;
      padding: 8px 12px;
      text-decoration: none;
      transition: background-color 0.3s, color 0.3s;
    }

    .link-list a.selected {
      background-color: #331C52;
      color: #FFFFFF;
    }

    .link-list a:hover {
      background-color: #f0f0f0;
      color: #331C52;
    }

    .discussion-form .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 15px;
    }

    .discussion-form .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border: 2px solid #331C52;
      border-radius: 50%;
      color: #331C52;
      text-decoration: none;
      font-size: 24px;
    }

    .discussion-form .social-icons a:hover {
      background-color: #f0f0f0;
    }

    .discussion-form .social-icons .fa-facebook {
      color: #331C52;
    }

    .discussion-form .social-icons .fa-instagram {
      color: #331C52;
    }

    .discussion-form .social-icons .fa-twitter {
      color: #331C52;
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
      .discussion-content {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto auto; /* Two rows: one for text, one for form */
      }

      .discussion-text,
      .discussion-form {
        padding: 15px; /* Adjust padding for smaller screens */
      }

      .discussion-text h1 {
        font-size: 28px; /* Reduced font size */
      }

      .discussion-text p {
        font-size: 16px; /* Reduced font size */
      }

      .discussion-form input,
      .discussion-form textarea,
      .discussion-form button {
        font-size: 16px; /* Adjust font size */
      }

      .discussion-form textarea {
        height: 80px; /* Adjust textarea height */
      }

      .link-list {
        margin-top: 15px;
      }

      .link-row {
        flex-direction: column; /* Stack links vertically */
        gap: 5px;
      }

      .link-list a {
        padding: 10px 15px; /* Adjust padding for better fit */
      }

      .social-icons a {
        width: 35px; /* Smaller icon size */
        height: 35px;
        font-size: 20px; /* Adjust icon font size */
      }
    }

    @media (max-width: 768px) {
      .discussion-content {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto auto; /* Two rows: one for text, one for form */
      }

      .discussion-text {
        padding: 10px; /* Adjust padding */
      }

      .discussion-text h1 {
        font-size: 24px; /* Reduced font size */
      }

      .discussion-text p {
        font-size: 14px; /* Reduced font size */
        margin-top: 20px; /* Adjust margin */
      }

      .discussion-form input,
      .discussion-form textarea,
      .discussion-form button {
        font-size: 14px; /* Adjust font size */
      }

      .discussion-form textarea {
        height: 60px; /* Adjust textarea height */
      }

      .link-list {
        margin-top: 10px;
      }

      .link-row {
        flex-direction: column; /* Stack links vertically */
        gap: 5px;
      }

      .link-list a {
        padding: 8px 12px; /* Adjust padding for better fit */
      }

      .social-icons a {
        width: 30px; /* Smaller icon size */
        height: 30px;
        font-size: 18px; /* Adjust icon font size */
      }
    }

    @media (max-width: 480px) {
      .discussion-text {
        padding: 5px; /* Adjust padding */
      }

      .discussion-text h1 {
        font-size: 20px; /* Further reduced font size */
      }

      .discussion-text p {
        font-size: 12px; /* Further reduced font size */
        margin-top: 15px; /* Adjust margin */
      }

      .discussion-form input,
      .discussion-form textarea,
      .discussion-form button {
        font-size: 12px; /* Adjust font size */
      }

      .discussion-form textarea {
        height: 50px; /* Adjust textarea height */
      }

      .link-list {
        margin-top: 5px;
      }

      .link-row {
        flex-direction: column; /* Stack links vertically */
        gap: 5px;
      }

      .link-list a {
        padding: 6px 10px; /* Adjust padding */
      }

      .social-icons a {
        width: 25px; /* Smaller icon size */
        height: 25px;
        font-size: 16px; /* Adjust icon font size */
      }
    }

    /* Existing Footer Styles */
    .footer {
      background-color: #331C52;
      color: #FFFFFF;
      padding: 20px;
      text-align: center;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-company-name {
      font-size: 24px;
      margin: 0;
      padding: 10px 0;
    }

    .company-hi {
      font-family: 'Roboto', sans-serif;
      font-weight: bold;
    }

    .company-dev {
      font-family: 'Open Sans', sans-serif;
      font-style: italic;
    }

    .footer-description {
      font-size: 14px;
      margin: 10px 0;
    }

    .footer-social-icons {
      margin-top: 15px;
    }

    .footer-social-icons a {
      color: #FFFFFF;
      font-size: 24px;
      margin: 0 10px;
      text-decoration: none;
    }

    .footer-social-icons a:hover {
      color: #DCCFED;
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
      .footer-content {
        padding: 0 10px; /* Reduce padding for smaller screens */
      }

      .footer-company-name {
        font-size: 22px; /* Slightly reduce font size */
      }

      .footer-description {
        font-size: 13px; /* Slightly reduce font size */
      }

      .footer-social-icons a {
        font-size: 22px; /* Slightly reduce icon size */
        margin: 0 8px; /* Reduce space between icons */
      }
    }

    @media (max-width: 768px) {
      .footer-content {
        padding: 0 20px; /* Increase padding for better spacing */
      }

      .footer-company-name {
        font-size: 20px; /* Reduce font size */
      }

      .footer-description {
        font-size: 12px; /* Reduce font size */
      }

      .footer-social-icons {
        margin-top: 10px; /* Reduce space above social icons */
      }

      .footer-social-icons a {
        font-size: 20px; /* Reduce icon size */
        margin: 0 6px; /* Reduce space between icons */
      }
    }

    @media (max-width: 480px) {
      .footer-content {
        padding: 0 10px; /* Adjust padding for very small screens */
      }

      .footer-company-name {
        font-size: 18px; /* Further reduce font size */
        padding: 5px 0; /* Adjust padding */
      }

      .footer-description {
        font-size: 11px; /* Further reduce font size */
      }

      .footer-social-icons {
        margin-top: 5px; /* Further reduce space above social icons */
      }

      .footer-social-icons a {
        font-size: 18px; /* Further reduce icon size */
        margin: 0 5px; /* Further reduce space between icons */
      }
    }