 /* Global Styles */
    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #333;
    }

    h1, h2, h3 {
      color: #00bcd4;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Navbar Styles */
    #navbar {
      background-color: rgba(30, 30, 30, 0.9);
      backdrop-filter: blur(10px);
      padding: 1rem 2rem;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: background-color 0.3s ease;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo a {
      color: #00bcd4;
      font-size: 1.5rem;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .logo a:hover {
      color: #0097a7;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }

    .nav-links li a {
      color: #fff;
      font-size: 1.1rem;
      transition: color 0.3s ease;
    }

    .nav-links li a:hover {
      color: #00bcd4;
    }

    .resume-btn {
      background-color: #00bcd4;
      color: #fff;
      padding: 0.5rem 1.5rem;
      border-radius: 5px;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .resume-btn:hover {
      background-color: #0097a7;
      transform: translateY(-2px);
    }

    /* Home Section Styles */
    #home {
      background: linear-gradient(135deg, #1e1e1e, #2c3e50);
      color: #fff;
      padding: 10rem 2rem;
      text-align: center;
    }

    #home h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
    }

    #home p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }

    .cta-button {
      background-color: #00bcd4;
      color: #fff;
      padding: 0.8rem 2rem;
      border-radius: 5px;
      font-size: 1.2rem;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .cta-button:hover {
      background-color: #0097a7;
      transform: scale(1.05);
    }

    /* About Section Styles */
    #about {
      background: linear-gradient(135deg, #1e1e1e, #2c3e50);
      color: #fff;
      padding: 6rem 2rem;
      text-align: center;
    }

    #about h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      animation: fadeIn 1s ease forwards;
    }

    .about-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
      animation: fadeIn 1.5s ease forwards;
    }

    .about-image {
      width: 300px;
      height: 300px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      animation: float 3s ease-in-out infinite;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-text {
      flex: 1;
      max-width: 600px;
      text-align: left;
      animation: fadeIn 2s ease forwards;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.8;
    }

    /* Projects Section Styles */
    #projects {
      background-image: url("Picture/project-back.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      color: #333;
      padding: 6rem 2rem;
      text-align: center;
    }

    #projects h2 {
      font-size: 3.5rem;
      margin-bottom: 2rem;
      color: #00bcd4;
      animation: fadeIn 1s ease forwards;
    }

    .project-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .project-card {
      background-color: #f9f9f9;
      border: 1px solid blue;
      border-radius: 10px;
      overflow: hidden;
      width: 300px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .project-image {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .project-card:hover .project-image img {
      transform: scale(1.1);
    }

    .project-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 188, 212, 0.8);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .project-card:hover .project-overlay {
      opacity: 1;
    }

    .project-overlay .project-link {
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      margin: 0.5rem 0;
      padding: 0.5rem 1rem;
      background-color: rgba(0, 0, 0, 0.7);
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    .project-overlay .project-link:hover {
      background-color: rgba(0, 0, 0, 0.9);
    }

    .project-card h3 {
      font-size: 1.5rem;
      margin: 1.5rem 0 1rem;
      color: #333;
    }

    .project-card p {
      font-size: 1rem;
      line-height: 1.6;
      padding: 0 1.5rem 1.5rem;
    }

    /* Skills Section Styles */
    #skills {
      background-color: #f9f9f9;
      color: #333;
      padding: 6rem 2rem;
      text-align: center;
    }

    #skills h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: #00bcd4;
      animation: fadeIn 1s ease forwards;
    }

    .skills-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .skills-category {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 2rem;
      width: 100%;
      max-width: 500px;
      text-align: left;
      animation: fadeIn 1.5s ease forwards;
    }

    .skills-category h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: #333;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .skills-category h3 i {
      color: #00bcd4;
    }

    .skill {
      margin-bottom: 1.5rem;
    }

    .skill-name {
      font-size: 1rem;
      display: block;
      margin-bottom: 0.5rem;
    }

    .skill-bar {
      background-color: #eee;
      border-radius: 5px;
      overflow: hidden;
      height: 10px;
    }

    .skill-level {
      background-color: #00bcd4;
      height: 100%;
      border-radius: 5px;
      width: 0;
      transition: width 1.5s ease;
    }

    .soft-skills {
      list-style: none;
      padding: 0;
    }

    .soft-skills li {
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .soft-skills li::before {
      content: "✔";
      color: #00bcd4;
    }

    /* Contact Section Styles */
    #contact {
      background-color: #fff;
      color: #333;
      padding: 6rem 2rem;
      text-align: center;
    }

    #contact h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: #00bcd4;
      animation: fadeIn 1s ease forwards;
    }

    .contact-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-form {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 2rem;
      width: 100%;
      max-width: 500px;
      text-align: left;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 0.8rem;
      margin-bottom: 1rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
    }

    .contact-form textarea {
      resize: vertical;
    }

    .contact-form button {
      background-color: #00bcd4;
      color: #fff;
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .contact-form button:hover {
      background-color: #0097a7;
    }

    .contact-details {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 2rem;
      width: 100%;
      max-width: 500px;
      text-align: left;
    }

    .contact-details p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }

    .social-links {
      list-style: none;
      padding: 0;
    }

    .social-links li {
      margin-bottom: 0.8rem;
    }

    .social-links li a {
      color: #00bcd4;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s ease;
    }

    .social-links li a:hover {
      color: #0097a7;
    }

    /* Footer Styles */
    footer {
      background: linear-gradient(135deg, #1e1e1e, #2c3e50);
      color: #fff;
      padding: 3rem 2rem;
      text-align: center;
    }

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

    .footer-image {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 1.5rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .footer-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .social-links a {
      color: #fff;
      font-size: 1.5rem;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
      color: #00bcd4;
      transform: translateY(-5px);
    }

    footer p {
      font-size: 1rem;
      margin: 0;
      opacity: 0.8;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
