:root {
  --neon-blue: #0ff0fc;
  --neon-green: #00ff9d;
  --neon-pink: #ff00ff;
  --neon-purple: #9d00ff;
  --cyber-black: #0a0a12;
  --cyber-dark: #12121a;
  --cyber-light: #f0f0ff;
  --cyber-gray: #a0a0b0;
  --glow-blue: 0 0 15px rgba(0, 240, 252, 0.7);
  --glow-green: 0 0 15px rgba(0, 255, 157, 0.7);
  --glow-pink: 0 0 15px rgba(255, 0, 255, 0.7);
  --glow-purple: 0 0 15px rgba(157, 0, 255, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rajdhani', 'Courier New', monospace;
}

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');

body {
  background-color: var(--cyber-black);
  color: var(--cyber-light);
  overflow-x: hidden;
  line-height: 1.6;

}

a {
  text-decoration: none;
}

/* LOADER */

.main-load-container {
  margin: 0;
  padding: 0;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: 'Arial', sans-serif;

  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 3001;
}

.preloader-container {
  width: 80%;
  max-width: 600px;
}

.preloader-title {
  color: #00fffc;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(0, 255, 252, 0.5);
}

.loading-bar {
  width: 100%;
  height: 10px;
  background-color: rgba(0, 255, 252, 0.1);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 255, 252, 0.2);
}

.loading-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00fffc, #0084ff);
  border-radius: 5px;
  position: relative;
  transition: width 0.3s ease;
}

.loading-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  animation: shine 2s infinite;
}

.loading-percentage {
  color: #00fffc;
  text-align: center;
  font-size: 2rem;
  margin-top: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 255, 252, 0.5);
}

.loading-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #00fffc;
  border-radius: 50%;
  margin: 0 5px;
  opacity: 0.3;
  box-shadow: 0 0 10px rgba(0, 255, 252, 0.5);
}

.dot:nth-child(1) {
  animation: pulse 1.5s infinite;
}

.dot:nth-child(2) {
  animation: pulse 1.5s infinite 0.5s;
}

.dot:nth-child(3) {
  animation: pulse 1s infinite 1.2s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(to right, #00fffc 1px, transparent 1px),
    linear-gradient(to bottom, #00fffc 1px, transparent 1px);
  background-size: 20px 20px;
}

.corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #00fffc;
  opacity: 0.7;
}

.corner-tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.corner-bl {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.corner-br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}




/* ALERTS */

/* ALERT POP UPS */


.success-alert {
  background-color: #4CAF50;
  color: white;
}

.alert-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000009b;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.alert-content {
  width: 350px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.alert-icon {
  margin-bottom: 15px;
}

.alert-icon i {
  font-size: 50px;

}

.alert-message h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
}

.alert-message p {
  margin: 0;
  font-size: 1rem;
}

.alert-button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: white;
  color: #4CAF50;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.alert-button:hover {
  opacity: 0.9;
}


.error-alert {
  background-color: #F44336;
  color: white;
}

.error-alert .alert-button {
  color: #F44336;
}



.confirm-modal {
  background-color: white;
  color: #333;
}

.confirm-modal .alert-icon svg {
  stroke: #4CAF50;
}

.pinpassword-input {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.confirm-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 10px;
}

.pincancel-button {
  background-color: #f1f1f1;
  color: #333;
  flex: 1;
}

.pinconfirm-button {
  background-color: #4CAF50;
  color: white;
  flex: 1;
}







/* **Cyber Grid Background** */
.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(15, 240, 252, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 240, 252, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -2;
}

/* **Holographic Overlay** */
.holographic-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 157, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.05) 0%, transparent 30%);
  z-index: -1;
  opacity: 0.5;
}

/* **Scanlines Effect** */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(to bottom,
      transparent 0%,
      rgba(15, 240, 252, 0.05) 1px,
      transparent 2px);
  z-index: -1;
  pointer-events: none;
}

/* **Main Container** */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}

@keyframes bounce {
  0% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px)
  }
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #9bf8b1;
  /* WhatsApp green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(63, 249, 6, 0.785);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.2s ease;
  animation: bounce 8s infinite;
}

.whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp img {
  width: 70%;
  height: auto;
}

/* **Header (Cybernetic Navbar)** */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
  padding: 1.5rem 0;

  border-bottom: 1px solid rgba(15, 240, 252, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--glow-blue);
  letter-spacing: 2px;
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;

}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  box-shadow: var(--glow-blue);

}

.logo img {
  width: 40px;
  height: 40px;

}

/* Navigation */
nav ul {
  display: flex;
  gap: 5px;
  list-style: none;

}

nav a {
  color: var(--cyber-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 10px;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-green);
  transition: width 0.3s ease;
  box-shadow: var(--glow-green);
}

nav a:hover::before {
  width: 100%;
}

nav a:hover {
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 100;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--neon-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
  box-shadow: var(--glow-blue);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Modal */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: rgba(10, 10, 18, 0.98);
  backdrop-filter: blur(10px);
  border-left: 1px solid var(--neon-blue);
  box-shadow: -5px 0 30px rgba(0, 240, 252, 0.2);
  z-index: 90;
  transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu a {
  color: var(--cyber-light);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 0.5rem 0;
  display: block;
}

.mobile-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-green);
  transition: width 0.3s ease;
  box-shadow: var(--glow-green);
}

.mobile-menu a:hover::before {
  width: 100%;
}

.mobile-menu a:hover {
  color: var(--neon-blue);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* **Hero Section (Holographic Terminal)** */
.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 8rem;
  position: relative;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--glow-blue);
  line-height: 1.1;
  letter-spacing: 2px;
}

.typewriter-terminal {
  background: rgba(10, 10, 18, 0.7);
  border: 1px solid var(--neon-blue);
  box-shadow: var(--glow-blue);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}

.typewriter-terminal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(15, 240, 252, 0.05) 50%,
      transparent 100%);
  animation: scan 8s linear infinite;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--neon-green);
  font-weight: 600;
}

.terminal-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f56;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #27c93f;
}

.typewriter-text {
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  color: var(--neon-green);
  line-height: 1.8;
}

.cursor {
  display: inline-block;
  width: 10px;
  height: 1.5rem;
  background: var(--neon-green);
  animation: blink 1s infinite;
  vertical-align: middle;
  margin-left: 5px;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
}

.cyber-button {
  padding: 1.2rem 2.5rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.cyber-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(15, 240, 252, 0.4),
      transparent);
  transition: all 0.5s ease;
}

.cyber-button:hover::before {
  left: 100%;
}

.primary-btn {
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-green));
  color: var(--cyber-black);
  box-shadow: var(--glow-blue);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 240, 252, 0.8);
}

.secondary-btn {
  background: transparent;
  color: var(--neon-blue);
  border: 2px solid var(--neon-blue);
  box-shadow: var(--glow-blue);
}

.secondary-btn:hover {
  background: rgba(15, 240, 252, 0.1);
  color: var(--neon-green);
  border-color: var(--neon-green);
  box-shadow: var(--glow-green);
}

/* **About Section (3D Service Cube + Bio)** */
.about {
  margin-bottom: 8rem;
  position: relative;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  box-shadow: var(--glow-blue);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
  position: relative;
  padding-left: 2rem;
}

.about-text p::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-weight: bold;
}

/* **3D Service Cube** */
.cube-container {
  perspective: 1000px;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.service-cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 20s infinite linear;
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(15, 240, 252, 0.1);
  border: 2px solid var(--neon-blue);
  box-shadow: var(--glow-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neon-green);
  text-shadow: var(--glow-green);
  backface-visibility: hidden;
}

.front {
  transform: translateZ(150px);
}

.back {
  transform: rotateY(180deg) translateZ(150px);
}

.right {
  transform: rotateY(90deg) translateZ(150px);
}

.left {
  transform: rotateY(-90deg) translateZ(150px);
}

.top {
  transform: rotateX(90deg) translateZ(150px);
}

.bottom {
  transform: rotateX(-90deg) translateZ(150px);
}

/* **Skills Matrix Section** */
.skills-matrix {
  margin: 5rem 0;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.skill-card {
  background: rgba(15, 240, 252, 0.05);
  border: 1px solid var(--neon-blue);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      transparent 45%,
      rgba(0, 240, 252, 0.1) 50%,
      transparent 55%);
  animation: shine 6s infinite linear;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-blue);
  border-color: var(--neon-green);
}

.skill-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.skill-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 240, 252, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--neon-blue);
}

.skill-title {
  font-size: 1.5rem;
  color: var(--neon-green);
  text-shadow: var(--glow-green);
}

.skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.skill-item {
  background: rgba(0, 255, 157, 0.1);
  color: var(--neon-green);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 255, 157, 0.3);
}

/* **Experience Timeline** */
.experience {
  margin: 5rem 0;
}

.timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom,
      transparent,
      var(--neon-blue),
      transparent);
  box-shadow: var(--glow-blue);
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 3rem;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--neon-blue);
  box-shadow: var(--glow-blue);
  z-index: 1;
}

.timeline-content {
  background: rgba(15, 240, 252, 0.05);
  border: 1px solid rgba(0, 240, 252, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(10px);
  border-color: var(--neon-green);
  box-shadow: var(--glow-green);
}

.timeline-date {
  color: var(--neon-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-date i {
  font-size: 1rem;
}

.timeline-company {
  font-size: 1.3rem;
  color: var(--neon-green);
  margin-bottom: 0.5rem;
}

.timeline-position {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--cyber-light);
}

.timeline-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.timeline-tech span {
  background: rgba(0, 240, 252, 0.1);
  color: var(--neon-blue);
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  font-size: 0.8rem;
}














.projects {
  margin-bottom: 8rem;
}

.slidable-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--glow-blue);
  box-shadow: var(--glow-blue);
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  flex-shrink: 0;
  width: 100%;
}

.project-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.project-image {
  background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
  position: relative;
  overflow: hidden;
}

.project-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  z-index: 1;
}

.project-image img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

.project-details {
  padding: 4rem;
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-details h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
}

.project-details p {
  margin-bottom: 2rem;
  opacity: 0.9;
  font-size: 1.1rem;
  line-height: 1.8;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.tech-tag {
  background: rgba(15, 240, 252, 0.15);
  color: var(--neon-blue);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--neon-blue);
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.project-link {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-link-primary {
  background: var(--neon-blue);
  color: var(--cyber-black);
  box-shadow: var(--glow-blue);
  width: 90%;
  text-align: center;
}

.project-link-primary:hover {
  background: var(--neon-blue);
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--neon-green);
}

.project-link-secondary {
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  width: 90%;
}

.project-link-secondary:hover {
  background: rgba(0, 255, 94, 0.1);
  transform: translateY(-2px);
}

.carousel-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(15, 240, 252, 0.023);
  border: 1px solid var(--neon-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: rgba(15, 240, 252, 0.4);
  box-shadow: var(--glow-blue);
}

.arrow-left {
  left: 0;
}

.arrow-right {
  right: 0;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--neon-pink);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
}

/* 📱 RESPONSIVE CHANGES */
@media (max-width: 1024px) {
  .project-content {
    grid-template-columns: 1fr;
  }

  .project-image {
    height: 250px;
  }

  .project-details {
    padding: 2rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
}









/* **Contact Section (Neon Form)** */
.contact {
  margin-bottom: 5rem;
}

.cyber-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(10, 10, 18, 0.8);
  border: 1px solid var(--neon-blue);
  box-shadow: var(--glow-blue);
  padding: 3rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.cyber-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      transparent,
      rgba(15, 240, 252, 0.05),
      transparent);
  animation: scan 8s linear infinite;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--neon-green);
  font-weight: 600;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  background: rgba(15, 240, 252, 0.05);
  border: 1px solid var(--neon-blue);
  border-radius: 5px;
  color: var(--cyber-light);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: var(--glow-green);
}

.form-group textarea {
  min-height: 200px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-green));
  color: var(--cyber-black);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--glow-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 240, 252, 0.8);
}

/* **Footer (Cybernetic)** */
footer {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(15, 240, 252, 0.2);
  margin-top: 5rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--glow-blue);
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.social-link {
  color: var(--cyber-light);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--neon-blue);
  transform: translateY(-5px);
  text-shadow: var(--glow-blue);
}

.copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* **Animations** */
@keyframes scan {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes rotateCube {
  0% {
    transform: rotateX(0) rotateY(0);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

@keyframes shine {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* **Responsive Design** */
@media (max-width: 1200px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .cube-container {
    margin-top: 3rem;
  }

  .project-content {
    grid-template-columns: 1fr;
  }

  .project-image {
    height: 400px;
  }
}



@media (max-width: 1000px) {
  .hero h1 {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  nav ul {
    gap: 5px;
  }
}

@media (max-width: 996px) {
  header {
    margin-bottom: 3rem;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 15px;
  }

  nav ul {
    display: none;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .typewriter-terminal {
    padding: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cyber-button {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .project-details {
    padding: 2rem;
  }

  .cyber-form {
    padding: 2rem;
  }

  .skill-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 2px;
  }

  .logo {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
    padding-left: 1.5rem;
  }

  .cube-container {
    width: 250px;
    height: 250px;
  }

  .cube-face {
    font-size: 1.2rem;
  }

  .front {
    transform: translateZ(125px);
  }

  .back {
    transform: rotateY(180deg) translateZ(125px);
  }

  .right {
    transform: rotateY(90deg) translateZ(125px);
  }

  .left {
    transform: rotateY(-90deg) translateZ(125px);
  }

  .top {
    transform: rotateX(90deg) translateZ(125px);
  }

  .bottom {
    transform: rotateX(-90deg) translateZ(125px);
  }

  .project-links {
    flex-direction: column;
    gap: 1rem;
  }

  .project-link {
    text-align: center;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .mobile-menu ul {
    gap: 1.5rem;
  }

  .mobile-menu a {
    font-size: 1.3rem;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .matrix-grid {
    grid-template-columns: 1fr;
  }

  .skill-card {
    padding: 1.2rem;
  }

  .skill-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .skill-title {
    font-size: 1.3rem;
  }

  .mobile-menu {
    max-width: 100%;
  }
}