.education {
  margin-top: 40px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  color: white;
  animation: fadeIn 1s ease-in-out;
}

.education h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  color: #00f7ff;
  border-bottom: 2px solid #00f7ff;
  display: inline-block;
}

.edu-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  margin: 15px 0;
  border-left: 5px solid #00f7ff;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.edu-card:hover {
  transform: translateX(10px);
  box-shadow: 0 0 10px #00f7ff;
}




.project-section {
  padding: 40px 20px;
  text-align: center;
  color: white;
}
h1{
    color:beige;
    font-size: 2rem;
    margin-bottom: 20px;
}
/* h1:hover{
    border: 2px solid rgb(52, 179, 215);
    display: inline-block;
    background-color: #28bdd1;
    box-shadow:0 0 15px #04e2ea;
} */

.filter-tabs {
  margin-bottom: 20px;
}

.tab {
  background-color: transparent;
  border: 2px solid #00f7ff;
  color: #e8f4f4;
  margin: 5px;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.tab.active,
.tab:hover {
  background-color: #00f7ff;
  color: black;
}

.project-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 20px;
  justify-content: center;
}

.project-card {
  max-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.5s ease-in-out;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #04e2ea;
}

.project-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.project-card h3 {
  color: #00f7ff;
  margin: 10px 0;
}

.btn {
  margin-top: 10px;
  padding: 8px 15px;
  background: #00f7ff;
  color: black;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  background: #00c6d6;
}

/* skill */
/* SKILLS SECTION */

 /* Main container with left (skills) and right (contact) */
.main-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin: 50px auto;
  max-width: 1100px;
  padding: 20px;
}

/* Left Side: Skill Container */
.left-skill-container {
  width: 30%;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 12px;
  color: white;
  transition: all 0.5s ease-in-out;
}

#toggleSkillsBtn {
  padding: 12px 20px;
  background-color: #00f7ff;
  color: black;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

#toggleSkillsBtn:hover {
  background-color: #00d2d2;
}

/* Skills List Styling */
.skills-list {
  margin-top: 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
  animation: fadeIn 0.5s ease forwards;
}

.skill-item {
  background: #0b132b;
  padding: 10px 15px;
  border-radius: 6px;
  color: #00f7ff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  transition: transform 0.3s;
}

.skill-item:hover {
  transform: scale(1.05);
}

/* Right Side: Contact Form */
.contact-section {
  height:400px;
  width: 50%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  color: white;
  position: relative;
}

.contact-section h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

#contactForm button {
  padding: 12px 20px;
  background-color: #00f7ff;
  color: black;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

#contactForm button:hover {
  background-color: #00d2d2;
}

/* Fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* icon styling */
.social-icons {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon {
  font-size: 24px;
  color: white;
  background-color: #222;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.icon:hover {
  transform: scale(1.2);
}

/* Individual colors */
.icon.whatsapp {
  background-color: #25D366;
}

.icon.linkedin {
  background-color: #0A66C2;
}

.icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
