    /* Header Styles */
    .header {
        display: flex;
        flex-direction: column;
        padding: 10px;
        background-color: #333;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 10;
      }


      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        max-width: 1100px;
        margin: 0 auto;
      }
      .logo {
        color: #f05a28;
        font-size: 24px;
        text-decoration: none;
        font-weight: bold;
      }
  
      /* Navbar Styles */
      .navbar {
        display: flex;
      }
      .navbar ul {
        display: flex;
        list-style: none;
      }
      .navbar li {
        margin: 0 10px;
      }
      .navbar a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
      }
      .navbar a:hover {
        color: #f05a28;
      }
  
      /* Navbar Toggler Button */
      .navbar-toggler {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
      }
      .toggler-icon {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 4px 0;
        transition: transform 0.3s ease;
      }
      .navbar-toggler.active .toggler-icon {
        display: none;
      }
      .navbar-toggler.active::after {
        content: "✕";
        font-size: 24px;
        color: #fff;
      }
  
      /* Hero Section with Background */
      .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        padding: 0 20px;
        background: url('your-hero-background.jpg') center/cover no-repeat;
        color: #ffffff;
        text-align: center;
        margin-top: 80px;
      }
      .content {
        display: flex;
        align-items: center;
        max-width: 1100px;
        width: 100%;
        flex-direction: row;
      }
      .image-container {
        margin-bottom: 20px;
        position: relative;
      }
      .image-container img {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
      }
  
      /* Hero Text Content */
      .text-content h2 {
        font-size: 2rem;
        font-weight: 600;
        color: #f05a28;
        white-space: nowrap;
        overflow: hidden;
        border-right: 4px solid #f05a28;
        width: 0;
        animation: typing 4s steps(30, end) forwards;
      }
      @keyframes typing {
        from {
          width: 0;
        }
        to {
          width: 100%;
        }
      }
      .text-content p {
        font-size: 1.1rem;
        color: #ddd;
        max-width: 600px;
        line-height: 1.6;
        margin-bottom: 1.5rem;
      }
      .btn-get-started {
        display: inline-block;
        padding: 10px 25px;
        font-size: 1rem;
        color: #ffffff;
        background-color: #f05a28;
        border-radius: 25px;
        text-decoration: none;
        transition: background 0.3s;
      }
      .btn-get-started:hover {
        background-color: #ff785a;
      }
  
      /* Responsive Design */
      @media (max-width: 768px) {
        .header-content {
          flex-direction: row;
          justify-content: flex-start;
        }
        .logo {
          margin-right: auto;
        }
        .navbar-toggler {
          display: block;
          margin-left: 10px;
        }
        .navbar {
          display: none;
          position: absolute;
          top: 50px;
          left: 10px;
          background-color: #333;
          width: calc(100% - 20px);
          max-width: 200px;
          padding: 0px;
          border-radius: 8px;
          flex-direction: column;
        }
        .navbar.active {
          display: block;
        }
        .navbar ul {
          flex-direction: column;
          align-items: center;
        }
        .navbar li {
          margin: 10px 0;
        }
        .hero {
          padding-top: 60px;
        }
        .text-content h2 {
          font-size: 1.5rem;
        }
        .btn-get-started {
          padding: 6px 15px;
          font-size: 0.8rem;
        }
      }
       /* Hero Section */
       .hero {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 100vh;
          padding: 0 20px;
          background-color: #121212;
          margin-top: 80px;
        }
    
        .content {
          display: flex;
          align-items: center;
          max-width: 1100px;
          width: 100%;
        }
    
        .image-container {
          position: relative;
          margin-right: 60px;
        }
    
        .image-container::before {
          content: "";
          position: absolute;
          width: 300px;
          height: 300px;
          background: linear-gradient(135deg, rgba(242, 247, 246, 0.6), rgba(7, 1, 61, 0.3));
          border-radius: 50%;
          animation: float 6s ease-in-out infinite;
          top: -20px;
          left: -20px;
          z-index: 0;
        }
    
        .image-container img {
          width: 250px;
          height: 250px;
          border-radius: 50%;
          box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
          position: relative;
          z-index: 1;
        }
    
        @keyframes float {
          0%, 100% {
            transform: translateY(0);
          }
          50% {
            transform: translateY(10px);
          }
        }
    
        .text-content h2 {
          font-size: 2rem;
          font-weight: 600;
          color: #f05a28;
          white-space: nowrap;
          overflow: hidden;
          border-right: 4px solid #f05a28;
          width: 0;
          margin-bottom: 1rem;
          animation: typing 4s steps(30, end) forwards;
        }
    
        @keyframes typing {
          from {
            width: 0;
          }
          to {
            width: 100%;
          }
        }
    
        .text-content h2 span {
          color: #ffffff;
        }
    
        .text-content p {
          font-size: 1.1rem;
          color: #ddd;
          max-width: 600px;
          line-height: 1.6;
          margin-bottom: 1.5rem;
        }
    
        .btn-get-started {
          display: inline-block;
          padding: 10px 25px;
          font-size: 1rem;
          color: #ffffff;
          background-color: #f05a28;
          border-radius: 25px;
          text-decoration: none;
          transition: background 0.3s;
        }
    
        .btn-get-started:hover {
          background-color: #ff785a;
        }
        /* Responsive Design */
  
  /* Medium Screens (Tablets, 768px and below) */
  @media (max-width: 768px) {
    /* Stack content vertically */
    .content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    /* Adjust image size */
   
  
    /* Remove right margin and center image */
    .image-container {
      margin-right: 0;
      margin-bottom: 20px;
    }
  
    /* Adjust heading and button size */
    .text-content h2 {
      font-size: 1.8rem;
    }
  
    .text-content p {
      font-size: 1rem;
    }
  
    .btn-get-started {
      padding: 8px 20px;
      font-size: 0.9rem;
    }
  }
  
  /* Small Screens (Mobile, 576px and below) */
  @media (max-width: 576px) {

    /* Adjust heading size and spacing */
    .text-content h2 {
      font-size: 1.5rem;
    }
  
    /* Reduce text and button padding */
    .text-content p {
      font-size: 0.9rem;
    }
  
    .btn-get-started {
      padding: 6px 15px;
      font-size: 0.8rem;
    }
  
    /* Adjust hero section height for small screens */
    .hero {
      height: auto;
      padding-top: 100px;
    }
  }
  
  /* About Me Section */
  .about {
          background-color: #1f1f1f;
        }
   
        .about-content {
          display: flex;
          align-items: center;
          justify-content: space-between;
          max-width: 1100px;
          margin: 0 auto;
          gap: 40px;
        }
    
     
        .about p {
          font-size: 1.1rem;
          color: #ddd;
          line-height: 1.6;
          margin-bottom: 20px;
        }
    
        .btn-learn-more {
          display: inline-block;
          padding: 10px 25px;
          font-size: 1rem;
          color: #ffffff;
          background-color: #f05a28;
          border-radius: 25px;
          text-decoration: none;
          transition: background 0.3s;
        }
    
        .btn-learn-more:hover {
          background-color: #ff785a;
        }
    
        .profile-image {
          display: flex;
          justify-content: center;
          align-items: center;
        }
    
        .image-background {
          background-color: #333333;
          padding: 15px;
          border-radius: 50%;
          display: inline-flex;
        }
    
        .about-me-image {
          width: 250px;
          height: 250px;
          border-radius: 50%;
          box-shadow: none;
        }
    
        @media (max-width: 768px) { /* Small screens */
          .about-content {
            display: flex;
            flex-direction: column; /* Stack elements vertically */
          }
          .section-title {
            order: 1; /* Title appears first */
            text-align: center;
          }
          .profile-image {
            order: 2; /* Image appears second */
          }
          .text-content1 {
            order: 1; /* Text content appears last */
          }
        }
        
        
        /* Services Section */
        .services {
          background-color: #121212;
        }
    
        .service-cards {
          display: flex;
          justify-content: center;
          gap: 30px;
          flex-wrap: wrap;
        }
    
        .service-card {
          background-color: #1f1f1f;
          padding: 20px;
          width: 300px;
          text-align: center;
          border-radius: 10px;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
          transition: transform 0.3s, box-shadow 0.3s;
        }
    
        .service-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
        }
    
        .service-icon {
          font-size: 2.5rem;
          color: #f05a28;
          margin-bottom: 15px;
        }
    
        .service-card h3 {
          font-size: 1.5rem;
          color: #ffffff;
          margin-bottom: 10px;
        }
    
        .service-card p {
          font-size: 1rem;
          color: #ccc;
        }
    
    /* CSS for hover effect */
    .service-card {
      background-color:#1f1f1f;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .service-card:hover {
      background-color:#f05a28;
      transform: translateY(-10px);
      box-shadow: 0 8px 16px rgba(220, 238, 237, 0.2);
    }
    
    /* Change icon color on hover */
    .service-card:hover .service-icon {
      color: #eff3f3; /* Change this to your preferred hover color */
    }
    
    /* Optional: Change the text color or style on hover */
    .service-card:hover h3,
    .service-card:hover p {
      color: #1e0202; /* Change this to your preferred hover color */
    }
    
        /* Responsive Design */
        @media (max-width: 768px) {
          .about-content {
            flex-direction: column;
            text-align: center;
          }
    
          .profile-image {
            margin-top: 20px;
          }
    
          .service-cards {
            flex-direction: column;
            align-items: center;
          }
    
          .service-card {
            width: 100%;
            max-width: 350px;
          }
        }
  
        /* General Section Styling */
        .section {
          padding: 80px 20px;
          text-align: center;
          background-colo;
          color: #ffffff;
        }
    
        .section-title {
          font-size: 2.5rem;
          font-weight: 600;
          color: #f05a28;
          margin-bottom: 20px;
        }


  /* About Me page styles ---------
  -----------------------*/
       /* Container */
       .container1 {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
  
      /* Animation Keyframes */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
      /* About Section */
      .about1 {
        padding: 100px 0;
        background: linear-gradient(135deg, #1f1f1f, #333333);
      }
  
      .about-content1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 800px;
        margin: 0 auto;
        padding: 30px;
        border-radius: 15px;
        background-color: #222;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
        opacity: 0;
        animation: fadeInUp 1.5s forwards;
        transition: transform 0.3s ease;
      }
  
      /* Responsive Flex for Image and Details */
      .about-flex1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }
  
      .profile-image1 img {
        width: 150px;
        border-radius: 50%;
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
        border: 4px solid #f05a28;
        transition: transform 0.3s ease;
      }
  
      .profile-image1 img:hover {
        transform: scale(1.05);
      }
  
      .section-title1 {
        font-size: 32px;
        font-weight: 600;
        color: #f05a28;
        margin-bottom: 15px;
        text-align: center;
      }
  
      .about1 p {
        font-size: 18px;
        line-height: 1.6;
        color: #d1d1d1;
        margin-top: 10px;
        text-align: center;
      }
  
      /* Personal Details */
      .personal-details {
        background-color: #1a1a1a;
        color: #d1d1d1;
        padding: 20px;
        border-radius: 8px;
        text-align: left;
        margin-top: 20px;
        max-width: 600px;
        width: 100%;
      }
  
      .personal-details h3 {
        font-size: 24px;
        color: #f05a28;
        margin-bottom: 10px;
      }
  
      .personal-details p {
        font-size: 16px;
        margin: 5px 0;
        line-height: 1.5;
      }
  
      /* Responsive Design */
      @media (min-width: 768px) {
        .about-flex1 {
          flex-direction: row;
          align-items: flex-start;
        }
  
        .profile-image1 {
          flex: 0 0 150px;
          margin-right: 30px;
        }
  
        .about-content1 {
          max-width: 800px;
          text-align: left;
        }
      }
    /* Skills Section */
    .skills-section {
      padding: 60px 20px;
      background-color: #1a1a1a;
      text-align: center;
    }

    .skills-list {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .skill-item {
      background-color: #f05a28;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 16px;
      box-shadow: 0px 5px 15px rgba(240, 90, 40, 0.4);
      transition: transform 0.3s;
      cursor: pointer;
    }

    .skill-item:hover {
      transform: scale(1.1);
    }

    /* Projects Section */
    .project-item {
      background-color: #1a1a1a;
      padding: 15px;
      border-left: 5px solid #f05a28;
      border-radius: 5px;
      max-width: 600px;
      margin: 20px auto;
      text-align: center;
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    }

  /*---------------------------footer---------*/
    /* Redesigned Footer */
    .footer {
      background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
      color: #fff;
      padding: 40px 20px;
      font-family: Arial, sans-serif;
    }
  
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }
  
    .footer-logo {
      flex: 1 1 40%;
      min-width: 300px;
      text-align: left;
    }
  
    .footer-logo h3 {
      font-size: 1.8rem;
      color: #ff6f00;
      margin-bottom: 10px;
    }
  
    .footer-logo p {
      font-size: 1rem;
      color: #cccccc;
      line-height: 1.6;
    }
  
    .footer-links {
      flex: 1 1 50%;
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }
  
    .footer-column {
      min-width: 150px;
    }
  
    .footer-column h4 {
      font-size: 1.2rem;
      color: #ff6f00;
      margin-bottom: 15px;
    }
  
    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
  
    .footer-column ul li {
      margin-bottom: 8px;
    }
  
    .footer-column ul li a {
      color: #cccccc;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
  
    .footer-column ul li a:hover {
      color: #ff6f00;
    }
  
    .social-links {
      display: flex;
      gap: 15px;
    }
  
    .social-icon {
      font-size: 1.5rem;
      color: #fff;
      transition: color 0.3s, transform 0.3s ease-in-out;
    }
  
    .social-icon:hover {
      color: #ff6f00;
      transform: scale(1.1);
    }
  
    .footer-bottom {
      margin-top: 30px;
      text-align: center;
      font-size: 0.9rem;
      color: #aaaaaa;
      border-top: 1px solid #444;
      padding-top: 15px;
    }
  
    /* Responsive Styles */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
  
      .footer-logo {
        margin-bottom: 20px;
      }
  
      .footer-links {
        flex-direction: column;
        gap: 30px;
      }
    }
  
