/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f8f9fb;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}
nav ul li a:hover {
  color: #6a11cb;
}
 nav ul li a {
        text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
}
nav{
        display: flex;
        justify-content: space-between;
    unicode-bidi: isolate;
    align-items: center;
    padding: 20px 40px;
}
.nav-title{ 
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(to bottom right, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  color: transparent;
}
/* Hero Section */
.hero {
  height: 80vh;
  background: linear-gradient(to bottom right, #6a11cb, #2575fc);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 10px;
}

.hero h1 span {
  color: #ffe082;
}

.hero p {
  color: #e3e3e3;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: #ffe082;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  color: #333;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  transform: scale(1.05);
}

/* Projects Section */
.projects {
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #e9b61d;
}
/* education section */

.education {
  padding: 80px 20px;
  text-align: center;
}

.education-title {
  color: #e9b61d;
  font-size: 2rem;
  text-align: center;
}

.education-card {
  display: grid;
  gap: 15px;
  color: #2575fc;
  font-weight: bold;
  max-width: 500px;
  font-size: 1.5rem;
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 20px;
}
.skills-title {
    color: #e9b61d;
    font-size: 2rem;
    text-align: center;
}

.skills-card{
    display: grid;
    gap: 15px;
     color: #2575fc;
     font-weight: bold;
    max-width: 500;
    font-size: 1.5rem;
    text-align: center;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      padding: 20;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.project-card {
  background: #0000;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
  color: #2575fc;
  margin-bottom: 10px;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  text-align: center;
  background: #fafafa;
}

.contact p {
  margin: 10px 0;
  font-size: 1rem;
}

/* Animations */
.animate-fade {
  animation: fadeIn 1.6s ease forwards;
  opacity: 0;
}

.animate-slide {
  animation: slideUp 1.6s ease forwards;
  opacity: 0;
}

.animate-pop {
  animation: popIn 1.8s ease forwards;
  opacity: 0;
}

.animate-card {
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
