/*==============================================================
# CSS VARIABLES & COMMON PATTERNS
==============================================================*/
:root {
  /* Colors */
  --primary-green: #12d640;
  --dark-green: #1c7d32;
  --darker-green: #9e7f25;
  --light-green: #35e888;
  --ultra-light-green: #63eda3;
  --success-green: #15bb62;
  --brand-green: #28a745;
  
  /* Backgrounds */
  --bg-dark: #010e1b;
  --bg-navy: #09203a;
  --bg-deep-navy: #042b56eb;
  --bg-darker-navy: #042e5f;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s ease-in-out;
  --transition-medium: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-glow: 0 10px 30px rgba(18, 214, 64, 0.2);
  --shadow-glow-strong: 0 15px 40px rgba(18, 214, 64, 0.15);
}

/*==============================================================
# KEYFRAME ANIMATIONS (Consolidated)
==============================================================*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0.8;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(18, 214, 64, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(18, 214, 64, 0.1);
  }
}

@keyframes pulse-ring {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

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

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

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes shimmer-level {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*==============================================================
# GENERAL STYLES
==============================================================*/
html, body {
  scroll-behavior: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  position: relative;
  background: transparent;
  animation: pageLoad 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body::before {
  content: "";
  position: fixed;
  background: var(--bg-dark);
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
}

@media (min-width: 1024px) {
  body::before {
    background-attachment: fixed;
  }
}

a {
  color: var(--primary-green);
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

/* Smooth transitions for all interactive elements */
button, a, input, textarea {
  transition: var(--transition-smooth);
}

/*==============================================================
# HEADER
==============================================================*/
#header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 997;
  overflow-y: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#header.header-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--bg-navy);
  animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#header h1 {
  font-size: 48px;
  margin-top: 0px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

#header h1 a,
#header h1 a:hover {
  color: #dee2e6;
  line-height: 1;
  display: inline-block;
}

#header h2 {
  font-size: 24px;
  margin-top: 0px;
  color: white;
}

#header h2 span {
  color: var(--primary-green);
  text-decoration: none;
}

#header img {
  padding: 0;
  margin: 0;
}

#header .social-links {
  margin-top: 40px;
  display: flex;
}

#header .social-links a {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: var(--transition-smooth);
}

#header .scheduling-button-script {
  margin-top: 40px;
  display: flex;
}

#header .social-links a:hover {
  background: var(--dark-green);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(28, 125, 50, 0.4);
}

#header.header-top .social-links,
#header.header-top .scheduling-button-script,
#header.header-top h2,
#header.header-top .credits {
  display: none;
}

#header.header-top h1 {
  margin-right: auto;
  font-size: 26px;
}

#header.header-top .container {
  display: flex;
  align-items: center;
}

#header.header-top .nav-menu {
  margin: 0;
}

/*==============================================================
# TYPING EFFECT
==============================================================*/
.typing {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-style: normal;
  gap: 5px;
}

/*==============================================================
# NAVIGATION MENU
==============================================================*/
.nav-menu {
  margin-top: 35px;
}

.nav-menu ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li + li {
  margin-left: 30px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  font-size: 19px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  transition: var(--transition-smooth);
}

.nav-menu a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--darker-green);
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .active > a:before {
  visibility: visible;
  width: 25px;
}

.nav-menu a:hover::after,
.nav-menu .active > a::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: var(--primary-green);
  text-decoration: none;
  transform: translateY(-2px);
}

/*==============================================================
# MOBILE NAVIGATION
==============================================================*/
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.7);
  transition: ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  border-radius: 12px;
  padding: 10px 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
  animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: var(--dark-green);
  text-decoration: none;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*==============================================================
# SECTIONS GENERAL
==============================================================*/
section {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 140px;
  bottom: 100%;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
}

section.section-show {
  top: 100px;
  bottom: auto;
  opacity: 1;
  padding-bottom: 0px;
  transform: translateY(0);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

section .container {
  background: rgba(0, 0, 0, 0);
  padding: 30px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 12px 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #dee2e6;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #dee2e6;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: -15px 0 15px 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: -10px;
  margin-bottom: 40px;
}

/*==============================================================
# COMMON COMPONENT STYLES (Consolidated)
==============================================================*/

/* Common Card Styles */
.icon-box {
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(18, 214, 64, 0.1), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-box:hover::before {
  left: 100%;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

/* Common Link Styles */
.social-links a {
  transition: var(--transition-smooth);
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(28, 125, 50, 0.4);
}

/*==============================================================
# ABOUT ME SECTION
==============================================================*/
.about-me .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--dark-green);
}

.about-me .content ul {
  list-style: none;
  padding: 0;
}

.about-me .content ul li {
  padding-bottom: 10px;
}

.about-me .content ul i {
  font-size: 20px;
  padding-right: 2px;
  color: var(--dark-green);
}

.about-me .content p {
  text-align: justify;
}

.about-me .content p:last-child {
  margin-bottom: 0;
}

/* Enhanced About Card */
.about-card {
  background: linear-gradient(135deg, rgba(9, 32, 58, 0.9) 0%, rgba(4, 43, 86, 0.9) 100%);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(18, 214, 64, 0.1);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(18, 214, 64, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(18, 214, 64, 0.2);
  border-color: rgba(18, 214, 64, 0.3);
}

/* Profile Image */
.profile-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 1;
}

.profile-ring,
.profile-ring-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.profile-ring {
  width: 100%;
  height: 100%;
  border-color: rgba(18, 214, 64, 0.3);
}

.profile-ring-2 {
  width: 110%;
  height: 110%;
  border-color: rgba(18, 214, 64, 0.2);
  animation-delay: 0.5s;
}

.profile-img {
  width: 85%;
  height: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(18, 214, 64, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.profile-img:hover {
  transform: translate(-50%, -50%) scale(1.05);
  border-color: rgba(18, 214, 64, 0.8);
  box-shadow: 0 12px 40px rgba(18, 214, 64, 0.3);
}

.profile-badge {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(18, 214, 64, 0.4);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

.profile-badge i {
  font-size: 28px;
  color: #fff;
}

/* About Content */
.about-content {
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.greeting-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(18, 214, 64, 0.1);
  border: 1px solid rgba(18, 214, 64, 0.3);
  border-radius: 25px;
  margin-bottom: 20px;
  animation: slideInDown 0.8s ease-out;
}

.greeting-badge i {
  font-size: 20px;
  color: var(--primary-green);
}

.greeting-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-name {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 0%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-role {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.role-text {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.role-separator {
  color: var(--primary-green);
  font-weight: 300;
}

.about-description {
  margin-bottom: 30px;
}

.about-description p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}

.about-description strong {
  color: #fff;
  font-weight: 600;
}

.about-description .highlight {
  color: var(--primary-green);
  font-weight: 500;
  position: relative;
}

/* About Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(18, 214, 64, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(18, 214, 64, 0.15);
  transition: var(--transition-fast);
}

.highlight-item:hover {
  background: rgba(18, 214, 64, 0.1);
  border-color: rgba(18, 214, 64, 0.3);
  transform: translateY(-3px);
}

.highlight-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 22px;
  color: #fff;
}

.highlight-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  margin: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

/* About Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: var(--transition-fast);
}

.stat-item:hover {
  background: rgba(18, 214, 64, 0.05);
  transform: scale(1.05);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number::after {
  content: '+';
  font-size: 24px;
  color: rgba(18, 214, 64, 0.6);
  margin-left: 4px;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*==============================================================
# COUNTS
==============================================================*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  color: var(--dark-green);
  border-radius: 50px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #fff;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

/*==============================================================
# SKILLS
==============================================================*/
.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: rgba(255, 255, 255, 0.15);
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--dark-green);
}

/* Enhanced Skills & Tools Section */
.skills-tools {
  margin-top: 60px;
  margin-bottom: 60px;
}

.skills-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(9, 32, 58, 0.8);
  border: 2px solid rgba(18, 214, 64, 0.2);
  border-radius: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  outline: none;
}

.tab-btn i {
  font-size: 18px;
}

.tab-btn:hover {
  background: rgba(18, 214, 64, 0.1);
  border-color: rgba(18, 214, 64, 0.4);
  color: var(--primary-green);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  border-color: var(--primary-green);
  color: #fff;
  box-shadow: 0 4px 15px rgba(18, 214, 64, 0.3);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.skill-card {
  background: linear-gradient(135deg, rgba(9, 32, 58, 0.95) 0%, rgba(4, 43, 86, 0.95) 100%);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(18, 214, 64, 0.1);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(18, 214, 64, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 214, 64, 0.4);
  box-shadow: 0 12px 40px rgba(18, 214, 64, 0.2);
}

.skill-card.hidden {
  display: none;
}

.skill-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(18, 214, 64, 0.1) 0%, rgba(28, 125, 50, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.skill-card:hover .skill-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(18, 214, 64, 0.2) 0%, rgba(28, 125, 50, 0.2) 100%);
}

.skill-icon-wrapper i {
  font-size: 40px;
  color: var(--primary-green);
  z-index: 2;
  transition: var(--transition-fast);
}

.skill-card:hover .skill-icon-wrapper i {
  transform: scale(1.1);
}

.skill-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(18, 214, 64, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.skill-card:hover .skill-glow {
  opacity: 1;
  animation: pulse-glow 2s ease-in-out infinite;
}

.skill-content {
  flex: 1;
}

.skill-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.skill-card:hover .skill-content h3 {
  color: var(--primary-green);
}

.skill-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.skill-level {
  display: flex;
  align-items: center;
  gap: 12px;
}

.level-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.level-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--dark-green) 0%, var(--primary-green) 100%);
  border-radius: 10px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.level-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer-level 2s infinite;
}

.level-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.skill-link {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(18, 214, 64, 0.1);
  border: 1px solid rgba(18, 214, 64, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 16px;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-fast);
}

.skill-card:hover .skill-link {
  opacity: 1;
  transform: scale(1);
}

.skill-link:hover {
  background: rgba(18, 214, 64, 0.2);
  border-color: var(--primary-green);
  transform: scale(1.1);
}

/* Skills Summary */
.skills-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(18, 214, 64, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(18, 214, 64, 0.1);
  transition: var(--transition-fast);
}

.summary-item:hover {
  background: rgba(18, 214, 64, 0.08);
  border-color: rgba(18, 214, 64, 0.3);
  transform: translateY(-3px);
}

.summary-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(18, 214, 64, 0.3);
}

.summary-icon i {
  font-size: 24px;
  color: #fff;
}

.summary-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.summary-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/*==============================================================
# INTERESTS
==============================================================*/
.interests .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--bg-navy);
  border-radius: 12px;
  transition: ease-in-out 0.3s;
}

.interests .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.interests .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  color: #fff;
}

.interests .icon-box:hover {
  background: var(--bg-deep-navy);
}

/*==============================================================
# TESTIMONIALS
==============================================================*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.12);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #fff;
}

.testimonials .testimonial-item h3 a {
  color: white;
}

.testimonials .testimonial-item h3 a:hover {
  color: var(--primary-green);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.25);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 0;
  padding: 20px 20px 60px 20px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  border-radius: 6px;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #18d26e;
}

.swiper-slide {
  transition: var(--transition-medium);
}

.swiper-slide-active {
  transform: scale(1.05);
}

/*==============================================================
# RESUME
==============================================================*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: var(--dark-green);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--darker-green);
  border: 2px solid var(--darker-green);
}

/*==============================================================
# EDUCATION
==============================================================*/
.education {
  padding: 40px 0;
}

.education .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: -10px;
  margin-bottom: 50px;
}

.education .icon-box {
  text-align: center;
  background: var(--bg-navy);
  padding: 0px 0px 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 12px;
  display: inline-block;
}

.education .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--dark-green);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.education .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.education .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.education .icon-box h5 {
  margin-top: 10px;
  padding: 0px 10px;
  text-align: left;
  color: white;
}

.education .icon-box h5 a {
  color: #fff;
}

.education .icon-box h5 a:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

.education .icon-box h6 {
  padding: 0px 10px;
  text-align: left;
  color: white;
}

.education .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  padding: 0px 10px;
  text-align: left;
  color: white;
}

.education .icon-box:hover {
  background: var(--bg-darker-navy);
  border-color: var(--dark-green);
}

.education .icon-box:hover .icon {
  background: #fff;
}

.education .icon-box:hover .icon i {
  color: var(--dark-green);
}

.education .icon-box:hover .icon::before {
  background: var(--light-green);
}

/* Education Section Headers */
.education-header,
.certifications-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(18, 214, 64, 0.1) 0%, rgba(28, 125, 50, 0.1) 100%);
  border-left: 4px solid var(--primary-green);
  border-radius: 0 12px 12px 0;
}

.education-header i,
.certifications-header i {
  font-size: 32px;
  color: var(--primary-green);
}

.education-header h3,
.certifications-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.education-section {
  margin-bottom: 60px;
}

.education-card {
  background: linear-gradient(135deg, rgba(9, 32, 58, 0.95) 0%, rgba(4, 43, 86, 0.95) 100%);
  border-radius: 16px;
  padding: 0;
  border: 1px solid rgba(18, 214, 64, 0.15);
  overflow: hidden;
  transition: var(--transition-medium);
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.education-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 214, 64, 0.4);
  box-shadow: var(--shadow-glow-strong);
}

.education-badge {
  width: 100px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  border-radius: 16px 0 0 16px;
}

.education-badge i {
  font-size: 48px;
  color: #fff;
}

.education-content {
  flex: 1;
  padding: 30px 30px 30px 0;
}

.education-header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.education-details h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}

.education-details h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.education-details h5 a {
  color: var(--primary-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.education-details h5 a:hover {
  color: #1eff5c;
  gap: 10px;
}

.education-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.meta-item i {
  font-size: 16px;
  color: var(--primary-green);
}

.meta-item.gpa {
  font-weight: 600;
  color: var(--primary-green);
}

.status-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-badge.ongoing {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

.education-description {
  margin-bottom: 20px;
}

.education-description p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.education-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlight-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(18, 214, 64, 0.1);
  border: 1px solid rgba(18, 214, 64, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-green);
  transition: var(--transition-fast);
}

.highlight-tag:hover {
  background: rgba(18, 214, 64, 0.2);
  border-color: rgba(18, 214, 64, 0.4);
  transform: translateY(-2px);
}

.highlight-tag i {
  font-size: 16px;
}

/* Certifications */
.certifications-section {
  margin-bottom: 60px;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.certificate-card {
  background: linear-gradient(135deg, rgba(9, 32, 58, 0.95) 0%, rgba(4, 43, 86, 0.95) 100%);
  border-radius: 16px;
  border: 1px solid rgba(18, 214, 64, 0.15);
  overflow: hidden;
  transition: var(--transition-medium);
  position: relative;
}

.certificate-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 214, 64, 0.4);
  box-shadow: 0 20px 50px rgba(18, 214, 64, 0.2);
}

.certificate-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(18, 214, 64, 0.4);
  z-index: 10;
  animation: float-ribbon 3s ease-in-out infinite;
}

.certificate-ribbon i {
  font-size: 24px;
  color: #fff;
}

.certificate-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

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

.certificate-card:hover .certificate-image img {
  transform: scale(1.05);
}

.certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.overlay-buttons {
  display: flex;
  gap: 15px;
}

.btn-preview,
.btn-verify {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(18, 214, 64, 0.2);
  border: 2px solid var(--primary-green);
  border-radius: 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-preview:hover,
.btn-verify:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(18, 214, 64, 0.4);
}

.btn-preview i,
.btn-verify i {
  font-size: 18px;
}

.certificate-content {
  padding: 25px;
}

.certificate-provider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.provider-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.provider-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.certificate-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.certificate-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.certificate-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-date,
.meta-id {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.meta-date i,
.meta-id i {
  font-size: 16px;
  color: var(--primary-green);
}

.certificate-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.skill-badge {
  padding: 6px 12px;
  background: rgba(18, 214, 64, 0.1);
  border: 1px solid rgba(18, 214, 64, 0.2);
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-green);
}

.certificate-actions {
  display: flex;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(18, 214, 64, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 214, 64, 0.4);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(18, 214, 64, 0.3);
  color: var(--primary-green);
}

.certification-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(18, 214, 64, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(18, 214, 64, 0.15);
  transition: var(--transition-fast);
}

.stat-card:hover {
  background: rgba(18, 214, 64, 0.1);
  border-color: rgba(18, 214, 64, 0.3);
  transform: translateY(-3px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(18, 214, 64, 0.3);
}

.stat-icon i {
  font-size: 28px;
  color: #fff;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*==============================================================
# EXPERIENCE
==============================================================*/
.experience {
  padding: 40px 0;
}

.experience .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: -10px;
  margin-bottom: 50px;
}

.experience .icon-box {
  text-align: center;
  background: var(--bg-navy);
  padding: 40px 40px;
  border-radius: 12px;
  transition: all ease-in-out 0.3s;
}

.experience .icon-box img {
  border-radius: 12px;
}

.experience .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--dark-green);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.experience .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.experience .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.experience .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  text-align: left;
  color: white;
}

.experience .icon-box h4 a {
  color: #fff;
}

.experience .icon-box h5 {
  text-align: left;
  color: white;
}

.experience .icon-box h6 {
  text-align: left;
  color: white;
}

.experience .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: justify;
  color: white;
}

.experience .icon-box ul {
  font-size: 14px;
  text-align: left;
  color: white;
}

.experience .icon-box:hover {
  background: var(--bg-darker-navy);
  border-color: var(--dark-green);
}

.experience .icon-box:hover .icon {
  background: #fff;
}

.experience .icon-box:hover .icon i {
  color: var(--dark-green);
}

.experience .icon-box:hover .icon::before {
  background: var(--light-green);
}

.experience .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: var(--primary-green);
}

/* Enhanced Experience Timeline */
.experience-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-section {
  margin-bottom: 60px;
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(18, 214, 64, 0.1) 0%, rgba(28, 125, 50, 0.1) 100%);
  border-left: 4px solid var(--primary-green);
  border-radius: 0 12px 12px 0;
}

.timeline-header i {
  font-size: 32px;
  color: var(--primary-green);
}

.timeline-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  border: 4px solid rgba(9, 32, 58, 1);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(18, 214, 64, 0.2);
  z-index: 2;
  animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 30px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(180deg, rgba(18, 214, 64, 0.3) 0%, transparent 100%);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-date {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.date-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(18, 214, 64, 0.15);
  border: 1px solid rgba(18, 214, 64, 0.3);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-green);
  letter-spacing: 0.5px;
}

.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.duration-badge i {
  font-size: 14px;
}

.experience-card {
  background: linear-gradient(135deg, rgba(9, 32, 58, 0.95) 0%, rgba(4, 43, 86, 0.95) 100%);
  border-radius: 16px;
  border: 1px solid rgba(18, 214, 64, 0.15);
  overflow: hidden;
  transition: var(--transition-medium);
}

.experience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 214, 64, 0.4);
  box-shadow: var(--shadow-glow-strong);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  background: rgba(18, 214, 64, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.company-info {
  display: flex;
  gap: 20px;
  flex: 1;
}

.company-logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(18, 214, 64, 0.3);
}

.company-logo.org-logo {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.company-logo i {
  font-size: 36px;
  color: #fff;
}

.company-details {
  flex: 1;
}

.job-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.company-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.company-name a {
  color: var(--primary-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.company-name a:hover {
  color: #1eff5c;
  gap: 10px;
}

.company-name i {
  font-size: 16px;
}

.location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.location i {
  font-size: 16px;
}

.employment-type {
  flex-shrink: 0;
}

.type-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.type-badge.full-time {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.type-badge.volunteer {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.card-body {
  padding: 30px;
}

.about-org {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid rgba(59, 130, 246, 0.5);
  border-radius: 8px;
}

.about-org p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.responsibilities {
  margin-bottom: 25px;
}

.responsibilities h6,
.tech-stack h6 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.responsibilities h6 i,
.tech-stack h6 i {
  font-size: 20px;
}

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

.responsibilities ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.responsibilities ul li:last-child {
  border-bottom: none;
}

.responsibilities ul li i {
  font-size: 18px;
  color: var(--primary-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.tech-stack {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.tech-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(18, 214, 64, 0.1);
  border: 1px solid rgba(18, 214, 64, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-green);
  transition: var(--transition-fast);
}

.tech-tag:hover {
  background: rgba(18, 214, 64, 0.2);
  border-color: rgba(18, 214, 64, 0.4);
  transform: translateY(-2px);
}

.experience-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(18, 214, 64, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(18, 214, 64, 0.1);
  transition: var(--transition-fast);
}

.summary-card:hover {
  background: rgba(18, 214, 64, 0.08);
  border-color: rgba(18, 214, 64, 0.3);
  transform: translateY(-3px);
}

/*==============================================================
# PORTFOLIO
==============================================================*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
  position: absolute;
  left: 370px;
  top: 0px;
  animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 3px 10px 3px;
  transition: var(--transition-fast);
  border-radius: 4px;
  position: relative;
}

.portfolio #portfolio-flters li::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-green);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: var(--dark-green);
}

.portfolio #portfolio-flters li:hover::before,
.portfolio #portfolio-flters li.filter-active::before {
  width: 80%;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--ultra-light-green);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*==============================================================
# PORTFOLIO DETAILS
==============================================================*/
.portfolio-details {
  background: var(--bg-deep-navy);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
}

.portfolio-details .container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.portfolio-details .portfolio-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-info {
  padding-top: 45px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-info ul li + li a {
  color: white;
}

.portfolio-details .portfolio-info ul li + li a:hover {
  color: var(--primary-green);
}

.portfolio-details .portfolio-info p {
  font-size: 15px;
  padding: 15px 0 0 0;
  text-align: justify;
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #18d26e;
}

/*==============================================================
# CONTACT
==============================================================*/
.contact .info-box {
  color: #444444;
  padding: 20px;
  padding-bottom: 35px;
  width: 100%;
  border-radius: 12px;
  background: var(--bg-navy);
}

.contact .info-box i.bx {
  font-size: 24px;
  color: #dee2e6;
  border-radius: 50%;
  padding: 14px;
  float: left;
  background: rgba(255, 255, 255, 0.1);
}

.contact .info-box h3 {
  font-size: 20px;
  color: var(--brand-green);
  font-weight: 700;
  margin: 10px 0 8px 68px;
}

.contact .info-box p {
  padding: 0;
  color: #fff;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 68px;
}

.contact .info-box .social-links {
  margin: 5px 0 0 68px;
}

.contact .info-box .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  margin-right: 8px;
  transition: 0.3s;
}

.contact .info-box .social-links a:hover {
  color: var(--primary-green);
}

.contact .php-email-form {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  background: var(--dark-green);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 15px;
  animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--dark-green);
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  transition: 0.3s;
  color: #fff;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  background-color: rgba(255, 255, 255, 0.11);
}

.contact .php-email-form input::-webkit-input-placeholder,
.contact .php-email-form textarea::-webkit-input-placeholder,
.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder,
.contact .php-email-form input:-ms-input-placeholder,
.contact .php-email-form textarea:-ms-input-placeholder,
.contact .php-email-form input::-ms-input-placeholder,
.contact .php-email-form textarea::-ms-input-placeholder,
.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--dark-green);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--success-green);
}

/*==============================================================
# MBTI SECTION
==============================================================*/
.mbti-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.mbti-card {
  background: linear-gradient(135deg, rgba(9, 32, 58, 0.95) 0%, rgba(4, 43, 86, 0.95) 100%);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(18, 214, 64, 0.1);
  transition: var(--transition-medium);
  animation: fadeInUp 0.8s ease-out;
}

.mbti-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(18, 214, 64, 0.15);
  border-color: rgba(18, 214, 64, 0.3);
}

.mbti-header {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mbti-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.mbti-badge {
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}

.mbti-type {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 5px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.mbti-variant {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mbti-icon {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.mbti-content {
  padding: 40px;
}

.mbti-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.mbti-tagline {
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 3px solid var(--dark-green);
}

.mbti-traits {
  margin: 30px 0;
}

.trait-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}

.trait-row:last-child {
  margin-bottom: 0;
}

.trait-item.full-width {
  grid-column: 1 / -1;
}

.trait-bar {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  height: 45px;
  position: relative;
}

.trait-fill {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-radius: 12px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.trait-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

.trait-fill.introverted {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.trait-fill.intuitive {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.trait-fill.thinking {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.trait-fill.judging {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.trait-fill.assertive {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
}

.trait-fill.turbulent {
  background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

.trait-label {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trait-percent {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.mbti-strengths {
  margin: 35px 0;
  padding: 25px;
  background: rgba(28, 125, 50, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(28, 125, 50, 0.2);
}

.mbti-strengths h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mbti-strengths h4 i {
  font-size: 24px;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.strength-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(18, 214, 64, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(18, 214, 64, 0.2);
  transition: var(--transition-fast);
}

.strength-item:hover {
  background: rgba(18, 214, 64, 0.15);
  transform: translateX(5px);
  border-color: rgba(18, 214, 64, 0.4);
}

.strength-item i {
  font-size: 22px;
  color: var(--primary-green);
}

.strength-item span {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.mbti-description {
  margin: 30px 0;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border-left: 4px solid var(--dark-green);
}

.mbti-description p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  position: relative;
  padding-left: 35px;
}

.mbti-description i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 24px;
  color: var(--dark-green);
}

.mbti-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mbti-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(18, 214, 64, 0.3);
}

.mbti-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 214, 64, 0.4);
  color: #fff;
  text-decoration: none;
}

.mbti-link i {
  font-size: 18px;
}

/*==============================================================
# CREDITS
==============================================================*/
.credits {
  position: fixed;
  text-align: center;
  bottom: 15px;
  font-size: 13px;
  color: #fff;
}

.credits a {
  color: var(--dark-green);
  transition: 0.3s;
}

.credits a:hover {
  color: #fff;
}

/*==============================================================
# RESPONSIVE MEDIA QUERIES (Consolidated)
==============================================================*/

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
  #header h1 { font-size: 30px; }
  #header h2 { font-size: 20px; margin-top: 0px; color: white; }
  #header h2 span { color: var(--primary-green); text-decoration: none; }
  #header .social-links { margin-top: 20px; }
  #header .container { display: flex; flex-direction: column; align-items: center; }

  .about-card { padding: 40px 30px; }
  .profile-image-wrapper { max-width: 250px; margin-bottom: 30px; }
  .about-content { padding: 0; }
  .about-name { font-size: 28px; }
  .about-highlights { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 15px; }

  .skills-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
  .skills-summary { grid-template-columns: 1fr; }

  .timeline-item { padding-left: 50px; }
  .card-header { flex-direction: column; gap: 20px; }
  .employment-type { align-self: flex-start; }

  .education-card { flex-direction: column; }
  .education-badge { width: 100%; padding: 30px 0; border-radius: 16px 16px 0 0; }
  .education-content { padding: 30px; }
  .certifications-grid { grid-template-columns: 1fr; }

  .portfolio-details .portfolio-info { padding-top: 20px; }

  .contact .info-box .social-links a { font-size: 16px; }

  .mbti-header { flex-direction: column; gap: 20px; text-align: center; padding: 30px 20px; }
  .mbti-type { font-size: 36px; letter-spacing: 3px; }
  .mbti-variant { font-size: 18px; }
  .mbti-icon { font-size: 60px; }
  .mbti-content { padding: 25px 20px; }
  .mbti-content h3 { font-size: 26px; }
  .mbti-tagline { font-size: 16px; }
  .trait-row { grid-template-columns: 1fr; gap: 12px; }
  .strengths-grid { grid-template-columns: 1fr; }
  .mbti-description p { font-size: 14px; padding-left: 30px; }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
  #header.header-top { height: 60px; }
  #header.header-top h1 { font-size: 26px; margin-top: 28px; }
  
  section { top: 120px; }
  section.section-show { top: 80px; }

  .about-card { padding: 30px 20px; }
  .profile-image-wrapper { max-width: 200px; }
  .about-name { font-size: 24px; }
  .role-text { font-size: 14px; }
  .about-description p { font-size: 14px; }

  .skills-tabs { gap: 10px; }
  .tab-btn { padding: 10px 18px; font-size: 13px; }
  .tab-btn span { display: none; }
  .tab-btn i { font-size: 20px; }
  .skills-grid { grid-template-columns: 1fr; }
  .skill-card { padding: 25px; }

  .timeline-header { padding: 15px 20px; }
  .timeline-header i { font-size: 24px; }
  .timeline-header h3 { font-size: 20px; }
  .timeline-item { padding-left: 40px; }
  .timeline-dot { width: 16px; height: 16px; left: -2px; }
  .timeline-item::before { left: 5px; }
  .company-info { flex-direction: column; gap: 15px; }
  .company-logo { width: 60px; height: 60px; }
  .company-logo i { font-size: 30px; }
  .card-header, .card-body { padding: 20px; }
  .job-title { font-size: 19px; }
  .company-name { font-size: 16px; }
  .experience-summary { grid-template-columns: 1fr; }

  .education-header, .certifications-header { padding: 15px 20px; }
  .education-header-info { flex-direction: column; gap: 15px; }
  .certificate-actions { flex-direction: column; }
  .certification-stats { grid-template-columns: 1fr; }
}

/* Small devices (phones, 576px and up) */
@media (max-width: 576px) {
  .skill-icon-wrapper { width: 60px; height: 60px; }
  .skill-icon-wrapper i { font-size: 32px; }
  .skill-content h3 { font-size: 18px; }
}

/* Animation stagger for education cards */
.education .icon-box:nth-child(1) { animation-delay: 0.1s; }
.education .icon-box:nth-child(2) { animation-delay: 0.2s; }
.education .icon-box:nth-child(3) { animation-delay: 0.3s; }

/* Logo animation */
@media (prefers-reduced-motion: no-preference) {
  a:nth-of-type(2) .logo {
    animation: logo-spin infinite 20s linear;
  }
}