/* Base Styles */
:root {
  --primary-color: #22c55e;
  --primary-hover: #16a34a;
  --primary-light: rgba(34, 197, 94, 0.1);
  --primary-dark: #15803d;
  --text-color: #1e293b;
  --text-color-light: #64748b;
  --bg-color: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --dark-color: #1e293b;
  --dark-color-light: #334155;
  --light-color: #ffffff;
  --light-color-muted: #e2e8f0;
  --border-color: #e2e8f0;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --font-family: "Poppins", sans-serif;
}

/* Dark Mode Variables */
.dark {
  --primary-color: #22c55e;
  --primary-hover: #16a34a;
  --primary-light: rgba(34, 197, 94, 0.1);
  --primary-dark: #15803d;
  --text-color: #f1f5f9;
  --text-color-light: #94a3b8;
  --bg-color: #0f172a;
  --bg-alt: #1e293b;
  --dark-color: #0f172a;
  --dark-color-light: #1e293b;
  --light-color: #f8fafc;
  --light-color-muted: #334155;
  --border-color: #334155;
}

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

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

body {
  font-family: var(--font-family);
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 80px;
  height: 80px;
}

.loader svg {
  width: 100%;
  height: 100%;
}

#loader-circle {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 4;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 200;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -200;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text-color);
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
  color: var(--light-color);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-color-light);
}

.text-accent {
  color: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn i {
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 6px rgba(34, 197, 94, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
  background-color: var(--light-color-muted);
  color: var(--text-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 1.25rem 0;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  padding: 0.75rem 0;
}

.dark .navbar.scrolled {
  background-color: rgba(15, 23, 42, 0.95);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

.logo::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--primary-light);
  border-radius: 50%;
  z-index: -1;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.desktop-menu {
  display: none;
}

.menu-links {
  display: flex;
  gap: 1.5rem;
}

.menu-links a {
  color: var(--text-color-light);
  text-transform: capitalize;
  position: relative;
  padding: 0.5rem 0;
}

.menu-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

.menu-links a:hover,
.menu-links a.active {
  color: var(--primary-color);
}

.mobile-menu-wrap {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--bg-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  max-height: 100vh;
  visibility: visible;
  opacity: 1;
}

.mobile-menu ul {
  padding: 1rem;
}

.mobile-menu li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.theme-toggle {
  background-color: var(--light-color-muted);
  color: var(--text-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.theme-toggle:hover {
  background-color: var(--border-color);
  transform: rotate(30deg);
}

.dark .theme-toggle {
  background-color: var(--dark-color-light);
  color: var(--light-color);
}

/* Section Styles */
.section {
  padding: 6rem 0;
}

.alt-bg {
  background-color: var(--bg-alt);
}

.dark-bg {
  background-color: var(--dark-color);
  color: var(--light-color);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  position: relative;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  background-color: var(--primary-light);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title.light {
  color: var(--light-color);
}

.title-separator {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 1rem auto;
  position: relative;
}

.title-separator.light {
  background-color: var(--light-color);
}

.title-separator::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.title-separator.light::before {
  background-color: var(--light-color);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-color-light);
}

.sub-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.sub-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.dark .sub-title {
  color: var(--light-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
  padding-top: 80px;
}

.dark .hero {
  background-color: var(--bg-dark);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero-text {
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.dark .hero h1 {
  color: var(--light-color);
}

/* Glitch effect */
.glitch {
  position: relative;
  color: var(--text-color);
  letter-spacing: 0.025em;
}

.dark .glitch {
  color: var(--light-color);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch::before {
  color: var(--primary-color);
  z-index: -1;
  animation: glitch-effect 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  animation-delay: 0.1s;
}

.glitch::after {
  color: var(--primary-hover);
  z-index: -2;
  animation: glitch-effect 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
  animation-delay: 0.2s;
}

@keyframes glitch-effect {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(-3px, -3px);
  }
  60% {
    transform: translate(3px, 3px);
  }
  80% {
    transform: translate(3px, -3px);
  }
  100% {
    transform: translate(0);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 500;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.typed-text {
  display: inline-block;
}

.cursor {
  display: inline-block;
  width: 3px;
  background-color: var(--primary-color);
  margin-left: 0.1rem;
  animation: blink 1s infinite;
}

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

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--text-color-light);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image {
  display: none;
  position: relative;
}

.hero-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  transform: translate(20px, 20px);
  z-index: 0;
  opacity: 0.2;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color-light);
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-color-light);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 6px;
  height: 6px;
  background-color: var(--text-color-light);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.scroll-arrow {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}

.scroll-arrow span {
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--text-color-light);
  border-right: 2px solid var(--text-color-light);
  transform: rotate(45deg);
  margin: -2px 0;
  animation: scrollArrow 2s infinite;
}

.scroll-arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}

/* About Section */
.about-grid {
  display: grid;
  gap: 3rem;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 2;
}

.experience-badge .number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.875rem;
}

.about-content h3 {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.about-content h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.dark .about-content h3 {
  color: var(--light-color);
}

.about-content p {
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
}

.about-content a {
  color: var(--primary-color);
}

.about-content a:hover {
  text-decoration: underline;
}

.language-skills {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--bg-alt);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.dark .language-skills {
  background-color: var(--dark-color-light);
}

.language-skills h4 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.dark .language-skills h4 {
  color: var(--light-color);
}

.language-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.language-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.language-note {
  font-size: 0.75rem;
  color: var(--text-color-light);
  font-style: italic;
  margin-top: 0.5rem;
}

.about-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.info-item {
  display: flex;
  align-items: center;
}

.info-title {
  font-weight: 600;
  color: var(--text-color);
  min-width: 120px;
}

.dark .info-title {
  color: var(--light-color);
}

.info-value {
  color: var(--text-color-light);
}

.cta-wrap {
  margin-top: 2rem;
}

/* Skills Section */
.skills-section {
  margin-top: 4rem;
}

.skills-section h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.skills-content {
  display: grid;
  gap: 3rem;
}

.skill-bars {
  margin-bottom: 2rem;
}

.skill-bar {
  margin-bottom: 1.5rem;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.dark .skill-header {
  color: var(--light-color);
}

.skill-progress {
  height: 10px;
  background-color: var(--light-color-muted);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.skill-progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 1.5s infinite;
  transform: translateX(-100%);
}

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

.skill-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
  border-radius: 5px;
  width: 0;
  transition: width 1.5s ease-out;
  position: relative;
}

.skill-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.skill-icon {
  background-color: var(--bg-alt);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  color: var(--text-color);
  transition: var(--transition);
  border: 1px solid transparent;
}

.skill-icon:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}

.dark .skill-icon {
  background-color: var(--dark-color-light);
  color: var(--light-color);
}

.skill-icon i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Services Section */
.services-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-light);
  z-index: -1;
  transition: height 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.service-card:hover::before {
  height: 100%;
}

.dark .service-card {
  background-color: var(--dark-color-light);
}

.service-icon {
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
}

.service-card:hover .service-icon i {
  color: white;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.dark .service-card h3 {
  color: var(--light-color);
}

.service-card p {
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  border: 2px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.dark .pricing-card {
  background-color: var(--dark-color-light);
  border-color: var(--dark-color-light);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  transform: rotate(45deg) translateX(2rem) translateY(-1rem);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-alt);
}

.dark .pricing-header {
  background-color: var(--dark-color);
}

.pricing-header h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.dark .pricing-header h3 {
  color: var(--light-color);
}

.pricing-header p {
  color: var(--text-color-light);
  font-size: 0.875rem;
}

.pricing-content {
  padding: 1.5rem;
}

.price {
  margin-bottom: 1.5rem;
  text-align: center;
}

.price span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-usd {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  color: var(--text-color-light);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--text-color-light);
}

.feature-list i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.pricing-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.benefits-box {
  background-color: var(--bg-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.benefits-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
}

.dark .benefits-box {
  background-color: var(--dark-color-light);
}

.benefits-box h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.dark .benefits-box h3 {
  color: var(--light-color);
}

.benefits-box h3 i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.benefits-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  color: var(--text-color-light);
}

.benefits-list i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.note {
  font-size: 0.875rem;
  color: var(--text-color-light);
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

/* Parallax Section */
.parallax-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.8);
  z-index: 1;
}

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

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

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

.stat-icon {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--light-color);
  background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--light-color);
  font-size: 1.125rem;
}

/* Websites Section */
.websites-grid {
  display: grid;
  gap: 2rem;
}

.website-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.website-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.dark .website-card {
  background-color: var(--dark-color-light);
}

.website-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.website-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 197, 94, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.website-link {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.website-card:hover .website-link {
  transform: translateY(0);
}

.website-content {
  padding: 1.5rem;
}

.website-content h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.dark .website-content h3 {
  color: var(--light-color);
}

.website-content p {
  color: var(--text-color-light);
  margin-bottom: 1rem;
}

.website-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.website-tags span {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.75rem;
}

/* Apps Section */
.apps-grid {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.app-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  transition: var(--transition);
  overflow: hidden;
}

.app-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.dark .app-card {
  background-color: var(--dark-color-light);
}

.app-image {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-alt);
}

.dark .app-image {
  background-color: var(--dark-color);
}

.app-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-content {
  padding: 1.5rem;
  flex: 1;
}

.app-content h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.dark .app-content h3 {
  color: var(--light-color);
}

.app-content p {
  color: var(--text-color-light);
  margin-bottom: 1rem;
}

.app-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color-light);
  font-size: 0.875rem;
}

.app-stat i {
  color: var(--primary-color);
}

.app-link img {
  height: 40px;
  width: auto;
}

.apps-footer {
  text-align: center;
  margin-top: 3rem;
  color: var(--text-color-light);
}

.apps-footer a {
  color: var(--primary-color);
}

.apps-footer a:hover {
  text-decoration: underline;
}

/* Testimonials Section */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-card {
  background-color: var(--dark-color-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(34, 197, 94, 0.3);
  font-size: 2rem;
}

.testimonial-text {
  color: var(--light-color-muted);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--primary-color);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.25rem;
  color: var(--light-color);
}

.author-info p {
  color: var(--primary-color);
  font-size: 0.875rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
}

.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-color);
  color: var(--light-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--primary-color);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--dark-color);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* YouTube Section */
.youtube-grid {
  display: grid;
  gap: 2rem;
}

.youtube-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.youtube-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.dark .youtube-card {
  background-color: var(--dark-color-light);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.dark .video-info h3 {
  color: var(--light-color);
}

.video-info p {
  color: var(--text-color-light);
  margin-bottom: 1rem;
}

.video-meta {
  display: flex;
  gap: 1rem;
  color: var(--text-color-light);
  font-size: 0.875rem;
}

.video-meta i {
  color: var(--primary-color);
  margin-right: 0.25rem;
}

.youtube-footer {
  text-align: center;
  margin-top: 3rem;
}

.youtube-footer p {
  color: var(--text-color-light);
  margin-bottom: 1rem;
}

.youtube-footer a {
  color: var(--primary-color);
}

.youtube-footer a:hover {
  text-decoration: underline;
}

.youtube-footer .btn {
  margin-top: 1rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.dark .contact-info h3 {
  color: var(--light-color);
}

.contact-info p {
  color: var(--text-color-light);
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-method h4 {
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.dark .contact-method h4 {
  color: var(--light-color);
}

.contact-method p,
.contact-method a {
  color: var(--text-color-light);
}

.contact-method a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

.contact-form {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.dark .contact-form {
  background-color: var(--dark-color-light);
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.dark .form-group label {
  color: var(--light-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--bg-color);
  color: var(--text-color);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dark .form-group input,
.dark .form-group textarea {
  background-color: var(--dark-color);
  color: var(--light-color);
  border-color: var(--dark-color-light);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
}

.footer-top {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--dark-color-light);
}

.footer-content {
  display: grid;
  gap: 2rem;
}

.footer-info h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.footer-info p {
  color: var(--text-color-light);
  margin-bottom: 0.5rem;
}

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

.footer-links h3,
.footer-services h3,
.footer-social h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--light-color);
  position: relative;
  display: inline-block;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -8px;
  left: 0;
}

.footer-links ul,
.footer-services ul {
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-color-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-services li {
  color: var(--text-color-light);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-light);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

.language-support {
  margin-top: 1.5rem;
}

.language-support p {
  margin-bottom: 0.5rem;
  color: var(--text-color-light);
}

.language-flags {
  display: flex;
  gap: 0.75rem;
  font-size: 1.5rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-color-light);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-credits {
  font-size: 0.875rem;
}

.footer-credits i {
  color: #e25555;
  margin: 0 0.25rem;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
  box-shadow: var(--shadow);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background-color: var(--primary-hover);
  transform: translateY(-5px);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Media Queries */
@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .mobile-menu-wrap {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    text-align: left;
  }

  .hero-image {
    display: block;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

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

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

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

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

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

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

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

@media (min-width: 1024px) {
  .services-grid,
  .websites-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* For dark/light mode toggle */
@media (prefers-color-scheme: dark) {
  body:not(.light-theme) {
    color-scheme: dark;
  }
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--bg-alt);
}

