/* Your Original CSS - Unchanged */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1f232a;
  color: white;
}

.skills-section {
  padding: 60px;
  text-align: center;
}

.skills-section h1 {
  font-size: 48px;
  color: white;
}

.highlight {
  color: #00eaff;
}

.creative-box {
  border: 2px solid #00eaff;
  max-width: 700px;
  margin: 40px auto;
  padding: 40px;
  border-radius: 25px;
  font-size: 18px;
  line-height: 1.8;
  color: #f0f0f0;
  box-shadow: 0 0 10px rgba(0, 234, 255, 0.2);
}

.read-btn {
  display: inline-block;
  margin-top: 30px;
  background-color: #00eaff;
  color: black;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 0 15px #00eaff;
  transition: 0.3s ease;
}

.read-btn:hover {
  background-color: #00cfd1;
  box-shadow: 0 0 20px #00f7ff;
}

/* Extra CSS Additions for Enhancement */
.skills-section {
  /* Add a subtle background gradient for depth */
  background: linear-gradient(135deg, #1f232a, #2a2f3a);
  /* Smooth transition for any changes */
  transition: all 0.3s ease;
}

.skills-section h1 {
  /* Add text shadow for a glowing effect */
  text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
  /* Slight animation on load */
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.creative-box {
  /* Enhanced shadow and transition */
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
  transition: all 0.3s ease;
  /* Add a subtle inner glow */
  background: rgba(0, 234, 255, 0.05);
}

.creative-box:hover {
  /* Lift effect and stronger glow on hover */
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 234, 255, 0.5);
  border-color: #00f7ff;
}

.read-btn {
  /* Add focus state for accessibility */
  transition: all 0.3s ease;
}

.read-btn:hover,
.read-btn:focus {
  /* Scale effect and enhanced glow */
  transform: scale(1.05);
  box-shadow: 0 0 25px #00f7ff;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .skills-section {
    padding: 40px 20px;
  }
  .skills-section h1 {
    font-size: 36px;
  }
  .creative-box {
    max-width: 90%;
    padding: 30px;
    font-size: 16px;
  }
  .read-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .skills-section h1 {
    font-size: 28px;
  }
  .creative-box {
    padding: 20px;
    margin: 20px auto;
  }
  .read-btn {
    padding: 8px 20px;
  }
}
