/* Base Styles & Variables */
:root {
  /* Color Palette */
  --black: #0a0a0f;
  --dark-gray: #1a1a2e;
  --white: #ffffff;
  --light-gray: #e0e0e0;
  --neon-blue: #00f3ff;
  --neon-magenta: #ff00ff;
  --neon-purple: #7e22ce;
  --gradient-blue: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  --gradient-magenta: linear-gradient(135deg, var(--neon-magenta), var(--neon-blue));
  
  /* Typography */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Raleway', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Shadows */
  --glow-blue: 0 0 15px rgba(0, 243, 255, 0.5);
  --glow-magenta: 0 0 15px rgba(255, 0, 255, 0.5);
  --glow-purple: 0 0 15px rgba(126, 34, 206, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
}

.header.scrolled {
  padding: 1rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.8rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-blue);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-icons {
  display: flex;
}

.nav-icons i {
  margin-left: 1.5rem;
  font-size: 1.2rem;
  color: var(--light-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-icons i:hover {
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger i {
  font-size: 1.5rem;
  color: var(--white);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#aurora-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#abstract-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#lines-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#geometric-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#wave-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 5rem;
  margin-bottom: 1rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--light-gray);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.2s;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.4s;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-blue);
  color: var(--black);
  box-shadow: var(--glow-blue);
}

.btn-secondary {
  background: transparent;
  color: var(--neon-blue);
  border: 2px solid var(--neon-blue);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.7);
}

.btn-secondary:hover {
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.5);
  background: rgba(0, 243, 255, 0.1);
}

/* Section Titles */
.section-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-blue);
  border-radius: 3px;
}

/* Services Preview */
.services-preview {
  padding: var(--spacing-lg) 0;
  background-color: var(--dark-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 243, 255, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-blue);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-blue);
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--light-gray);
}

/* Services Page */
.services-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--black);
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card-expandable {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 243, 255, 0.1);
  transition: all 0.3s ease;
}

.service-card-expandable.expanded {
  box-shadow: var(--glow-blue);
}

.service-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card-expandable:hover .service-header {
  background: rgba(0, 243, 255, 0.05);
}

.service-icon {
  font-size: 2rem;
  margin-right: 1.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-title {
  flex: 1;
}

.service-title h2 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-title p {
  color: var(--light-gray);
}

.service-toggle {
  font-size: 1.2rem;
  color: var(--neon-blue);
  transition: transform 0.3s ease;
}

.service-card-expandable.expanded .service-toggle {
  transform: rotate(180deg);
}

.service-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.service-content ul {
  list-style: none;
  margin: 1rem 0;
}

.service-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--light-gray);
}

.service-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-blue);
}

.service-cta {
  margin: 1.5rem 0;
}

/* Portfolio Preview */
.portfolio-preview {
  padding: var(--spacing-lg) 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(45deg, #1a1a2e, #0f0f1a);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.portfolio-item:nth-child(1) {
  background: linear-gradient(45deg, #1a1a2e, #0f0f1a),
              url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&w=600');
  background-size: cover;
}

.portfolio-item:nth-child(2) {
  background: linear-gradient(45deg, #1a1a2e, #0f0f1a),
              url('https://images.unsplash.com/photo-1551650975-87deedd944c3?auto=format&fit=crop&w=600');
  background-size: cover;
}

.portfolio-item:nth-child(3) {
  background: linear-gradient(45deg, #1a1a2e, #0f0f1a),
              url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?auto=format&fit=crop&w=600');
  background-size: cover;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-overlay p {
  color: var(--light-gray);
  text-align: center;
}

/* Portfolio Page */
.portfolio-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
  z-index: -1;
}

.card-carousel-container {
  position: relative;
  margin: 3rem 0;
  padding: 0 60px;
}

.card-carousel-wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.card-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 2rem;
}

.project-card {
  flex: 0 0 calc(100% - 2rem);
  background: rgba(26, 26, 46, 0.7);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  border: 1px solid rgba(0, 243, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 0;
}

@media (min-width: 768px) {
  .project-card {
    flex: 0 0 calc(80% - 2rem);
  }
}

@media (min-width: 1200px) {
  .project-card {
    flex: 0 0 calc(60% - 2rem);
  }
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 243, 255, 0.4);
  border-color: rgba(0, 243, 255, 0.5);
}

.project-image-container {
  position: relative;
  height: 300px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.project-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-image-container:hover .project-overlay {
  opacity: 1;
}

.project-info {
  padding: 1.8rem;
}

.project-info h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.project-description {
  color: var(--neon-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.project-content p {
  color: var(--light-gray);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tag {
  background: rgba(0, 243, 255, 0.15);
  color: var(--neon-blue);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.tag:hover {
  background: rgba(0, 243, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  z-index: 10;
}

.carousel-nav:hover {
  background: var(--gradient-blue);
  color: var(--black);
  box-shadow: var(--glow-blue);
  transform: translateY(-50%) scale(1.1);
}

.prev-nav {
  left: 0;
}

.next-nav {
  right: 0;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--gradient-blue);
  box-shadow: var(--glow-blue);
  transform: scale(1.3);
}

.project-categories {
  margin-top: var(--spacing-xl);
  padding: 2rem 0;
  position: relative;
}

.project-categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--gradient-blue);
  border-radius: 2px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.category-card {
  background: rgba(26, 26, 46, 0.6);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  border: 1px solid rgba(0, 243, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  backdrop-filter: blur(5px);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-blue);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
  border-color: rgba(0, 243, 255, 0.5);
}

.category-card:hover::before {
  opacity: 0.15;
}

.category-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.2) rotate(5deg);
}

.category-card h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-card p {
  color: var(--light-gray);
  font-size: 1.1rem;
  font-weight: 300;
}

/* Responsive Design for Card Carousel */
@media (max-width: 1200px) {
  .card-carousel-container {
    padding: 0 50px;
  }
  
  .project-image-container {
    height: 280px;
  }
  
  .project-info h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 992px) {
  .card-carousel-container {
    padding: 0 40px;
  }
  
  .project-card {
    flex: 0 0 calc(90% - 2rem);
  }
  
  .project-image-container {
    height: 260px;
  }
  
  .project-info h3 {
    font-size: 1.6rem;
  }
  
  .project-description {
    font-size: 1rem;
  }
  
  .project-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .card-carousel-container {
    padding: 0 35px;
  }
  
  .project-card {
    flex: 0 0 calc(95% - 2rem);
  }
  
  .project-image-container {
    height: 240px;
  }
  
  .project-info {
    padding: 1.5rem;
  }
  
  .project-info h3 {
    font-size: 1.5rem;
  }
  
  .project-description {
    font-size: 0.95rem;
  }
  
  .project-content p {
    font-size: 0.9rem;
  }
  
  .tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .card-carousel-container {
    padding: 0 30px;
  }
  
  .project-card {
    flex: 0 0 calc(100% - 2rem);
  }
  
  .project-image-container {
    height: 220px;
  }
  
  .project-info h3 {
    font-size: 1.4rem;
  }
  
  .project-description {
    font-size: 0.9rem;
  }
  
  .project-content p {
    font-size: 0.85rem;
  }
  
  .tag {
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Responsive Design for Grid Layout */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
  }
  
  .project-image-container {
    height: 230px;
  }
}

@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
  }
  
  .project-image-container {
    height: 220px;
  }
  
  .project-info h3 {
    font-size: 1.6rem;
  }
  
  .project-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .project-image-container {
    height: 200px;
  }
  
  .project-info {
    padding: 1.5rem;
  }
  
  .project-info h3 {
    font-size: 1.5rem;
  }
  
  .project-description {
    font-size: 0.95rem;
  }
  
  .tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .project-image-container {
    height: 220px;
  }
  
  .project-info h3 {
    font-size: 1.7rem;
  }
  
  .project-description {
    font-size: 1rem;
  }
  
  .tag {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Projects Page */
.projects-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}

.projects-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
  z-index: -1;
}

.projects-filter {
  text-align: center;
  margin-bottom: 3rem;
}

.projects-filter h2 {
  margin-bottom: 2rem;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: rgba(26, 26, 46, 0.7);
  color: var(--light-gray);
  border: 1px solid rgba(0, 243, 255, 0.3);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-family: var(--heading-font);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-blue);
  color: var(--black);
  box-shadow: var(--glow-blue);
  transform: translateY(-3px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.project-card {
  background: rgba(26, 26, 46, 0.7);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  border: 1px solid rgba(0, 243, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 243, 255, 0.4);
  border-color: rgba(0, 243, 255, 0.5);
}

.project-image-container {
  position: relative;
  height: 200px; /* صغّرها شوي */
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* يخلي الـGIF يتقص مزيان بلا تمدد */
  border-radius: 15px;
  transition: transform 0.4s ease;
}



.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-image-container:hover .project-overlay {
  opacity: 1;
}

.project-info {
  padding: 1.8rem;
}

.project-info h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.project-description {
  color: var(--neon-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--light-gray);
  font-size: 0.9rem;
}

.project-meta i {
  margin-right: 0.5rem;
  color: var(--neon-blue);
}

.project-content p {
  color: var(--light-gray);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tag {
  background: rgba(0, 243, 255, 0.15);
  color: var(--neon-blue);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.tag:hover {
  background: rgba(0, 243, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.load-more-container {
  text-align: center;
  margin-top: 3rem;
}

.load-more {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Flip Card Styles */
.project-flip-card {
  background-color: transparent;
  width: 100%;
  height: 450px;
  perspective: 1000px;
  position: relative;
}

.project-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.project-flip-card.flipped .project-flip-card-inner {
  transform: rotateY(180deg);
}

.project-flip-card-front, .project-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-flip-card-front {
  background: rgba(26, 26, 46, 0.7);
  border: 1px solid rgba(0, 243, 255, 0.2);
}

.project-flip-card-back {
  background: rgba(26, 26, 46, 0.9);
  border: 1px solid rgba(0, 243, 255, 0.5);
  transform: rotateY(180deg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.project-details {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-details h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.project-long-description {
  color: var(--neon-blue);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.project-details-content {
  text-align: left;
  width: 100%;
  margin-bottom: 2rem;
}

.project-detail-item {
  margin-bottom: 1rem;
}

.project-detail-item h4 {
  font-family: var(--heading-font);
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.project-detail-item p {
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.project-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

/* Responsive Design for Projects Page */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
  }
  
  .project-image-container {
    height: 230px;
  }
  
  .project-flip-card {
    height: 420px;
  }
  
  .project-flip-card-back {
    padding: 1.5rem;
  }
  
  .project-details h3 {
    font-size: 1.7rem;
  }
  
  .project-long-description {
    font-size: 1rem;
  }
  
  .project-detail-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
  }
  
  .project-image-container {
    height: 220px;
  }
  
  .project-info h3 {
    font-size: 1.6rem;
  }
  
  .project-description {
    font-size: 1rem;
  }
  
  .filter-buttons {
    gap: 0.8rem;
  }
  
  .filter-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .project-flip-card {
    height: 400px;
  }
  
  .project-flip-card-back {
    padding: 1.5rem;
  }
  
  .project-details h3 {
    font-size: 1.6rem;
  }
  
  .project-long-description {
    font-size: 0.95rem;
  }
  
  .project-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .project-actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .project-image-container {
    height: 200px;
  }
  
  .project-info {
    padding: 1.5rem;
  }
  
  .project-info h3 {
    font-size: 1.5rem;
  }
  
  .project-description {
    font-size: 0.95rem;
  }
  
  .project-meta {
    font-size: 0.8rem;
  }
  
  .tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .filter-buttons {
    gap: 0.6rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .project-flip-card {
    height: 380px;
  }
  
  .project-flip-card-back {
    padding: 1.5rem;
  }
  
  .project-details h3 {
    font-size: 1.5rem;
  }
  
  .project-long-description {
    font-size: 0.9rem;
  }
  
  .project-detail-item p {
    font-size: 0.85rem;
  }
  
  .project-details-content {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .project-image-container {
    height: 220px;
  }
  
  .project-info h3 {
    font-size: 1.7rem;
  }
  
  .project-description {
    font-size: 1rem;
  }
  
  .project-meta {
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .tag {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 80%;
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .project-flip-card {
    height: 360px;
  }
  
  .project-flip-card-back {
    padding: 1rem;
  }
  
  .project-details h3 {
    font-size: 1.4rem;
  }
  
  .project-long-description {
    font-size: 0.85rem;
  }
  
  .project-detail-item p {
    font-size: 0.8rem;
  }
  
  .project-actions {
    gap: 0.5rem;
  }
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-blue);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-blue);
}

/* Cart Page Styles */
.cart-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--black);
    min-height: 100vh;
    padding-top: 100px;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.cart-items {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.cart-item-details {
    flex: 1;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cart-item-header h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin: 0;
}

.cart-item-price {
    color: var(--neon-blue);
    font-weight: 500;
}

.cart-item-description {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cart-item-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--gradient-blue);
    color: var(--black);
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    color: var(--light-gray);
}

.remove-btn {
    background: rgba(255, 0, 255, 0.1);
    color: var(--neon-magenta);
    border: 1px solid rgba(255, 0, 255, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: var(--gradient-magenta);
    color: var(--black);
}

.cart-summary {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
    height: fit-content;
}

.cart-summary h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.summary-label {
    color: var(--light-gray);
}

.summary-value {
    color: var(--white);
    font-weight: 500;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 600;
}

.total-value {
    color: var(--neon-blue);
    font-size: 1.3rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    text-decoration: underline;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
}

.empty-cart i {
    font-size: 4rem;
    color: rgba(0, 243, 255, 0.3);
    margin-bottom: 1.5rem;
}

.empty-cart h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.empty-cart p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
/* tattttttttttttttttttttttttttttttttt*/
.project-image-containerrr {
  position: relative;
  height: 300px;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.project-image-containerrr:hover .project-overlay {
  opacity: 1;
}
  .project-image-containerrr {
    height: 280px;
  }
  .project-image-containerrr {
    height: 260px;
  }
  .project-image-containerrr {
    height: 240px;
  }
  .project-image-containerrr {
    height: 220px;
  }
  .project-image-containerrr {
    height: 230px;
  }
  .project-image-containerrr {
    height: 220px;
  }
  .project-image-containerrr {
    height: 200px;
  }
.project-image-containerrr {
  position: relative;
  height: 390px; /* صغّرها شوي */
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-image-containerrr:hover .project-overlay {
  opacity: 1;
}
  .project-image-containerrr {
    height: 230px;
  }
  .project-image-containerrr {
    height: 220px;
  }
  .project-image-containerrr {
    height: 200px;
  }
  .project-image-containerrr {
    height: 250px;
  }
  .project-image1 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.project-image1 {
  width: 100%;
  height: 100%;
  object-fit: cover; /* يخلي الـGIF يتقص مزيان بلا تمدد */
  border-radius: 15px;
  transition: transform 0.4s ease;
}
/* tattttttttttttttttttttttttttttttttt*/
.project-image-containerr {
  position: relative;
  height: 300px;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.project-image-containerr:hover .project-overlay {
  opacity: 1;
}
  .project-image-containerr {
    height: 280px;
  }
  .project-image-containerr {
    height: 260px;
  }
  .project-image-containerr {
    height: 240px;
  }
  .project-image-containerr {
    height: 220px;
  }
  .project-image-containerr {
    height: 230px;
  }
  .project-image-containerr {
    height: 220px;
  }
  .project-image-containerr {
    height: 200px;
  }
.project-image-containerr {
  position: relative;
  height: 390px; /* صغّرها شوي */
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-image-containerr:hover .project-overlay {
  opacity: 1;
}
  .project-image-containerr {
    height: 230px;
  }
  .project-image-containerr {
    height: 220px;
  }
  .project-image-containerr {
    height: 200px;
  }
  .project-image-containerr {
    height: 60px;
  }
  .project-image2 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.project-image2 {
  width: 100%;
  height: 100%;
  object-fit: cover; /* يخلي الـGIF يتقص مزيان بلا تمدد */
  border-radius: 15px;
  transition: transform 0.4s ease;
}
/* Responsive Design for Cart Page */
@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .cart-items,
    .cart-summary {
        padding: 1.5rem;
    }
    
    .cart-item-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cart-item-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Responsive Design for Flip Cards */
@media (max-width: 1200px) {
  .project-flip-card {
    height: 420px;
  }
  
  .project-flip-card-back {
    padding: 1.5rem;
  }
  
  .project-details h3 {
    font-size: 1.7rem;
  }
  
  .project-long-description {
    font-size: 1rem;
  }
  
  .project-detail-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .project-flip-card {
    height: 400px;
  }
  
  .project-flip-card-back {
    padding: 1.5rem;
  }
  
  .project-details h3 {
    font-size: 1.6rem;
  }
  
  .project-long-description {
    font-size: 0.95rem;
  }
  
  .project-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .project-actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .project-flip-card {
    height: 380px;
  }
  
  .project-flip-card-back {
    padding: 1.5rem;
  }
  
  .project-details h3 {
    font-size: 1.5rem;
  }
  
  .project-long-description {
    font-size: 0.9rem;
  }
  
  .project-detail-item p {
    font-size: 0.85rem;
  }
  
  .project-details-content {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .project-flip-card {
    height: 360px;
  }
  
  .project-flip-card-back {
    padding: 1rem;
  }
  
  .project-details h3 {
    font-size: 1.4rem;
  }
  
  .project-long-description {
    font-size: 0.85rem;
  }
  
  .project-detail-item p {
    font-size: 0.8rem;
  }
  
  .project-actions {
    gap: 0.5rem;
  }
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-blue);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-blue);
}

/* Cart Page Styles */
.cart-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--black);
    min-height: 100vh;
    padding-top: 100px;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.cart-items {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.cart-item-details {
    flex: 1;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cart-item-header h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin: 0;
}

.cart-item-price {
    color: var(--neon-blue);
    font-weight: 500;
}

.cart-item-description {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cart-item-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--gradient-blue);
    color: var(--black);
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    color: var(--light-gray);
}

.remove-btn {
    background: rgba(255, 0, 255, 0.1);
    color: var(--neon-magenta);
    border: 1px solid rgba(255, 0, 255, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: var(--gradient-magenta);
    color: var(--black);
}

.cart-summary {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
    height: fit-content;
}

.cart-summary h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.summary-label {
    color: var(--light-gray);
}

.summary-value {
    color: var(--white);
    font-weight: 500;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 600;
}

.total-value {
    color: var(--neon-blue);
    font-size: 1.3rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    text-decoration: underline;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
}

.empty-cart i {
    font-size: 4rem;
    color: rgba(0, 243, 255, 0.3);
    margin-bottom: 1.5rem;
}

.empty-cart h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.empty-cart p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive Design for Cart Page */
@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .cart-items,
    .cart-summary {
        padding: 1.5rem;
    }
    
    .cart-item-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cart-item-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Profile Page Styles */
.profile-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--black);
  min-height: 100vh;
  padding-top: 100px;
}

.profile-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.profile-sidebar {
  flex: 0 0 300px;
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0, 243, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  height: fit-content;
}

.profile-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  color: var(--black);
  box-shadow: var(--glow-blue);
}

.profile-header h2 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.profile-header p {
  color: var(--light-gray);
  margin-bottom: 1rem;
}

.profile-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-magenta);
}

.status-indicator.active {
  background: var(--neon-blue);
  box-shadow: var(--glow-blue);
}

.profile-nav ul {
  list-style: none;
}

.profile-nav ul li {
  margin-bottom: 0.5rem;
}

.profile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  color: var(--light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.profile-nav ul li a:hover,
.profile-nav ul li.active a {
  background: rgba(0, 243, 255, 0.1);
  color: var(--neon-blue);
}

.profile-nav ul li a i {
  width: 20px;
  text-align: center;
}

.profile-content {
  flex: 1;
}

.profile-tab {
  display: none;
}

.profile-tab.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.profile-tab h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  margin-bottom: 1rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-tab p {
  color: var(--light-gray);
  margin-bottom: 2rem;
}

.profile-form .form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.profile-form .form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

.profile-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--light-gray);
  font-weight: 500;
}

.profile-form input,
.profile-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.profile-form input:focus,
.profile-form textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.profile-form textarea {
  resize: vertical;
  min-height: 120px;
}

.settings-group {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.settings-group h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--neon-blue);
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.setting-item:last-child {
  border-bottom: none;
}

.setting-item h4 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.setting-item p {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background: var(--gradient-blue);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

@media (max-width: 576px) {
  .project-flip-card {
    height: 360px;
  }
  
  .project-flip-card-back {
    padding: 1rem;
  }
  
  .project-details h3 {
    font-size: 1.4rem;
  }
  
  .project-long-description {
    font-size: 0.85rem;
  }
  
  .project-detail-item p {
    font-size: 0.8rem;
  }
  
  .project-actions {
    gap: 0.5rem;
  }
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-blue);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-blue);
}

/* Cart Page Styles */
.cart-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--black);
    min-height: 100vh;
    padding-top: 100px;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.cart-items {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.cart-item-details {
    flex: 1;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cart-item-header h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin: 0;
}

.cart-item-price {
    color: var(--neon-blue);
    font-weight: 500;
}

.cart-item-description {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cart-item-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--gradient-blue);
    color: var(--black);
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    color: var(--light-gray);
}

.remove-btn {
    background: rgba(255, 0, 255, 0.1);
    color: var(--neon-magenta);
    border: 1px solid rgba(255, 0, 255, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: var(--gradient-magenta);
    color: var(--black);
}

.cart-summary {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
    height: fit-content;
}

.cart-summary h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.summary-label {
    color: var(--light-gray);
}

.summary-value {
    color: var(--white);
    font-weight: 500;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 600;
}

.total-value {
    color: var(--neon-blue);
    font-size: 1.3rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    text-decoration: underline;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
}

.empty-cart i {
    font-size: 4rem;
    color: rgba(0, 243, 255, 0.3);
    margin-bottom: 1.5rem;
}

.empty-cart h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.empty-cart p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive Design for Cart Page */
@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .cart-items,
    .cart-summary {
        padding: 1.5rem;
    }
    
    .cart-item-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cart-item-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-blue);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-blue);
}

/* Cart Page Styles */
.cart-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--black);
    min-height: 100vh;
    padding-top: 100px;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.cart-items {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.cart-item-details {
    flex: 1;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cart-item-header h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin: 0;
}

.cart-item-price {
    color: var(--neon-blue);
    font-weight: 500;
}

.cart-item-description {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cart-item-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--gradient-blue);
    color: var(--black);
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    color: var(--light-gray);
}

.remove-btn {
    background: rgba(255, 0, 255, 0.1);
    color: var(--neon-magenta);
    border: 1px solid rgba(255, 0, 255, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: var(--gradient-magenta);
    color: var(--black);
}

.cart-summary {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
    height: fit-content;
}

.cart-summary h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.summary-label {
    color: var(--light-gray);
}

.summary-value {
    color: var(--white);
    font-weight: 500;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 600;
}

.total-value {
    color: var(--neon-blue);
    font-size: 1.3rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    text-decoration: underline;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
}

.empty-cart i {
    font-size: 4rem;
    color: rgba(0, 243, 255, 0.3);
    margin-bottom: 1.5rem;
}

.empty-cart h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.empty-cart p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive Design for Cart Page */
@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .cart-items,
    .cart-summary {
        padding: 1.5rem;
    }
    
    .cart-item-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cart-item-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Profile Information Display */
.profile-info-display {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.info-group {
  margin-bottom: 1.5rem;
}

.info-group:last-child {
  margin-bottom: 0;
}

/* Social Information Display */
.social-info {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.social-info p {
  color: var(--light-gray);
  margin: 0;
}

/* Coming Soon Overlay for Discord */
.soon-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.soon-content {
  background: rgba(26, 26, 46, 0.9);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  border: 2px solid var(--neon-blue);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
  animation: pulse 2s infinite;
  position: relative;
  overflow: hidden;
}

.soon-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 243, 255, 0.2) 0%, transparent 70%);
  animation: rotate 4s linear infinite;
  z-index: -1;
}

.soon-content h3 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.soon-content p {
  color: var(--light-gray);
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.6;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Discord specific overlay inside the social link */
#discord-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  z-index: 10;
}

#discord-soon-overlay .soon-content {
  background: rgba(26, 26, 46, 0.9);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  max-width: 80%;
  width: auto;
  border: 1px solid var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
  animation: pulse 2s infinite;
  position: relative;
  overflow: hidden;
  margin: 0;
}

#discord-soon-overlay .soon-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 243, 255, 0.2) 0%, transparent 70%);
  animation: rotate 4s linear infinite;
  z-index: -1;
}

#discord-soon-overlay .soon-content h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

#discord-soon-overlay .soon-content p {
  color: var(--light-gray);
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.info-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--neon-blue);
  font-weight: 500;
  font-size: 0.9rem;
}

.info-group .info-value {
  padding: 0.8rem 1rem;
  background: rgba(10, 10, 15, 0.3);
  border-radius: 8px;
  color: var(--light-gray);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1rem;
  line-height: 1.5;
}

.info-group .info-value.bio {
  white-space: pre-wrap;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 243, 255, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-blue);
  border-color: rgba(0, 243, 255, 0.3);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.project-header h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  margin: 0;
}

.project-status {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-status.completed {
  background: rgba(0, 243, 255, 0.2);
  color: var(--neon-blue);
}

.project-status.in-progress {
  background: rgba(255, 0, 255, 0.2);
  color: var(--neon-magenta);
}

.project-card p {
  color: var(--light-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  color: var(--light-gray);
  font-size: 0.85rem;
}

.project-meta i {
  margin-right: 0.3rem;
  color: var(--neon-blue);
}

/* Responsive Design for Profile Page */
@media (max-width: 992px) {
  .profile-container {
    flex-direction: column;
  }
  
  .profile-sidebar {
    flex: 0 0 auto;
  }
  
  .profile-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .social-link {
    flex-direction: column;
    text-align: center;
  }
  
  .social-icon {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .profile-section {
    padding-top: 80px;
  }
  
  .profile-sidebar {
    padding: 1.5rem;
  }
  
  .profile-content {
    padding: 0;
  }
  
  .profile-tab h2 {
    font-size: 1.8rem;
  }
  
  .settings-group {
    padding: 1.5rem;
  }
  
  .setting-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .switch {
    margin-top: 0.5rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .skills-container,
  .achievements-container,
  .social-links-container {
    padding: 1.5rem;
  }
  
  .achievement-item {
    flex-direction: column;
    text-align: center;
  }
  
  .achievement-icon {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .profile-section {
    padding-top: 70px;
  }
  
  .profile-container {
    gap: 1rem;
  }
  
  .profile-sidebar {
    padding: 1rem;
  }
  
  .profile-avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .profile-tab h2 {
    font-size: 1.6rem;
  }
  
  .profile-form .form-group {
    margin-bottom: 1rem;
  }
  
  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .skills-container,
  .achievements-container,
  .social-links-container {
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

/* About Page */
#abstract-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.philosophy-section {
  padding: var(--spacing-lg) 0;
  background: rgba(10, 10, 15, 0.7);
  position: relative;
  overflow: hidden;
}

.philosophy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: rgba(26, 26, 46, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(0, 243, 255, 0.1);
  backdrop-filter: blur(10px);
}

.philosophy-content h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.philosophy-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--light-gray);
}

.story-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--black);
}

.story-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.story-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-blue);
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
}

.timeline-item:nth-child(odd) {
  padding-right: calc(50% + 30px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: calc(50% + 30px);
}

.timeline-year {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 0;
  margin-left: -40px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--glow-blue);
}

.timeline-content {
/* Cart Icon Styles */
.cart-icon {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-blue);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-blue);
}

/* Cart Page Styles */
.cart-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--black);
    min-height: 100vh;
    padding-top: 100px;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.cart-items {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.cart-item-details {
    flex: 1;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cart-item-header h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin: 0;
}

.cart-item-price {
    color: var(--neon-blue);
    font-weight: 500;
}

.cart-item-description {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cart-item-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--gradient-blue);
    color: var(--black);
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    color: var(--light-gray);
}

.remove-btn {
    background: rgba(255, 0, 255, 0.1);
    color: var(--neon-magenta);
    border: 1px solid rgba(255, 0, 255, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: var(--gradient-magenta);
    color: var(--black);
}

.cart-summary {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
    height: fit-content;
}

.cart-summary h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.summary-label {
    color: var(--light-gray);
}

.summary-value {
    color: var(--white);
    font-weight: 500;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 600;
}

.total-value {
    color: var(--neon-blue);
    font-size: 1.3rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    text-decoration: underline;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
}

.empty-cart i {
    font-size: 4rem;
    color: rgba(0, 243, 255, 0.3);
    margin-bottom: 1.5rem;
}

.empty-cart h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.empty-cart p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive Design for Cart Page */
@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .cart-items,
    .cart-summary {
        padding: 1.5rem;
    }
    
    .cart-item-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cart-item-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

  background: rgba(26, 26, 46, 0.5);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.timeline-content h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neon-blue);
}

.timeline-content p {
  color: var(--light-gray);
  line-height: 1.6;
}

.team-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--dark-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  transition: all 0.3s ease;
}

.member-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--neon-blue);
  transition: all 0.3s ease;
}

.member-info h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.member-info p {
  color: var(--neon-blue);
}

.testimonials-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--black);
  position: relative;
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto 2rem;
  position: relative;
  height: 300px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-content {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--light-gray);
  line-height: 1.6;
}

.testimonial-author h4 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.testimonial-author p {
  color: var(--neon-blue);
}

/* Contact Page */
#lines-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--black);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info h2,
.contact-form h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.contact-info h2::after,
.contact-form h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-blue);
  border-radius: 3px;
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--neon-blue);
  margin-right: 1rem;
  min-width: 40px;
}

.info-content h3 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--neon-blue);
}

.info-content p {
  color: var(--light-gray);
  line-height: 1.6;
}

.map-container {
  margin-top: 2rem;
}

.map-placeholder {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.map-placeholder:hover {
  box-shadow: var(--glow-blue);
  transform: translateY(-5px);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--neon-blue);
  margin-bottom: 1rem;
}

.map-placeholder p {
  color: var(--light-gray);
  font-weight: 500;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(224, 224, 224, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
}

/* Map Modal */
.map-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--dark-gray);
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  position: relative;
  border: 1px solid var(--neon-blue);
  box-shadow: var(--glow-blue);
}

.close-modal {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: var(--gradient-blue);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2001;
}

.map-iframe {
  border-radius: 15px;
  overflow: hidden;
}

/* Testimonials */
.testimonials {
  padding: var(--spacing-lg) 0;
  background-color: var(--dark-gray);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(0, 243, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--light-gray);
}

.testimonial-author h4 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.testimonial-author p {
  color: var(--neon-blue);
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  padding: var(--spacing-lg) 0 2rem;
  border-top: 1px solid rgba(0, 243, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gradient-blue);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-blue);
  padding-left: 5px;
}

.social-links {
  display: flex;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-blue);
  transform: translateY(-3px);
  box-shadow: var(--glow-blue);
}

.social-links i {
  color: var(--white);
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .carousel-container {
    height: 480px;
  }
  
  .carousel-item {
    width: 320px;
    height: 420px;
    margin-left: -160px;
    margin-top: -210px;
  }
  
  .carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(420px); }
  .carousel-item:nth-child(2) { transform: rotateY(72deg) translateZ(420px); }
}

  .carousel-item:nth-child(3) { transform: rotateY(144deg) translateZ(420px); }
  .carousel-item:nth-child(4) { transform: rotateY(216deg) translateZ(420px); }
  .carousel-item:nth-child(5) { transform: rotateY(288deg) translateZ(420px); }
  
  .project-details h3 {
    font-size: 1.8rem;
  }
  
  .project-details p {
    font-size: 1rem;
    max-width: 95%;
  }

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .carousel-container {
    height: 450px;
  }
  
  .carousel-item {
    width: 300px;
    height: 400px;
    margin-left: -150px;
    margin-top: -200px;
  }
  
  .carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(380px); }
  .carousel-item:nth-child(2) { transform: rotateY(72deg) translateZ(380px); }
  .carousel-item:nth-child(3) { transform: rotateY(144deg) translateZ(380px); }
  .carousel-item:nth-child(4) { transform: rotateY(216deg) translateZ(380px); }
  .carousel-item:nth-child(5) { transform: rotateY(288deg) translateZ(380px); }
  
  .project-details h3 {
    font-size: 1.7rem;
  }
  
  .project-details p {
    font-size: 0.95rem;
    max-width: 95%;
  }
  
  .project-info h3 {
    font-size: 1.5rem;
  }
  
  .project-info p {
    font-size: 0.9rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--dark-gray);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 1.5rem 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .service-header {
    flex-direction: column;
    text-align: center;
  }
  
  .service-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .carousel-container {
    height: 400px;
  }
  
  .carousel-item {
    width: 280px;
    height: 370px;
    margin-left: -140px;
    margin-top: -185px;
  }
  
  .carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(340px); }
  .carousel-item:nth-child(2) { transform: rotateY(72deg) translateZ(340px); }
  .carousel-item:nth-child(3) { transform: rotateY(144deg) translateZ(340px); }
  .carousel-item:nth-child(4) { transform: rotateY(216deg) translateZ(340px); }
  .carousel-item:nth-child(5) { transform: rotateY(288deg) translateZ(340px); }
  
  .project-details h3 {
    font-size: 1.6rem;
  }
  
  .project-details p {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .project-tags {
    margin-bottom: 1.5rem;
  }
  
  .project-tags span {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .project-info h3 {
    font-size: 1.4rem;
  }
  
  .project-info p {
    font-size: 0.85rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  
  .category-card {
    padding: 2rem 1.5rem;
  }
  
  .category-icon {
    font-size: 3rem;
  }
  
  .category-card h3 {
    font-size: 1.6rem;
  }
  
  .category-card p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card,
  .portfolio-item,
  .category-card {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .carousel-container {
    height: 350px;
  }
  
  .carousel-item {
    width: 250px;
    height: 330px;
    margin-left: -125px;
    margin-top: -165px;
  }
  
  .carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(300px); }
  .carousel-item:nth-child(2) { transform: rotateY(72deg) translateZ(300px); }
  .carousel-item:nth-child(3) { transform: rotateY(144deg) translateZ(300px); }
  .carousel-item:nth-child(4) { transform: rotateY(216deg) translateZ(300px); }
  .carousel-item:nth-child(5) { transform: rotateY(288deg) translateZ(300px); }
  
  .project-tags {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .project-details h3 {
    font-size: 1.5rem;
  }
  
  .project-details p {
    font-size: 0.85rem;
  }
  
  .project-info h3 {
    font-size: 1.3rem;
  }
  
  .project-info p {
    font-size: 0.8rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category-card {
    padding: 2rem;
  }
  
  .category-icon {
    font-size: 2.5rem;
  }
  
  .category-card h3 {
    font-size: 1.5rem;
  }
}

/* Responsive Design for Flip Cards */
@media (max-width: 1200px) {
  .project-flip-card {
    height: 420px;
  }
  
  .project-flip-card-back {
    padding: 1.5rem;
  }
  
  .project-details h3 {
    font-size: 1.7rem;
  }
  
  .project-long-description {
    font-size: 1rem;
  }
  
  .project-detail-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .project-flip-card {
    height: 400px;
  }
  
  .project-flip-card-back {
    padding: 1.5rem;
  }
  
  .project-details h3 {
    font-size: 1.6rem;
  }
  
  .project-long-description {
    font-size: 0.95rem;
  }
  
  .project-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .project-actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .project-flip-card {
    height: 380px;
  }
  
  .project-flip-card-back {
    padding: 1.5rem;
  }
  
  .project-details h3 {
    font-size: 1.5rem;
  }
  
  .project-long-description {
    font-size: 0.9rem;
  }
  
  .project-detail-item p {
    font-size: 0.85rem;
  }
  
  .project-details-content {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .project-flip-card {
    height: 360px;
  }
  
  .project-flip-card-back {
    padding: 1rem;
  }
  
  .project-details h3 {
    font-size: 1.4rem;
  }
  
  .project-long-description {
    font-size: 0.85rem;
  }
  
  .project-detail-item p {
    font-size: 0.8rem;
  }
  
  .project-actions {
    gap: 0.5rem;
  }
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-blue);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-blue);
}

/* Cart Page Styles */
.cart-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--black);
    min-height: 100vh;
    padding-top: 100px;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.cart-items {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.cart-item-details {
    flex: 1;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cart-item-header h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin: 0;
}

.cart-item-price {
    color: var(--neon-blue);
    font-weight: 500;
}

.cart-item-description {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cart-item-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--gradient-blue);
    color: var(--black);
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    color: var(--light-gray);
}

.remove-btn {
    background: rgba(255, 0, 255, 0.1);
    color: var(--neon-magenta);
    border: 1px solid rgba(255, 0, 255, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: var(--gradient-magenta);
    color: var(--black);
}

.cart-summary {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
    height: fit-content;
}

.cart-summary h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.summary-label {
    color: var(--light-gray);
}

.summary-value {
    color: var(--white);
    font-weight: 500;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 600;
}

.total-value {
    color: var(--neon-blue);
    font-size: 1.3rem;
}

.checkout-btn {
}

/* Skills Section */
.skills-container {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.skill-category {
  margin-bottom: 2rem;
}

.skill-category:last-child {
  margin-bottom: 0;
}

.skill-category h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--neon-blue);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.skill-item {
  margin-bottom: 1.5rem;
}

.skill-item:last-child {
  margin-bottom: 0;
}

.skill-name {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--light-gray);
  font-weight: 500;
}

.skill-bar {
  height: 8px;
  background: rgba(10, 10, 15, 0.3);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.skill-level {
  height: 100%;
  background: var(--gradient-blue);
  border-radius: 4px;
  position: relative;
  transition: width 1s ease-in-out;
}

/* Achievements Section */
.achievements-container {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.achievement-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.achievement-icon {
  font-size: 1.8rem;
  color: var(--neon-blue);
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievement-content h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.achievement-content p {
  color: var(--light-gray);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.achievement-date {
  color: var(--neon-blue);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Social Links Section */
.social-links-container {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.social-link {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 10px;
  background: rgba(10, 10, 15, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.social-link:last-child {
  margin-bottom: 0;
}

.social-link:hover {
  background: rgba(0, 243, 255, 0.1);
  border-color: rgba(0, 243, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon {
  font-size: 2rem;
  color: var(--neon-blue);
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-info h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.social-info p {
  color: var(--light-gray);
  margin: 0;
}

    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    text-decoration: underline;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
}

.empty-cart i {
    font-size: 4rem;
    color: rgba(0, 243, 255, 0.3);
    margin-bottom: 1.5rem;
}

.empty-cart h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.empty-cart p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive Design for Cart Page */
@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .cart-items,
    .cart-summary {
        padding: 1.5rem;
    }
    
    .cart-item-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cart-item-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
/* 🔹 Toast notification container */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background: #01082957; /* لون أخضر ديال النجاح */
  color: rgb(0, 217, 255);
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 9999;
}

/* 🔹 ملي يكون ظاهر */
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
