/* Enhanced Contact Method Styles */
a.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(24, 24, 27, 0.7);
  border: 1.5px solid rgba(0, 212, 255, 0.12);
  border-radius: 16px;
  padding: 22px 28px;
  margin-bottom: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: pointer;
}
a.contact-method:hover {
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 6px 32px rgba(0,212,255,0.10), 0 2px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px) scale(1.025);
}
.contact-method .method-icon {
  font-size: 2.1rem;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.10);
  border-radius: 12px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
a.contact-method:hover .method-icon {
  background: #00d4ff;
  color: #fff;
}
.contact-method .method-content h4 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #4f8cff;
}
.contact-method .method-content span {
  font-size: 0.98rem;
  color: #e4e4e7;
  word-break: break-all;
}
@media (max-width: 600px) {
  a.contact-method {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 14px;
  }
  .contact-method .method-icon {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}
/* Mobile App Projects Flex Layout */
.mobile-app-projects {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.mobile-app-projects .project-card {
  flex: 1 1 45%;
  max-width: 45%;
  min-width: 320px;
  margin: 0;
}

@media (max-width: 900px) {
  .mobile-app-projects {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .mobile-app-projects .project-card {
    max-width: 100%;
    width: 100%;
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Particle Background */
#particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 10%;
  right: 30%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #e4e4e7;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Make all images scale within their containers on small screens */
img {
  max-width: 100%;
  height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #18181b;
}

::-webkit-scrollbar-thumb {
  background: #3f3f46;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #52525b;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(30px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-pulse {
  width: 8px;
  height: 8px;
  background: #00d4ff;
  border-radius: 50%;
  animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-logo:hover::after {
  transform: scaleX(1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: #a1a1aa;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #00d4ff;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: #e4e4e7;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  padding: 120px 0 60px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 10%;
  right: 30%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  z-index: 2;
}

.hero-greeting {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #a1a1aa;
  font-weight: 500;
}

.wave {
  font-size: 1.5rem;
  animation: wave 2s infinite;
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(20deg); }
  75% { transform: rotate(-15deg); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-roles {
  margin-bottom: 30px;
}

.role-text {
  font-size: 1.3rem;
  color: #7c3aed;
  font-weight: 600;
  background: rgba(124, 58, 237, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: inline-block;
}

.gradient-text {
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease-in-out infinite;
}

.cursor {
  color: #00d4ff;
  animation: blink 1s infinite;
  font-weight: 300;
}

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

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #a1a1aa;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-description {
  font-size: 1.2rem;
  color: #71717a;
  margin-bottom: 50px;
  line-height: 1.8;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-primary:hover .btn-glow {
  opacity: 0.3;
}

.btn-secondary {
  background: transparent;
  color: #e4e4e7;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(24, 24, 27, 0.3);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00d4ff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #a1a1aa;
  font-weight: 500;
}

/* Code Animation */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.terminal-container {
  background: rgba(24, 24, 27, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.terminal-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.6);
}

.terminal-header {
  background: rgba(39, 39, 42, 0.9);
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.btn-close, .btn-minimize, .btn-maximize {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef4444;
}

.btn-minimize {
  background: #f59e0b;
}

.btn-maximize {
  background: #10b981;
}

.terminal-title {
  color: #a1a1aa;
  font-size: 0.9rem;
  font-weight: 500;
}

.terminal-body {
  padding: 30px;
  background: rgba(24, 24, 27, 0.8);
}

.code-animation {
  background: rgba(24, 24, 27, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  line-height: 1.8;
  min-width: 400px;
  backdrop-filter: blur(20px);
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.code-animation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: rgba(39, 39, 42, 0.8);
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-animation::after {
  content: '⚫ 🟡 🟢';
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 12px;
  z-index: 1;
}

.code-line {
  opacity: 0;
  animation: typewriter 0.8s ease-out forwards;
  margin: 5px 0;
  position: relative;
}

.code-line:nth-child(1) { animation-delay: 1s; }
.code-line:nth-child(2) { animation-delay: 2s; }
.code-line:nth-child(3) { animation-delay: 3s; }
.code-line:nth-child(4) { animation-delay: 4s; }
.code-line:nth-child(5) { animation-delay: 5s; }

.indent {
  padding-left: 20px;
}

.keyword {
  color: #7c3aed;
  font-weight: 600;
}

.variable {
  color: #00d4ff;
}

.property {
  color: #ec4899;
}

.string {
  color: #10b981;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #71717a;
  font-size: 14px;
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid #71717a;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: #71717a;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #71717a;
  border-bottom: 2px solid #71717a;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Sections */
section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 100px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* About Section */
.about {
  background: linear-gradient(135deg, rgba(24, 24, 27, 0.5) 0%, rgba(39, 39, 42, 0.3) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.text-block {
  margin-bottom: 40px;
}

.text-block h3 {
  color: #00d4ff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-block h3::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  border-radius: 2px;
}

.about-intro {
  color: #e4e4e7;
  margin-bottom: 30px;
  font-size: 1.2rem;
  font-weight: 500;
}

.about-details {
  color: #a1a1aa;
  margin-bottom: 30px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(39, 39, 42, 0.3);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(5px);
}

.service-item i {
  color: #00d4ff;
  font-size: 1.2rem;
  width: 20px;
}

.service-item span {
  color: #e4e4e7;
  font-weight: 500;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.profile-card {
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  max-width: 300px;
}

.profile-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.profile-image {
  position: relative;
  margin-bottom: 20px;
}

.image-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 3rem;
  color: rgba(0, 212, 255, 0.6);
}

.profile-ring {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border: 3px solid transparent;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff, #7c3aed) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

.profile-info h4 {
  color: #e4e4e7;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.profile-info p {
  color: #a1a1aa;
  margin-bottom: 20px;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.profile-stat {
  text-align: center;
}

.profile-stat strong {
  display: block;
  color: #00d4ff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.profile-stat span {
  color: #71717a;
  font-size: 0.8rem;
}

.profile-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid transparent;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  background-clip: padding-box;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.profile-photo:hover {
  transform: scale(1.05);
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
}

.skill-category {
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.skill-category:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.skill-category h3 {
  color: #00d4ff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(39, 39, 42, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.skill-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
}

.skill-item i {
  font-size: 2rem;
  color: #00d4ff;
  transition: all 0.3s ease;
}

.skill-item:hover i {
  transform: scale(1.1);
  color: #7c3aed;
}

.skill-item span {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: #a1a1aa;
}

.skill-progress {
  width: 100%;
  margin-top: 15px;
}

.skill-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.skill-info i {
  font-size: 1.5rem;
  color: #00d4ff;
  width: 25px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s ease-out;
}

.skill-percentage {
  color: #00d4ff;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: right;
}

/* Education Section */
.education {
  background: linear-gradient(135deg, rgba(24, 24, 27, 0.5) 0%, rgba(39, 39, 42, 0.3) 100%);
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 40px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.education-card {
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  position: relative;
  height: fit-content;
  min-height: 400px;
}

.education-card.current {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
}

.education-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.card-content {
  padding: 25px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.education-logo {
  position: relative;
  z-index: 2;
  margin-bottom: 5px;
}

.logo-container {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.logo-container.sliit {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-color: rgba(59, 130, 246, 0.4);
}

.logo-container.sjvc {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-color: rgba(239, 68, 68, 0.4);
}

.logo-container.bwea {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  border-color: rgba(16, 185, 129, 0.4);
}

.logo-container.aat {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  border-color: rgba(168, 85, 247, 0.4);
  color: white;
  font-size: 2.2rem;
}

.logo-container.profile {
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  border-color: rgba(0, 212, 255, 0.4);
  cursor: pointer;
}

.logo-container:hover {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}

.logo-container.profile:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.4);
}

.logo-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-container:hover::before {
  opacity: 1;
}

.logo-container::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-container:hover::after {
  opacity: 1;
}

.institution-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  transition: all 0.4s ease;
  filter: brightness(1) contrast(1);
  border-radius: 50%;
}

.logo-container:hover .institution-logo {
  transform: scale(1.1);
  filter: brightness(1.2) contrast(1.1);
}

.logo-container.aat i {
  transition: all 0.4s ease;
  font-size: 2.5rem;
}

.logo-container:hover .aat i {
  transform: scale(1.2);
  color: #ffffff;
}

.logo-container.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.logo-container.profile:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.05);
}

.education-meta {
  text-align: right;
}

.education-date {
  color: #00d4ff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.education-status {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.education-card:not(.current) .education-status {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  border-color: rgba(0, 212, 255, 0.3);
}

.education-degree {
  margin-bottom: 20px;
  flex-grow: 1;
}

.education-degree h3 {
  color: #00d4ff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.institution {
  color: #e4e4e7;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.location {
  color: #71717a;
  font-size: 0.9rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.location i {
  color: #00d4ff;
  font-size: 0.8rem;
}

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

.progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
  flex-direction: row;
}

.progress-text {
  color: #a1a1aa;
  font-size: 0.9rem;
  font-weight: 500;
  flex: 1;
}

.progress-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.progress-bar-container {
  width: 120px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
  border-radius: 4px;
  width: 75%;
  transition: width 1.5s ease-in-out;
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-percentage {
  color: #00d4ff;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.progress-details {
  background: rgba(39, 39, 42, 0.5);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-details p {
  margin: 4px 0;
  font-size: 0.85rem;
  color: #a1a1aa;
}

.progress-details strong {
  color: #e4e4e7;
}

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

.education-results h4 {
  color: #e4e4e7;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.grade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 15px;
}

.grade-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(39, 39, 42, 0.5);
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.grade-item:hover {
  background: rgba(39, 39, 42, 0.7);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.subject {
  color: #e4e4e7;
  font-size: 0.8rem;
  font-weight: 500;
}

.grade {
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  min-width: 25px;
  text-align: center;
}

.grade-a {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.grade-b {
  background: rgba(34, 197, 94, 0.2);
  color: #10b981;
}

.grade-c {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.results-summary {
  background: rgba(39, 39, 42, 0.3);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.results-summary p {
  margin: 4px 0;
  font-size: 0.8rem;
  color: #a1a1aa;
}

.results-summary strong {
  color: #e4e4e7;
}

.education-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.highlight:hover {
  background: rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
}

.highlight i {
  font-size: 0.8rem;
}

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

.achievement-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.achievement-details {
  background: rgba(39, 39, 42, 0.3);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.achievement-details p {
  margin: 4px 0;
  font-size: 0.85rem;
  color: #a1a1aa;
}

.achievement-details strong {
  color: #e4e4e7;
}

.education-achievements {
  margin-top: 20px;
}

.education-achievements h4 {
  color: #e4e4e7;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.education-achievements ul {
  list-style: none;
  padding: 0;
}

.education-achievements li {
  color: #a1a1aa;
  font-size: 0.85rem;
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.education-achievements li::before {
  content: '•';
  color: #00d4ff;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

/* Enhanced education card animations */
.education-card {
  animation: slideInFromBottom 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.education-card:nth-child(1) { animation-delay: 0.1s; }
.education-card:nth-child(2) { animation-delay: 0.3s; }
.education-card:nth-child(3) { animation-delay: 0.5s; }
.education-card:nth-child(4) { animation-delay: 0.7s; }

@keyframes slideInFromBottom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced progress circle animation */
.progress-circle {
  animation: progressAppear 1s ease-out forwards;
  opacity: 0;
  transform: scale(0.8);
}

@keyframes progressAppear {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Enhanced grade items */
.grade-item {
  animation: gradeItemAppear 0.6s ease-out forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.grade-item:nth-child(1) { animation-delay: 0.1s; }
.grade-item:nth-child(2) { animation-delay: 0.2s; }
.grade-item:nth-child(3) { animation-delay: 0.3s; }
.grade-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes gradeItemAppear {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced highlights */
.highlight {
  animation: highlightAppear 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.highlight:nth-child(1) { animation-delay: 0.1s; }
.highlight:nth-child(2) { animation-delay: 0.2s; }
.highlight:nth-child(3) { animation-delay: 0.3s; }

@keyframes highlightAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Education Section */
@media (max-width: 1200px) {
  .education-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
  }
}

@media (max-width: 1024px) {
  .education-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1000px;
  }
  
  .education {
    padding: 60px 0;
  }

  .logo-container {
    width: 80px;
    height: 80px;
  }

  .logo-container.aat i {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .education {
    padding: 50px 0;
    min-height: auto;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
    max-width: 600px;
  }

  .education-card {
    margin: 0 15px;
    min-height: 350px;
  }

  .card-content {
    padding: 20px;
  }

  .education-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .education-meta {
    text-align: center;
  }

  .education-logo {
    margin-bottom: 10px;
  }

  .logo-container {
    width: 75px;
    height: 75px;
  }

  .progress-info {
    flex-direction: row;
    text-align: left;
    gap: 15px;
  }

  .progress-container {
    align-items: center;
  }

  .progress-bar-container {
    width: 100px;
  }

  .grade-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .education-highlights {
    justify-content: center;
  }

  .highlight {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .education {
    padding: 40px 0;
  }

  .education-grid {
    margin-top: 25px;
    gap: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .education-card {
    margin: 0;
    min-height: 320px;
  }

  .card-content {
    padding: 18px;
  }

  .education-degree h3 {
    font-size: 1.1rem;
  }

  .grade-grid {
    grid-template-columns: 1fr;
  }

  .progress-circle {
    width: 60px;
    height: 60px;
  }

  .progress-circle::before {
    width: 40px;
    height: 40px;
  }

  .progress-number {
    font-size: 0.9rem;
  }

  .logo-container {
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .education-date {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  .education-status {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .highlight {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.project-card {
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.project-card.featured {
  border-color: rgba(0, 212, 255, 0.5);
  background: rgba(0, 212, 255, 0.05);
}

.project-image {
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-placeholder {
  font-size: 4rem;
  color: rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.project-card:hover .project-placeholder {
  transform: scale(1.1);
  color: rgba(0, 212, 255, 0.6);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

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

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

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

.project-link {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.project-link:hover {
  background: rgba(0, 212, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.project-link span {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-link:hover span {
  opacity: 1;
}

.project-content {
  padding: 30px;
}

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

.tag {
  background: rgba(124, 58, 237, 0.2);
  color: #7c3aed;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-title {
  color: #e4e4e7;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.project-description {
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.feature i {
  font-size: 0.9rem;
}

.project-status {
  position: absolute;
  top: 15px;
  right: 15px;
}

.status-badge {
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, rgba(24, 24, 27, 0.5) 0%, rgba(39, 39, 42, 0.3) 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h3 {
  color: #00d4ff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info p {
  color: #a1a1aa;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(5px);
}

.contact-method i {
  font-size: 1.5rem;
  color: #00d4ff;
  width: 30px;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
  background: rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.4);
  transform: scale(1.1);
}

.contact-intro {
  margin-bottom: 40px;
}

.contact-intro h3 {
  color: #00d4ff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-intro p {
  color: #a1a1aa;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-method h4 {
  color: #e4e4e7;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-method a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method a:hover {
  color: #00d4ff;
}

.contact-form {
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(20px);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(39, 39, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  color: #e4e4e7;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4ff;
  background: rgba(39, 39, 42, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.input-focus {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  transition: width 0.3s ease;
}

.form-group input:focus ~ .input-focus,
.form-group textarea:focus ~ .input-focus {
  width: 100%;
}

.form-group label {
  display: block;
  color: #e4e4e7;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  color: #00d4ff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-header p {
  color: #a1a1aa;
  font-size: 0.9rem;
}

.form-submit {
  width: 100%;
  margin-top: 20px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #71717a;
}

/* Footer */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-quote {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #71717a;
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 15px;
}

.footer-quote i {
  color: #00d4ff;
  font-size: 1rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #a1a1aa;
  margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: #e4e4e7;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00d4ff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a1a1aa;
}

.contact-item i {
  color: #00d4ff;
  width: 20px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  transform: translateY(-3px);
}

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

.footer-separator {
  height: 1px;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
  margin-bottom: 30px;
}

.footer-bottom p {
  color: #71717a;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .code-animation {
    min-width: auto;
    width: 100%;
    font-size: 12px;
    padding: 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .education-card {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .education-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-content {
    width: 100%;
    margin: 0;
    margin-top: 20px;
  }

  .education-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .education-meta {
    text-align: center;
    margin-top: 15px;
  }

  .education-logo {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .logo-container {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skill-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .stat {
    min-width: 150px;
  }

  .education-card:nth-child(odd),
  .education-card:nth-child(even) {
    flex-direction: column;
  }

  .card-content {
    width: 100%;
    margin: 0;
    margin-top: 30px;
  }

  .education-logo {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .logo-container {
    margin: 0 auto;
  }
}

/* Loading Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Smooth transitions for all interactive elements */
* {
  transition: all 0.3s ease;
}

/* Optimize animations for better performance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Glowing effect for interactive elements */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  }
}

.glow {
  animation: glow 2s ease-in-out infinite;
}

/* Enhanced hover effects */
.skill-category:hover,
.education-card:hover,
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

/* Selection styles */
::selection {
  background: rgba(0, 212, 255, 0.3);
  color: #e4e4e7;
}

.education-card.profile-card {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.05);
  position: relative;
}

.education-card.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.education-card.profile-card:hover::before {
  opacity: 1;
}

.education-card.profile-card:hover {
  border-color: rgba(0, 212, 255, 0.6);
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 212, 255, 0.2);
}