@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

html, body {
  font-family: 'Rajdhani', 'Plus Jakarta Sans', sans-serif;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: #f4f6fa;
  color: #2e3a4e;
  overflow-x: hidden;
  letter-spacing: 0.05em;
  background-image: radial-gradient(circle at 50% 50%, rgba(0, 168, 204, 0.08) 0%, rgba(244, 246, 250, 0) 100%),
                    linear-gradient(rgba(0, 168, 204, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 168, 204, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f4f6fa;
  border-left: 1px solid rgba(0, 168, 204, 0.1);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 168, 204, 0.2);
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 168, 204, 0.5);
  box-shadow: 0 0 10px rgba(0, 168, 204, 0.8);
}

.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Navbar - Star Citizen style HUD menu (Light Mode) */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 1rem;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(244, 246, 250, 0.95), rgba(244, 246, 250, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 168, 204, 0.15);
}

header nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 168, 204, 0.25);
  border-radius: 4px;
  display: flex;
  gap: 0.25rem;
  padding: 0.2rem;
  box-shadow: 0 5px 20px rgba(0, 168, 204, 0.05);
}

header nav a {
  color: #4a5d78;
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: all 0.25s ease-in-out;
}

header nav a:hover, header nav div.active a {
  color: #0077b6;
  background: rgba(0, 180, 216, 0.1);
  box-shadow: inset 0 0 10px rgba(0, 180, 216, 0.1), 0 0 5px rgba(0, 180, 216, 0.1);
}

/* Page Layout & Background Blobs */
.portfolio-wrapper {
  position: relative;
  width: 100%;
  padding-top: 80px;
}

.background-blobs {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  animation: float 18s infinite alternate ease-in-out;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  top: -15%;
  left: -10%;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  bottom: 10%;
  right: -10%;
  animation-delay: -9s;
}

.shape-3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  top: 45%;
  left: 35%;
  animation-delay: -4s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.08); }
  100% { transform: translate(-30px, 70px) scale(0.95); }
}

/* Sections Base */
.section-container {
  position: relative;
  z-index: 1;
  max-width: 1150px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

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

.section-title h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #030812 0%, #4a5d78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 0.5rem 0;
}

.section-title p {
  color: #0077b6;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
}

/* Hero Section */
.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 168, 204, 0.35);
  border-radius: 4px;
  padding: 4rem 3rem;
  box-shadow: 0 10px 40px rgba(0, 168, 204, 0.08), inset 0 0 20px rgba(0, 168, 204, 0.02);
  animation: heroAppear 1s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 900px;
  width: 100%;
}

@keyframes heroAppear {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 119, 182, 0.08);
  border: 1px solid rgba(0, 119, 182, 0.35);
  color: #0077b6;
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.avatar-glow {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.avatar-glow::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  background: linear-gradient(45deg, #00b4d8, #d97706, #0077b6);
  border-radius: 4px;
  z-index: -1;
  animation: spinGlow 6s linear infinite;
}

.avatar {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid #f4f6fa;
  display: block;
  box-shadow: 0 0 20px rgba(0, 119, 182, 0.2);
}

@keyframes spinGlow {
  100% { transform: rotate(360deg); }
}

.animated-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.8rem 0;
  background: linear-gradient(to right, #030812, #4a5d78);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.title-highlight {
  background: linear-gradient(135deg, #0077b6, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #4a5d78;
  margin: 0 0 2rem 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bio-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #46566d;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.btn-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 2px;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.btn-cyan {
  background: rgba(0, 168, 204, 0.1);
  color: #0077b6;
  border: 1px solid rgba(0, 168, 204, 0.45);
  box-shadow: 0 0 15px rgba(0, 168, 204, 0.05);
}

.btn-cyan:hover {
  background: rgba(0, 168, 204, 0.25);
  box-shadow: 0 0 20px rgba(0, 168, 204, 0.2), inset 0 0 10px rgba(0, 168, 204, 0.1);
  color: #ffffff;
}

.btn-outline {
  background: rgba(217, 119, 6, 0.08);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.4);
}

.btn-outline:hover {
  background: rgba(217, 119, 6, 0.2);
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.15), inset 0 0 10px rgba(217, 119, 6, 0.05);
  color: #ffffff;
}

/* Dual Expertise Section */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 168, 204, 0.2);
  border-radius: 4px;
  box-shadow: 0 5px 25px rgba(0, 168, 204, 0.04);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00b4d8, #0077b6);
}

.expertise-card.dev::before {
  background: linear-gradient(90deg, #d97706, #f59e0b);
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 168, 204, 0.45);
  box-shadow: 0 15px 35px rgba(0, 168, 204, 0.1);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background: rgba(0, 180, 216, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #0077b6;
}

.expertise-card.dev .icon-box {
  background: rgba(217, 119, 6, 0.12);
  color: #d97706;
}

.expertise-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #1b263b;
  text-transform: uppercase;
}

.expertise-card p {
  color: #46566d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  color: #46566d;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '✓';
  color: #0077b6;
  font-weight: 800;
}

.expertise-card.dev .feature-list li::before {
  color: #d97706;
}

/* Projects Showcase */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 168, 204, 0.2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 168, 204, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 168, 204, 0.45);
  box-shadow: 0 15px 35px rgba(0, 168, 204, 0.12);
}

.project-img-wrapper {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.08);
}

.project-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: #0077b6;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  border: 1px solid rgba(0, 168, 204, 0.35);
}

.project-content {
  padding: 2rem;
}

.project-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 0.8rem 0;
  color: #1b263b;
}

.project-content p {
  color: #46566d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-pill {
  background: rgba(0, 119, 182, 0.05);
  border: 1px solid rgba(0, 119, 182, 0.15);
  color: #4a5d78;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Skills Section */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.skill-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 168, 204, 0.2);
  padding: 0.9rem 1.6rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: #2e3a4e;
  transition: all 0.3s ease;
}

.skill-card:hover {
  background: rgba(0, 180, 216, 0.12);
  border-color: rgba(0, 180, 216, 0.4);
  color: #0077b6;
  transform: translateY(-3px) scale(1.03);
}

.skill-icon {
  font-size: 1.2rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 168, 204, 0.2);
  border-radius: 4px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 5px 25px rgba(0, 168, 204, 0.04);
}
.testimonial-stars { color: #d97706; font-size: 1.4rem; letter-spacing: 0.15rem; }
.testimonial-average { display: flex; justify-content: center; align-items: center; gap: 0.7rem; color: #46566d; margin: 0 auto 1.8rem; }
.testimonial-average strong { color: #1b263b; font-size: 1.1rem; }
.testimonial-comment { color: #46566d; font-style: italic; line-height: 1.7; }
.testimonial-name { color: #0077b6; font-family: 'Orbitron', sans-serif; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
.testimonials-empty { color: #46566d; text-align: center; font-size: 1.05rem; }
.testimonial-form { max-width: 550px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.rating-picker { display: flex; justify-content: center; gap: 0.35rem; }
.rating-star { background: transparent; border: 0; color: #94a3b8; cursor: pointer; font-size: 2rem; line-height: 1; padding: 0.2rem; transition: transform .15s ease, color .15s ease; }
.rating-star.selected, .rating-star:hover { color: #d97706; }
.rating-star:hover { transform: scale(1.15); }
.rating-label { color: #46566d; text-align: center; margin: -0.45rem 0 0; font-weight: 600; }

/* Contact Footer Card */
.contact-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 168, 204, 0.25);
  border-radius: 4px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 168, 204, 0.08);
}

.contact-card h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  color: #1b263b;
}

.contact-card p {
  color: #46566d;
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2.5rem auto;
}

footer {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #4a5d78;
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 168, 204, 0.1);
}

/* Contact Form Styles */
.contact-form {
  max-width: 550px;
  margin: 2rem auto 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 1rem 1.4rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 168, 204, 0.25);
  color: #1b263b;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #0077b6;
  box-shadow: 0 0 15px rgba(0, 119, 182, 0.25);
  background: #ffffff;
}

.form-input::placeholder {
  color: #778da9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .animated-title { font-size: 1.8rem; line-height: 1.3; }
  .section-title h2 { font-size: 1.8rem; }
  .post-title { font-size: 1.8rem; }
  .subtitle { font-size: 1.05rem; }
  .hero-card { padding: 2.5rem 1.5rem; }
  .section-container { padding: 3rem 1rem; }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001; /* Above nav */
    padding: 10px;
    margin-right: -10px; /* Offset to align right */
  }
  .hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #1b263b;
    transition: 0.3s;
  }
  header {
    justify-content: flex-end; /* Push hamburger to right */
    padding-right: 2rem;
  }
  header nav {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    height: 100vh;
    width: 65%;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; /* Vertical links */
    justify-content: flex-start;
    padding-top: 6rem;
    border-radius: 0;
    transition: 0.4s ease-in-out;
    border: none;
    border-left: 1px solid rgba(0, 168, 204, 0.15);
  }
  header nav.active {
    right: 0; /* Slide in */
  }
  header nav a {
    font-size: 1.2rem;
    padding: 1.2rem 2rem;
    text-align: left;
    width: 100%;
    border-radius: 0;
  }
  .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}


/* BLOG STYLES */
.blog-section {
  padding: 6rem 1rem 4rem;
  background-color: transparent;
  min-height: 100vh;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 168, 204, 0.2);
  border-radius: 4px;
  box-shadow: 0 5px 25px rgba(0, 168, 204, 0.04);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 168, 204, 0.45);
  box-shadow: 0 15px 35px rgba(0, 168, 204, 0.12);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-title {
  margin: 0 0 0.5rem 0;
  color: #1b263b;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-meta {
  font-size: 0.875rem;
  color: #4a5d78;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: #46566d;
  margin-bottom: 1.5rem;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-read-more {
  text-decoration: none;
  font-weight: 500;
}

/* POST DETAIL STYLES */
.post-detail-section {
  padding: 6rem 1rem 4rem;
  background-color: transparent;
  min-height: 100vh;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: #0077b6;
  text-decoration: none;
  font-weight: 500;
}

.post-header {
  margin-bottom: 3rem;
  text-align: center;
}

.post-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  color: #1b263b;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.post-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #46566d;
}

.post-content img {
  max-width: 100%;
  border-radius: 8px;
}

.post-interactions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-interaction {
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(0, 168, 204, 0.35);
  background: rgba(0, 168, 204, 0.08);
  color: #0077b6;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  transition: all 0.25s ease-in-out;
}

.btn-interaction:hover {
  background: rgba(0, 168, 204, 0.25);
  box-shadow: 0 0 15px rgba(0, 168, 204, 0.2);
}

.post-divider {
  border: none;
  border-top: 1px solid rgba(0, 168, 204, 0.1);
  margin: 3rem 0;
}

.comments-section {
  max-width: 800px;
  margin: 0 auto;
}

.comment-form-container {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 168, 204, 0.2);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 0 25px rgba(0, 168, 204, 0.05);
  margin-bottom: 3rem;
}

.comment-card {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 168, 204, 0.1);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.comment-author {
  color: #1b263b;
}

.comment-date {
  color: #778da9;
  font-size: 0.875rem;
}

/* Blog Card and Details Stats Styles */
.blog-stats {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  color: #4a5d78;
  font-size: 0.875rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.stat-item i {
  font-size: 0.95rem;
  color: #778da9;
}

.stat-item.like i {
  color: #10b981;
}

.stat-item.dislike i {
  color: #ef4444;
}

.stat-item.comment i {
  color: #3b82f6;
}

/* Social Links styling */
.social-links-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-link-item {
  color: #0077b6;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0, 168, 204, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.25s ease-in-out;
}

.social-link-item:hover {
  background: rgba(0, 180, 216, 0.15);
  border-color: rgba(0, 180, 216, 0.45);
  box-shadow: 0 0 15px rgba(0, 168, 204, 0.15);
  color: #0077b6;
}

/* Experience Cards gallery & specs styling */
.project-gallery {
  display: flex;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem 0;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 55px;
  height: 40px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(0, 168, 204, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-thumb:hover, .gallery-thumb.active {
  border-color: #0077b6;
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(0, 119, 182, 0.25);
}

.project-specs {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(0, 168, 204, 0.25);
}

.project-specs h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: #0077b6;
  text-transform: uppercase;
  margin: 0 0 0.6rem 0;
  letter-spacing: 0.05em;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.4rem;
}

.specs-list li {
  font-size: 0.85rem;
  color: #46566d;
  display: flex;
  align-items: center;
}

.spec-bullet {
  font-size: 0.8rem;
  margin-right: 0.35rem;
}
