/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
}

.dark-mode {
  background-color: #1e1e1e;
  color: #f8f9fa;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation Bar */
/* Navigation Bar */
nav {
  background: linear-gradient(135deg, #6c63ff, #ff6584);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav .nav-links a:hover {
  color: #ffd700;
}

#theme-toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

#theme-toggle:hover {
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6c63ff, #ff6584);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeIn 1.5s ease-in-out;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  animation: fadeIn 2s ease-in-out;
}

.hero .btn {
  background-color: #ff6584;
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
}

.hero .btn:hover {
  background-color: #e05570;
  transform: translateY(-5px);
}

/* About Section */
/* About Me Section */
/* About Me Section */
.about {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-image {
  flex: 1;
  text-align: center;
}

.avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #6c63ff;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-text {
  flex: 2;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
}

.about-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.icon-item {
  text-align: center;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.icon-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.icon-item i {
  font-size: 2rem;
  color: #6c63ff;
  margin-bottom: 0.5rem;
}

.icon-item span {
  font-size: 0.9rem;
  color: #333;
}

/* Download Resume Button */
.download-btn {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(135deg, #6c63ff, #ff6584);
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
/* Download Resume Button */
.download-btn {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(135deg, #6c63ff, #ff6584);
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Skills Section */
.skills {
  padding: 4rem 0;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.skill {
  margin-bottom: 1.5rem;
}

.progress-bar {
  background-color: #e0e0e0;
  border-radius: 50px;
  overflow: hidden;
}

.progress {
  background: linear-gradient(135deg, #6c63ff, #ff6584);
  height: 10px;
  border-radius: 50px;
  transition: width 1s;
}

/* Projects Section */
.projects {
  padding: 4rem 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #6c63ff;
}

.project-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Certificates Section */
.certificates {
  padding: 4rem 0;
  background: #f8f9fa;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.certificate-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.certificate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.certificate-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #6c63ff;
}

.certificate-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact input, .contact textarea {
  padding: 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
}

.contact .btn {
  background: linear-gradient(135deg, #6c63ff, #ff6584);
  color: #fff;
  padding: 0.8rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.contact .btn:hover {
  transform: translateY(-5px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-links a {
  color: #6c63ff;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: #ff6584;
  transform: translateY(-5px);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #6c63ff, #ff6584);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 4rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Download Resume Button */
.download-btn {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(135deg, #6c63ff, #ff6584);
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-btn i {
  margin-right: 0.5rem;
}

.download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.download-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

