body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom right, #1c1c1c, #333);
    color: #fff;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  }
  
  header .LOGO {
    display: flex;
    align-items: center;
    color: #00eeff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
  }
  
  header img.LOGO {
    margin-right: 10px;
  }
  
  .navbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
  }
  
  .navbar a:hover {
    background: #00eeff;
    color: #000;
  }
  
  section {
    padding: 50px 20px;
    text-align: center;
  }
  
  h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .Button a {
    display: inline-block;
    margin: 10px 15px;
    padding: 10px 20px;
    color: #fff;
    background: #00eeff;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s;
  }
  
  .Button a:hover {
    transform: scale(1.1);
  }
  
  .Home-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s;
  }
  
  .Home-image img:hover {
    transform: scale(1.05);
  }
  
  .about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background: #222;
  }
  
  .about-image {
    flex: 1;
    text-align: center;
    padding-right: 20px;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 50%;
    border: 5px solid #00eeff;
    transition: transform 0.3s;
  }
  
  .about-image img:hover {
    transform: rotate(5deg) scale(1.05);
  }
  
  .about-content {
    flex: 2;
    text-align: left;
  }
  
  .about-content .heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .about-content p {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .about-content .btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background: #00eeff;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s;
  }
  
  .about-content .btn:hover {
    transform: scale(1.1);
  }
  .skills-section {
    padding: 50px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
  }
  
  .skills-section .heading {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: left;
    font-weight: bold;
    color: #00eeff;
  }
  
  .skills-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .skill {
    flex-basis: 30%;
    margin-bottom: 30px;
    position: relative;
  }
  
  .skill .skill-name {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f0f0f0;
  }
  
  .skill .progress-bar {
    width: 100%;
    background-color: #444;
    border-radius: 20px;
    overflow: hidden;
    height: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
  }
  
  .skill .progress {
    height: 100%;
    background-color: #00eeff;
    width: 0;
    border-radius: 20px;
    transition: width 1s ease-in-out;
  }
  
  .skill .progress-bar:hover .progress {
    width: var(--progress-width);
  }
  
  .skill-level {
    position: absolute;
    right: 10px;
    top: -10px;
    font-size: 16px;
    color: #ffffff;
  }
  
  .progress {
    background: #555;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
  }
  
  .progress-bar {
    height: 15px;
    background: #00eeff;
  }
  
  .services {
    background: #1c1c1c;
    padding: 50px 20px;
  }
  
  .services .sub-title {
    font-size: 36px;
    color: #00eeff;
    margin-bottom: 40px;
  }
  
  .services-list {
    display: flex;
    justify-content: space-between;
  }
  
  .services-list div {
    width: 30%;
    padding: 20px;
    background: #222;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s;
  }
  
  .services-list div:hover {
    transform: scale(1.05);
  }
  
  .services-list h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .services-list p {
    font-size: 16px;
    line-height: 1.6;
  }
/* Project Section Styles */
.project {
  padding: 50px 0;
  background-color: #1b1b1b;
}

.project .heading {
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
}

.project .heading span {
  color: #00ffff;
}

.project-list {
  position: relative;
  overflow: hidden;
  margin: 15px;
  display: inline-block;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.project-list img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.project-list:hover {
  transform: translateY(-10px);
}

.project-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 20px;
  box-sizing: border-box;
}

.project-list:hover .project-layer {
  opacity: 1;
}

.project-layer h3, .project-layer h4 {
  color: #00ffff;
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-align: center;
}

.project-layer p {
  color: #ccc;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 10px;
  box-sizing: border-box;
  word-wrap: break-word;
  max-width: 100%;
}

.project-layer a {
  color: #00ffff;
  font-size: 1.8rem;
  transition: color 0.3s;
}

.project-layer a:hover {
  color: #fff;
}

/* Grid Layout for Projects */
.project .project-list {
  flex: 1 1 calc(33.333% - 30px);
  margin: 15px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .project .project-list {
      flex: 1 1 calc(50% - 30px);
  }
}

@media screen and (max-width: 480px) {
  .project .project-list {
      flex: 1 1 100%;
  }
}


  .contact-container {
    padding: 50px 20px;
    background: #222;
    text-align: center;
  }
  
  .contact-container form {
    display: inline-block;
    max-width: 500px;
    width: 100%;
    background: #333;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  }
  
  .contact-container h1 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #00eeff;
  }
  
  .contact-container input,
  .contact-container textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background: #444;
    color: #fff;
    font-size: 16px;
  }
  
  .contact-container input[type="submit"] {
    background: #00eeff;
    color: #000;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-container input[type="submit"]:hover {
    background: #00bbcc;
  }
  
  footer {
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #00eeff;
  }
  