/* File: footer.css */
footer {
  color: var(--text-primary);
  padding: 2rem 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid var(--accent-color);
}

footer h5 {
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

footer p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

footer ul li a:hover {
  color: var(--accent-color);
}

footer .text-center p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* File: header.css */
/* Header Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(10, 25, 20, 0.9) !important; /* Semi-transparent dark green */
    border-bottom: 1px solid rgba(82, 183, 136, 0.2);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(5, 15, 10, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link:hover {
    color: var(--accent-light) !important;
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.nav-link.active::before {
    width: 70%;
}

/* Mobile menu styles */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(183, 228, 199, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown menu styles (if you add dropdowns later) */
.dropdown-menu {
    background-color: rgba(10, 25, 20, 0.95);
    border: 1px solid rgba(82, 183, 136, 0.2);
}

.dropdown-item {
    color: var(--text-primary);
}

.dropdown-item:hover {
    background-color: rgba(82, 183, 136, 0.1);
    color: var(--accent-light);
}

/* Animation for navbar items */
.nav-item {
    opacity: 0;
    animation: fadeInDown 0.5s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay animations for each nav item */
.nav-item:nth-child(1) { animation-delay: 0.2s; }
.nav-item:nth-child(2) { animation-delay: 0.3s; }
.nav-item:nth-child(3) { animation-delay: 0.4s; }
.nav-item:nth-child(4) { animation-delay: 0.5s; }
.nav-item:nth-child(5) { animation-delay: 0.6s; }


/* File: education.css */
/* education.css */
.education-header {
  color: var(--text-primary);
  margin-bottom: 4rem;
  text-align: center;
}

.education-header h1 {
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
}

.education-header h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.education-header .lead {
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, 
    var(--accent-dark), 
    var(--accent-color), 
    var(--accent-dark));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 100px;
}

.timeline-badge {
  width: 24px;
  height: 24px;
  background-color: var(--accent-color);
  border: 4px solid var(--darker-bg);
  border-radius: 50%;
  position: absolute;
  left: 38px;
  top: 0;
  z-index: 2;
}

.timeline-panel {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-panel:hover {
  background-color: var(--card-hover);
  transform: translateX(5px);
}

.timeline-heading h4 {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.timeline-heading h5 {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.timeline-heading p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.timeline-body p {
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.timeline-body strong {
  color: var(--accent-light);
}

.timeline-divider {
  height: 2px;
  background: linear-gradient(to right, 
    transparent, 
    var(--accent-dark), 
    transparent);
  margin: 2.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    padding-left: 70px;
  }
  
  .timeline-badge {
    left: 18px;
  }
  
  .timeline-panel {
    padding: 1.5rem;
  }
}

/* File: experience.css */
/* experience.css - builds on the timeline CSS from education */
.experience-header {
  color: var(--text-primary);
  margin-bottom: 4rem;
  text-align: center;
}

.experience-header h1 {
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
}

.experience-header h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.experience-header .lead {
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Skills badges styling */
.timeline-body .skills {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.timeline-body .badge {
  background-color: var(--accent-dark);
  color: var(--accent-light);
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(82, 183, 136, 0.3);
}

.timeline-body .badge:hover {
  background-color: var(--accent-color);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(82, 183, 136, 0.3);
}

/* Responsive adjustments for experience */
@media (max-width: 768px) {
  .timeline-body .skills {
    gap: 0.4rem;
  }
  
  .timeline-body .badge {
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
  }
}
.experience-projects-btn {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    background-color: var(--accent-color); /* #52b788 */
    color: var(--dark-bg); /* #121212 */
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.experience-projects-btn:hover {
    background-color: var(--accent-light); /* #b7e4c7 */
    color: var(--dark-bg);
    transform: translateY(-1px);
}

/* File: home.css */
/* Dark Theme Variables */
:root {
  --dark-bg: #121212;
  --darker-bg: #0a0a0a;
  --accent-color: #52b788;
  --accent-dark: #1a472a;
  --accent-light: #b7e4c7;
  --text-primary: #f5f5f5;
  --text-secondary: #b0b0b0;
  --card-bg: #1e1e1e;
  --card-hover: #2a2a2a;
}

/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
}

/* Animated Gradient Background */
.animated-gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--accent-dark) 100%);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  z-index: -2;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.typed-cursor {
  color: var(--accent-color);
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.hero-cta .btn {
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #121212;
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline-light {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.btn-outline-light:hover {
  background-color: var(--text-primary);
  color: var(--dark-bg);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(82, 183, 136, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(82, 183, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(82, 183, 136, 0); }
}

.hero-image-container {
  position: relative;
  perspective: 1000px;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
  border: 2px solid var(--accent-color);
}

.hero-image-wrapper:hover {
  transform: rotateY(-5deg) rotateX(2deg);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.hero-image-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--accent-color);
  color: var(--dark-bg);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: float 3s ease-in-out infinite;
  font-size: 0.9rem;
}

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

/* Gaming Stats Section */
.stats-section {
  padding: 100px 0;
  background-color: var(--darker-bg);
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent-color) 100%);
  border-radius: 2px;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  text-align: center;
  transition: all 0.5s ease;
  border: 1px solid rgba(82, 183, 136, 0.1);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: var(--accent-color);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.stat-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-color);
  line-height: 1.2;
}

.stat-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Modern Projects Grid CSS */
.projects-section {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.project-item {
  transition: transform 0.3s ease;
}

.project-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(82, 183, 136, 0.1);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(82, 183, 136, 0.3);
}

.project-media {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.project-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 28, 22, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 2rem;
  text-align: center;
}

.project-card:hover .project-hover {
  opacity: 1;
}

.project-card:hover .project-image {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.hover-content h3 {
  color: var(--accent-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hover-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-actions {
  margin-top: 1.5rem;
}

.project-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--dark-bg);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.project-btn svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.project-btn:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(82, 183, 136, 0.3);
}

.project-btn:hover svg {
  transform: translateX(3px);
}

.project-meta {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-name {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
}

.tag {
  background-color: var(--accent-dark);
  color: var(--accent-light);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(82, 183, 136, 0.3);
}

.tag:hover {
  background-color: var(--accent-color);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .project-media {
    height: 200px;
  }
  
  .project-meta {
    padding: 1.25rem;
  }
}
/* Skills Section */
.skills-section {
  padding: 100px 0;
  background-color: var(--darker-bg);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.skill-category {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.5s ease;
  border: 1px solid rgba(82, 183, 136, 0.1);
}

.skill-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border-color: var(--accent-color);
}

.skill-category h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.skill-item {
  margin-bottom: 15px;
}

.skill-item span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.skill-bar {
  height: 6px;
  background: #2a2a2a;
  border-radius: 3px;
  overflow: hidden;
}

.skill-level {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent-color) 100%);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s ease-out;
}

/* Anime/Manga Section */
.anime-section {
  padding: 100px 0;
  background-color: var(--dark-bg);
}

.media-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  height: 100%;
  transition: all 0.5s ease;
  border: 1px solid rgba(82, 183, 136, 0.1);
}

.media-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: var(--accent-color);
}

.media-image {
  width: 40%;
  overflow: hidden;
}

.media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover .media-image img {
  transform: scale(1.1);
}

.media-info {
  width: 60%;
  padding: 20px;
}

.media-info h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.media-list {
  list-style: none;
  padding: 0;
}

.media-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  padding-left: 20px;
}

.media-list li:before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .media-card {
    flex-direction: column;
  }
  
  .media-image, .media-info {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding-top: 120px;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    margin-top: 50px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stat-card {
    margin-bottom: 20px;
  }
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: var(--darker-bg);
  position: relative;
}

.about-image-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 2px solid var(--accent-color);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-container:hover .about-image {
  transform: scale(1.03);
}

.about-content {
  padding-left: 40px;
}

.experience-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--dark-bg);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin: 15px 0;
  font-size: 0.9rem;
}

.about-text {
  margin-bottom: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tech-tag {
  background: rgba(82, 183, 136, 0.1);
  color: var(--accent-light);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid var(--accent-dark);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: var(--accent-color);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
}
.code-snippet {
  background: #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.code-header {
  background: #2d2d2d;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.code-header span:not(.red,.yellow,.green) {
  margin-left: auto;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.red, .yellow, .green {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

pre {
  margin: 0;
  padding: 15px;
  overflow-x: auto;
}

code {
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #d4d4d4;
}
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--accent-color) }
}

.code-footer {
  background: #2d2d2d;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.typing-indicator::after {
  content: '...';
  animation: typing-dots 1.5s infinite;
}

@keyframes typing-dots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}


/* About Me Enhancements */
.about-highlights {
  margin: 25px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.highlight-item i {
  color: var(--accent-color);
  width: 20px;
  text-align: center;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.btn-cta {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}


/* More Projects Section */
.more-projects {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: rgba(82, 183, 136, 0.05);
  border-radius: 15px;
  border: 1px dashed rgba(82, 183, 136, 0.3);
  transition: all 0.3s ease;
}

.more-projects:hover {
  background: rgba(82, 183, 136, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.more-projects h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--accent-light);
}

.more-projects p {
  max-width: 700px;
  margin: 0 auto 25px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.more-projects-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.more-projects-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.more-projects-actions .btn i {
  font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .more-projects {
    padding: 30px 20px;
  }
  
  .more-projects-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .more-projects-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* File: project-detail.css */
.project-images {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.image-scroll-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.project-image-thumb {
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.project-image-thumb:hover {
  transform: scale(1.05);
}

.project-meta p,
.project-technologies ul {
  color: var(--text-secondary);
}

.project-content,
.project-technologies {
  background-color: var(--darker-bg);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.project-links .btn {
  
  background-color: var(--accent-color);
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-right: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.project-links .btn:hover {
  background-color: var(--accent-light);
}


.badge {
  background-color: var(--accent-dark);
  color: var(--accent-light);
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(82, 183, 136, 0.3);
}

 .badge:hover {
  background-color: var(--accent-color);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(82, 183, 136, 0.3);
}

.tech-item {
    background:  var(--accent-dark);
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.tech-item i {
    color: var(--primary-color); /* Use your theme color */
}

.gallery-img {
    height: 200px;
    width: auto;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* File: projects.css */

.project-header {
  color: var(--text-primary);
  margin-bottom: 4rem;
  text-align: center;
}

.project-header h1 {
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
}

.project-header h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.project-header .lead {
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.project-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: 1px solid rgba(255, 255, 255, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  background-color: var(--card-hover);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(82, 183, 136, 0.15);
}

.project-image-container {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.project-card:hover .project-image {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay .btn {
  background-color: var(--accent-color);
  color: var(--darker-bg);
  font-weight: 600;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  border: none;
  box-shadow: 0 4px 15px rgba(82, 183, 136, 0.3);
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.project-card:hover .project-overlay .btn {
  transform: translateY(0);
  opacity: 1;
}

.project-overlay .btn:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(82, 183, 136, 0.4);
}

.card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  color: var(--text-primary);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.card-text {
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Animation for project cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.col {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.col:nth-child(1) { animation-delay: 0.1s; }
.col:nth-child(2) { animation-delay: 0.2s; }
.col:nth-child(3) { animation-delay: 0.3s; }
.col:nth-child(4) { animation-delay: 0.4s; }
.col:nth-child(5) { animation-delay: 0.5s; }
.col:nth-child(6) { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 992px) {
  .project-header h1 {
    font-size: 2.4rem;
  }
  
  .project-header .lead {
    font-size: 1.2rem;
  }
  
  .project-image-container {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .project-header {
    margin-bottom: 3rem;
  }
  
  .project-header h1 {
    font-size: 2.2rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
}

/* File: socials.css */
/* socials.css - Enhanced Version */
.socials-header {
  color: var(--text-primary);
  margin-bottom: 4rem;
  text-align: center;
}

.socials-header h1 {
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
}

.socials-header h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.socials-header .lead {
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.socials-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.section {
  margin-bottom: 3.5rem;
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-color), var(--accent-dark));
}

.section:hover {
  background-color: var(--card-hover);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(82, 183, 136, 0.1);
}

.section h2 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section h2::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.8rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background-color: var(--darker-bg);
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(82, 183, 136, 0.05);
  position: relative;
  overflow: hidden;
}

.social-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.social-link:hover {
  background-color: rgba(82, 183, 136, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(82, 183, 136, 0.1);
  border-color: rgba(82, 183, 136, 0.2);
}

.social-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: all 0.3s ease;
  z-index: 1;
}

.social-link:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Contact section styling */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--darker-bg);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background-color: rgba(82, 183, 136, 0.05);
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-color);
}

.contact-item a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.contact-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.contact-item:hover a::after {
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .socials-header h1 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 1.8rem;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* Animation for social links */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.social-link {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.social-link:nth-child(1) { animation-delay: 0.1s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.3s; }
.social-link:nth-child(4) { animation-delay: 0.4s; }
.social-link:nth-child(5) { animation-delay: 0.5s; }
.social-link:nth-child(6) { animation-delay: 0.6s; }

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-link i {
    font-size: 1.2rem;
    color: var(--accent-color);
    min-width: 20px;
}

.social-link:hover {
    color: var(--accent-light);
}

.section h2 {
    margin-top: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Optional: Add icons using Font Awesome */
.contact-info i {
    color: var(--accent-color);
    font-size: 1.1rem;
}


