* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #3e4145;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-links a.active {
  color: #00ff9d;
  font-weight: 600;
}

.cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* Navigation */ 
.nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  width: 100%;
  background: rgba(17, 17, 18, 0.95); /* Matches hero's starting color */
  padding: 20px 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 255, 157, 0.1); /* Subtle line using highlight color */
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

/* Animated underline effect */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #00ff9d;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    padding: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: rgba(17, 17, 18, 0.98);
    position: absolute;
    top: 60px;
    left: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: #00ff9d;
    cursor: pointer;
    position: absolute;
    /* top: 20px; */
    left: 20px;
    z-index: 200;
    transition: color 0.3s ease;
  }

  .nav-toggle:hover {
    color: #ffffff;
  }
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #111112, #1e2c3a);
  color: white;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.highlight {
  color: #00ff9d;
}

/* CV Section */
.cv-section {
  padding: 100px 0;
  background: #f9f9f9;
}

.cv-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cv-download {
  display: inline-block;
  padding: 12px 24px;
  background: #00ff9d;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cv-download:hover {
  background: #00cc7d;
  transform: translateY(-2px);
}
/* Education Section */
.education-item {
  margin-bottom: 30px;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.education-item h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 5px;
}

.education-item .institution {
  font-size: 1rem;
  color: #555;
}

.education-item .duration {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.education-item .details {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Experience Section */
.experience-item {
  margin-bottom: 30px;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.experience-item h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 5px;
}

.experience-item .company {
  font-size: 1rem;
  color: #555;
}

.experience-item .duration {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.experience-item .description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-top: 10px;
}


/* Projects Section */
.projects-section {
  padding: 100px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
}

.project-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.project-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
}

/* Contact Section */
#contact {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-link:hover {
  color: #00ff9d;
}

.icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
/* Footer */
/* Footer */
.footer {
  text-align: center;
  background: #333;
  color: #fff;
  padding: 20px 0;
}


@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    margin: 0 auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }
}
.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-info {
  padding: 25px;
}

.project-info h3 {
  margin-bottom: 10px;
  color: #1a1a1a;
}

.project-description {
  color: #666;
  margin-bottom: 15px;
}

.project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.tech-tag {
  background: #f0f0f0;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8em;
  color: #333;
}

.project-links {
  display: flex;
  gap: 15px;
}

.project-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: color 0.3s ease;
}

.project-links a:hover {
  color: #00ff9d;
}

.github-icon, .demo-icon {
  width: 20px;
  height: 20px;
}

/* Add these styles to style.css */
.blogs-section {
padding: 100px 0;
background: #f9f9f9;
}

.blogs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 50px;
}

.blog-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
display: flex;
flex-direction: column;
}

.blog-card:hover {
transform: translateY(-5px);
}

.blog-platform {
display: flex;
align-items: center;
gap: 10px;
padding: 15px 20px;
background: #f8f9fa;
border-bottom: 1px solid #eee;
}

.platform-icon {
width: 24px;
height: 24px;
object-fit: contain;
}

.blog-content {
padding: 20px;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.blog-content h3 {
font-size: 1.2em;
margin-bottom: 10px;
color: #1a1a1a;
}

.blog-excerpt {
color: #666;
font-size: 0.95em;
margin-bottom: 15px;
flex-grow: 1;
}

.blog-metadata {
display: flex;
justify-content: space-between;
color: #888;
font-size: 0.85em;
margin-bottom: 15px;
}

.read-more {
color: #00ff9d;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}

.read-more:hover {
color: #00cc7d;
}

@media (max-width: 768px) {
.blogs-grid {
  grid-template-columns: 1fr;
}
}
