* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --accent-color: #f093fb;
  --text-color: #333;
  --text-light: #666;
  --bg-color: #f8fafc;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}
#about .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.nav-logo {
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

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

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: var(--white);
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

.highlight {
  background: linear-gradient(45deg, var(--accent-color), #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}
.arrow {
	position: relative;
  margin-left: 80%;
  width: 100px;
}

.arrow .curve {
	border: 2px solid #ffffff88;
	border-color: transparent transparent transparent #ffffff88;
	height: 180px;
	width: 1200px;
	border-radius: 0 0 0 720px;
}

.arrow .point {
	position: absolute;
	left: 53px;
	top: 125px;
}

.arrow .point:before, .arrow .point:after {
	border: 1px solid #ffffff88;
	height: 25px;
	content: "";
	position: absolute;
}

.arrow .point:before {
	top: -11px;
	left: -11px;
	transform:rotate(-74deg);
	-webkit-transform:rotate(-74deg);
  -moz-transform:rotate(-74deg);
  -ms-transform: rotate(-74deg);
}
.arrow{
    opacity: 0;
  }
  .curve{
    opacity: 0;
  }
  .point{
    opacity: 0;
  }
.arrow .point:after {
  top: -20px;
	left: 5px;
	transform:rotate(12deg);
	-webkit-transform: rotate(12deg);
  -moz-transform:rotate(12deg);
  -ms-transform: rotate(12deg);
}
.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}
.boring-text{
  position: absolute;
  width: 300px;
  left: 80%;
  top: 75%;
  opacity: 0;
}
.hero-description:hover ~ .arrow {
  opacity: 0.8;}
  .hero-description:hover ~ .curve {
  opacity: 0.8;}
  .hero-description:hover ~ .point {
  opacity: 0.8;}
.hero-description:hover ~ .boring-text {
  opacity: 0.8;
  font-size: 1.4rem;
  color: white;
  position: absolute;

}
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

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

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation: float1 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation: float2 6s ease-in-out infinite;
}

.floating-element:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 70%;
  animation: float3 6s ease-in-out infinite;
}
.floating-element:nth-child(4) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation: float4 6s ease-in-out infinite;
}
.floating-element:nth-child(5) {
  width: 60px;
  height: 60px;
  bottom: 80%;
  left: 86%;
  animation: float5 6s ease-in-out infinite;
}
.floating-element:nth-child(6) {
  width: 60px;
  height: 60px;
  bottom: 80%;
  left: 36%;
  animation: float6 6s ease-in-out infinite;
}
.floating-element:nth-child(7) {
  width: 60px;
  height: 60px;
  bottom: 10%;
  left: 26%;
  animation: float7 6s ease-in-out infinite;
}
.floating-element:nth-child(8) {
  width: 60px;
  height: 60px;
  bottom: 5%;
  left: 86%;
  animation: float8 6s ease-in-out infinite;
}
/* Sections */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

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

.about-text {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.skills h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  text-align: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  width: 100%;
}

.skill-category {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skill-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.skill-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}

.skill-category:hover::before {
  transform: scaleX(1);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.category-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(102, 126, 234, 0.1);
  padding: 0.5rem;
  border-radius: 50%;
}

.category-header span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

.skill-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skill-card {
  background: rgba(102, 126, 234, 0.02);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.skill-card:hover {
  background: rgba(102, 126, 234, 0.05);
  transform: translateX(5px);
}

.skill-card:hover::before {
  transform: scaleY(1);
}

.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.skill-name {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

.skill-level {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skill-level:contains("Expert"),
.skill-card[data-level="expert"] .skill-level {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.skill-card[data-level="advanced"] .skill-level {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.skill-card[data-level="intermediate"] .skill-level {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.skill-card[data-level="beginner"] .skill-level {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
  border: 1px solid rgba(107, 114, 128, 0.2);
}

.skill-bar {
  height: 4px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  position: relative;
}

.skill-progress {
  height: 100%;
  border-radius: 10px;
  transition: all 1s ease-in-out;
  position: relative;
  transform: scaleX(0);
  transform-origin: left;
  animation: fillProgress 2s ease-in-out forwards;
}

.skill-progress.expert {
  background: linear-gradient(90deg, #16a34a, #22c55e);
  width: 90%;
}

.skill-progress.advanced {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  width: 75%;
}

.skill-progress.intermediate {
  background: linear-gradient(90deg, #d97706, #f59e0b);
  width: 60%;
}

.skill-progress.beginner {
  background: linear-gradient(90deg, #6b7280, #9ca3af);
  width: 40%;
}

.skill-progress::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
  animation: shimmer 2s infinite;
}

/* Skill card hover effects based on level */
.skill-card[data-level="expert"]:hover {
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.2);
}

.skill-card[data-level="expert"]:hover::before {
  background: linear-gradient(90deg, #16a34a, #22c55e);
}

.skill-card[data-level="advanced"]:hover {
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.skill-card[data-level="advanced"]:hover::before {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.skill-card[data-level="intermediate"]:hover {
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
}

.skill-card[data-level="intermediate"]:hover::before {
  background: linear-gradient(90deg, #d97706, #f59e0b);
}

.skill-card[data-level="beginner"]:hover {
  box-shadow: 0 5px 15px rgba(107, 114, 128, 0.2);
}

.skill-card[data-level="beginner"]:hover::before {
  background: linear-gradient(90deg, #6b7280, #9ca3af);
}

.skill-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.skill-badge {
  background: var(--gradient);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
  transition: all 0.2s ease;
}

.skill-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

/* Professional skill level indicators */
.skill-card::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.7;
}

.skill-card[data-level="expert"]::after {
  background: #16a34a;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.skill-card[data-level="advanced"]::after {
  background: #2563eb;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.skill-card[data-level="intermediate"]::after {
  background: #d97706;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.skill-card[data-level="beginner"]::after {
  background: #6b7280;
  box-shadow: 0 0 8px rgba(107, 114, 128, 0.4);
}

/* Enhanced Projects Section */
.projects {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.projects .hero-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.projects .hero-animation .floating-element {
  background: rgba(102, 126, 234, 0.08);
}

.projects .container {
  position: relative;
  z-index: 2;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

/* Project Preview */
.project-preview {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.preview-browser {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  width: 85%;
  max-width: 280px;
  aspect-ratio: 16/10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(1);
  transition: transform 0.3s ease;
}

.project-card:hover .preview-browser {
  transform: scale(1.02);
}

.browser-bar {
  background: #2d2d2d;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
}

.browser-bar .desktop-title {
  color: #ffffff;
  font-size: 8px;
  font-weight: bold;
  text-align: center;
  flex: 1;
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) {
  background: #ff5f57;
}
.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}
.browser-dots span:nth-child(3) {
  background: #28ca42;
}

.browser-url {
  background: #1a1a1a;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  color: #999;
  margin-left: auto;
}

.browser-content {
  background: white;
  min-height: 150px;
  padding: 12px;
}

/* Enhanced Terminal Preview Styles */
.preview-browser.terminal {
  background: #1e1e1e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.terminal-prompt {
  color: #4a9eff !important;
  font-family: "Monaco", "Consolas", monospace !important;
  font-size: 10px !important;
}

.terminal-content {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
  color: #58a6ff;
  font-family: "Monaco", "Consolas", monospace;
  font-size: 9px;
  padding: 8px;
  min-height: 140px;
  overflow: hidden;
}

.ascii-art {
  color: #7c3aed;
  margin-bottom: 4px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.5);
}

.loading-dots {
  display: inline-block;
  margin-left: 8px;
}

.loading-dots span {
  animation: loadingDots 1.5s infinite;
  opacity: 0.3;
}

.loading-dots span:nth-child(1) {
  animation-delay: 0s;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.5s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes loadingDots {
  0%,
  60%,
  100% {
    opacity: 0.3;
  }
  30% {
    opacity: 1;
  }
}

.terminal-line {
  margin-bottom: 2px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.terminal-line.typing {
  border-right: 1px solid #58a6ff;
  animation: typewriter 2s steps(20) 1s forwards, fadeInUp 0.5s ease forwards;
}

.terminal-line:nth-child(1) {
  animation-delay: 0.5s;
}
.terminal-line:nth-child(2) {
  animation-delay: 1s;
}
.terminal-line:nth-child(3) {
  animation-delay: 1.5s;
}

.terminal-line.success {
  color: #3fb950;
  text-shadow: 0 0 5px rgba(63, 185, 80, 0.3);
}

.terminal-divider {
  color: #30363d;
  margin: 4px 0;
  font-size: 8px;
}

.terminal-table {
  margin-top: 4px;
  border: 1px solid #30363d;
  border-radius: 3px;
  padding: 4px;
  background: rgba(13, 17, 23, 0.5);
}

.table-header {
  color: #f0f6fc;
  font-weight: bold;
  margin-bottom: 3px;
  text-align: center;
  font-size: 8px;
  border-bottom: 1px solid #30363d;
  padding-bottom: 2px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1px;
  font-size: 8px;
  padding: 1px 2px;
}

.metric-label {
  color: #8b949e;
}

.table-row .value {
  font-weight: bold;
}

.table-row .value.highlight {
  color: #58a6ff;
  text-shadow: 0 0 3px rgba(88, 166, 255, 0.3);
}

.table-row .value.good {
  color: #3fb950;
}

.table-row .value.excellent {
  color: #7c3aed;
  text-shadow: 0 0 3px rgba(124, 58, 237, 0.3);
}

.table-row .value.warning {
  color: #f85149;
}

.terminal-footer {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.prompt {
  color: #3fb950;
  font-weight: bold;
}

.cursor {
  color: #58a6ff;
  font-size: 8px;
}

.cursor.blink {
  animation: blink 1s infinite;
}

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

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

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

/* CLI Badge Styling */
.cli-badge {
  background: linear-gradient(135deg, #3fb950, #58a6ff);
  color: white;
  font-weight: 600;
}

.status-badge.cli {
  background: rgba(63, 185, 80, 0.1);
  color: #3fb950;
  border: 1px solid rgba(63, 185, 80, 0.2);
}

/* Project Actions */
.project-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.action-btn.primary {
  background: #3fb950;
  color: white;
}

.action-btn.primary:hover {
  background: #2ea043;
  transform: translateY(-1px);
}

.action-btn.secondary {
  background: transparent;
  color: #58a6ff;
  border: 1px solid #58a6ff;
}

.action-btn.secondary:hover {
  background: rgba(88, 166, 255, 0.1);
}

/* DevOps Dashboard Preview */
.devops-preview {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.dash-nav {
  display: flex;
  gap: 3px;
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e2e8f0;
}

.nav-dot.active {
  background: var(--primary);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.metric-box {
  background: rgba(59, 130, 246, 0.1);
  border-radius: 3px;
  padding: 4px;
  text-align: center;
}

.metric-icon {
  font-size: 8px;
  margin-bottom: 2px;
}

.metric-value {
  font-size: 8px;
  font-weight: bold;
  color: var(--primary);
}

.dashboard-chart {
  height: 30px;
  background: #f8fafc;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(45deg, var(--primary), var(--success));
  border-radius: 2px 2px 0 0;
  animation: chartPulse 2s ease-in-out infinite;
}

@keyframes chartPulse {
  0%,
  100% {
    height: 40%;
  }
  50% {
    height: 70%;
  }
}

/* E-commerce Preview */
.ecommerce-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preview-header {
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 4px;
  opacity: 0.8;
}

.preview-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.preview-product {
  height: 40px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

.preview-cart {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 16px;
  animation: bounce 2s infinite;
}

/* Weather Preview */
.weather-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.weather-card {
  text-align: center;
  padding: 8px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 8px;
  color: white;
  min-width: 80px;
}

.weather-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.weather-temp {
  font-size: 18px;
  font-weight: bold;
}

.weather-city {
  font-size: 10px;
  opacity: 0.8;
}

.weather-chart {
  width: 100%;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 40px;
}

.bar {
  flex: 1;
  background: var(--gradient-primary);
  border-radius: 2px;
  min-height: 8px;
  animation: chartGrow 2s ease-in-out infinite;
}

.bar:nth-child(2) {
  animation-delay: 0.2s;
}
.bar:nth-child(3) {
  animation-delay: 0.4s;
}
.bar:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes chartGrow {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.2);
  }
}

/* Task Board Preview */
.taskboard-preview {
  padding: 8px;
}

.task-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.task-column {
  background: #f8fafc;
  border-radius: 4px;
  padding: 6px;
}

.column-header {
  font-size: 8px;
  font-weight: bold;
  color: var(--text-secondary);
  margin-bottom: 4px;
  text-align: center;
}

.task-item {
  height: 12px;
  background: white;
  border-radius: 2px;
  margin-bottom: 3px;
  border-left: 3px solid var(--primary);
}

/* Creative Preview */
.creative-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-mini {
  position: relative;
  background: var(--gradient-primary);
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: floatShapes 3s ease-in-out infinite;
}

.shape:nth-child(1) {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 20%;
}

.shape:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 60%;
  right: 30%;
  animation-delay: 1s;
}

.shape:nth-child(3) {
  width: 10px;
  height: 10px;
  bottom: 30%;
  left: 60%;
  animation-delay: 2s;
}

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

.gradient-text {
  color: white;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.interactive-demo {
  display: flex;
  gap: 6px;
}

.demo-controls {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.control {
  height: 8px;
  background: #e2e8f0;
  border-radius: 2px;
}

.demo-output {
  flex: 1;
  background: var(--gradient-accent);
  border-radius: 4px;
  animation: pulse 2s infinite;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(102, 126, 234, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.project-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.project-link:hover {
  transform: scale(1.1);
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-accent);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.cli-badge {
  background: linear-gradient(135deg, #3fb950, #58a6ff);
  color: white;
  font-weight: 600;
}

.project-info {
  padding: 1.5rem;
}

.project-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.live {
  background: rgba(38, 222, 129, 0.1);
  color: #26de81;
  border: 1px solid rgba(38, 222, 129, 0.2);
}

.status-badge.new {
  background: rgba(240, 147, 251, 0.1);
  color: #f093fb;
  border: 1px solid rgba(240, 147, 251, 0.2);
}

.status-badge.cli {
  background: rgba(63, 185, 80, 0.1);
  color: #3fb950;
  border: 1px solid rgba(63, 185, 80, 0.2);
}

.project-date {
  color: var(--text-light);
  font-size: 0.8rem;
}

.project-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.project-info p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature {
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
}

.project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tech-tag {
  padding: 4px 12px;
  background: var(--bg-color);
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.tech-tag.html {
  background: rgba(227, 79, 38, 0.1);
  color: #e34f26;
  border-color: rgba(227, 79, 38, 0.2);
}

.tech-tag.css {
  background: rgba(21, 114, 182, 0.1);
  color: #1572b6;
  border-color: rgba(21, 114, 182, 0.2);
}

.tech-tag.js {
  background: rgba(240, 219, 79, 0.1);
  color: #f0db4f;
  border-color: rgba(240, 219, 79, 0.2);
}

.tech-tag.backend {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.2);
}

.tech-tag.advanced {
  background: var(--gradient-accent);
  color: white;
  border: none;
}

/* Chat Preview Styles */
.chat-preview {
  display: flex;
  height: 140px;
  background: #36393f;
  border-radius: 4px;
  overflow: hidden;
  font-size: 8px;
}

.chat-sidebar-mini {
  width: 60px;
  background: #2f3136;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-user {
  display: flex;
  align-items: center;
  gap: 4px;
  color: white;
  font-size: 7px;
}

.mini-avatar {
  width: 12px;
  height: 12px;
  background: #5865f2;
  border-radius: 50%;
}

.mini-channels {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}

.mini-channel {
  color: #8e9297;
  font-size: 6px;
  padding: 2px 4px;
  border-radius: 2px;
}

.mini-channel.active {
  background: #5865f2;
  color: white;
}

.chat-main-mini {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #36393f;
}

.mini-messages {
  flex: 1;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mini-message {
  display: flex;
  gap: 4px;
  align-items: flex-start;
}

.mini-msg-avatar {
  width: 10px;
  height: 10px;
  background: #5865f2;
  border-radius: 50%;
  flex-shrink: 0;
}

.mini-msg-content {
  flex: 1;
}

.mini-msg-text {
  background: #40444b;
  color: #dcddde;
  padding: 2px 4px;
  border-radius: 2px;
  font-size: 6px;
  line-height: 1.2;
}

.mini-typing {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #72767d;
  font-size: 5px;
}

.typing-dots-mini {
  display: flex;
  gap: 1px;
}

.typing-dots-mini span {
  width: 2px;
  height: 2px;
  background: #72767d;
  border-radius: 50%;
  animation: typingDotsDemo 1s infinite;
}

.typing-dots-mini span:nth-child(1) {
  animation-delay: 0s;
}
.typing-dots-mini span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dots-mini span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDotsDemo {
  0%,
  60%,
  100% {
    opacity: 0.3;
  }
  30% {
    opacity: 1;
  }
}

.mini-input {
  padding: 4px 6px;
  border-top: 1px solid #40444b;
}

.mini-input-box {
  background: #40444b;
  color: #72767d;
  padding: 2px 4px;
  border-radius: 2px;
  font-size: 6px;
}
#contact{
    padding: 50px 0 50px 0;
    background: var(--bg-color);
}
.contact-content{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
  }

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

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  .skill-tags {
    justify-content: center;
  }

  .skills-grid {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    gap: 1rem;
  }

  .skill-category {
    padding: 1rem;
  }

  .skills-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

/* Desktop Widget Preview */
.preview-browser.desktop-app {
  background: #1a1a1a;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.browser-bar .desktop-title {
  color: #ffffff;
  font-size: 8px;
  font-weight: bold;
  text-align: center;
  flex: 1;
}

.desktop-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-widget-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 180px;
}

.widget-compact {
  background: linear-gradient(135deg, 
    rgba(40, 40, 40, 0.9) 0%, 
    rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
  backdrop-filter: blur(10px);
}

.widget-title {
  color: #ffffff;
  font-size: 8px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
}

.widget-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 6px;
  color: #ffffff;
}

.stat-bar span:first-child {
  width: 24px;
  text-align: right;
}

.stat-bar span:last-child {
  width: 24px;
  text-align: right;
}

.stat-bar .bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.stat-bar.cpu .progress {
  background: linear-gradient(90deg, #00ff00 0%, #ffff00 70%, #ff0000 100%);
  height: 100%;
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}

.stat-bar.ram .progress {
  background: linear-gradient(90deg, #0080ff 0%, #ff8000 100%);
  height: 100%;
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite 0.5s;
}

.stat-item {
  font-size: 6px;
  color: #cccccc;
  padding: 1px 0;
}

.widget-mini-chart {
  position: relative;
  height: 20px;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 4px;
  padding: 4px;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%,
    #00ff00 20%,
    #ffff00 40%,
    #ff8000 60%,
    #00ff00 80%,
    transparent 100%);
  animation: chartFlow 3s ease-in-out infinite;
}

.chart-dots {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 100%;
  padding: 2px 4px;
}

.chart-dots span {
  width: 2px;
  background: #00ff00;
  border-radius: 1px;
  animation: chartPulse 2s ease-in-out infinite;
}

.chart-dots span:nth-child(1) { height: 6px; animation-delay: 0s; }
.chart-dots span:nth-child(2) { height: 10px; animation-delay: 0.4s; }
.chart-dots span:nth-child(3) { height: 4px; animation-delay: 0.8s; }
.chart-dots span:nth-child(4) { height: 8px; animation-delay: 1.2s; }
.chart-dots span:nth-child(5) { height: 5px; animation-delay: 1.6s; }

.featured-badge.desktop-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 12px;
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.desktop-badge i {
  font-size: 8px;
}

@keyframes chartFlow {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(0); opacity: 1; }
}

@keyframes chartPulse {
  0%, 100% { 
    transform: scaleY(1);
    opacity: 0.7;
  }
  50% { 
    transform: scaleY(1.5);
    opacity: 1;
  }
}

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

.tech-tag.cpp {
  background: linear-gradient(135deg, #0066cc, #0052a3);
  color: white;
}

/* AI Data Platform Preview Styles */
.preview-browser.ai-platform .browser-content {
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  padding: 8px;
  overflow: hidden;
}

.ai-dashboard-preview {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.3);
}

.dashboard-header .logo {
  font-size: 10px;
  font-weight: bold;
  color: #4ecdc4;
}

.metrics {
  display: flex;
  gap: 8px;
}

.metric {
  font-size: 7px;
  padding: 2px 6px;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 8px;
  color: #4ecdc4;
  border: 1px solid rgba(78, 205, 196, 0.3);
}

.dashboard-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chart-container {
  flex: 1;
  display: flex;
  gap: 8px;
  min-height: 60px;
}

.chart-line {
  flex: 2;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.line-path {
  position: absolute;
  top: 30%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  border-radius: 1px;
  animation: aiDataFlow 3s ease-in-out infinite;
}

.data-points {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.point {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #4ecdc4;
  border-radius: 50%;
  animation: aiPulse 2s ease-in-out infinite;
}

.point:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.point:nth-child(2) { top: 50%; left: 40%; animation-delay: 0.5s; }
.point:nth-child(3) { top: 30%; left: 60%; animation-delay: 1s; }
.point:nth-child(4) { top: 70%; left: 80%; animation-delay: 1.5s; }

.chart-3d {
  flex: 1;
  background: rgba(240, 147, 251, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(240, 147, 251, 0.3);
  position: relative;
  perspective: 100px;
}

.scatter-3d {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.point-3d {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #f093fb, #667eea);
  border-radius: 50%;
  animation: ai3DRotate 4s linear infinite;
  box-shadow: 0 0 8px rgba(240, 147, 251, 0.6);
}

.ml-models {
  display: flex;
  gap: 4px;
  justify-content: space-between;
}

.model-card {
  flex: 1;
  background: rgba(118, 75, 162, 0.2);
  border: 1px solid rgba(118, 75, 162, 0.4);
  border-radius: 4px;
  padding: 4px 2px;
  text-align: center;
  font-size: 7px;
  font-weight: bold;
  color: #764ba2;
  position: relative;
  overflow: hidden;
}

.model-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: aiScan 3s ease-in-out infinite;
}

.model-card:nth-child(2)::after { animation-delay: 0.5s; }
.model-card:nth-child(3)::after { animation-delay: 1s; }

/* AI Badge Styles */
.featured-badge.ai-badge {
  background: linear-gradient(135deg, #4ecdc4, #667eea, #764ba2);
  background-size: 200% 200%;
  animation: aiGradientShift 3s ease infinite;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.ai-badge i {
  font-size: 8px;
  animation: aiBrain 2s ease-in-out infinite;
}

.status-badge.python {
  background: linear-gradient(135deg, #3776ab, #ffd43b);
  color: white;
  font-weight: 600;
}

/* AI Animations */
@keyframes aiDataFlow {
  0%, 100% { 
    transform: scaleX(0.5);
    opacity: 0.6;
  }
  50% { 
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes aiPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7);
  }
  50% { 
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.3);
  }
}

@keyframes ai3DRotate {
  0% { transform: rotateY(0deg) rotateX(0deg); }
  25% { transform: rotateY(90deg) rotateX(10deg); }
  50% { transform: rotateY(180deg) rotateX(0deg); }
  75% { transform: rotateY(270deg) rotateX(-10deg); }
  100% { transform: rotateY(360deg) rotateX(0deg); }
}

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

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

@keyframes aiBrain {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
