:root {
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --dark: #0f172a;
  --darker: #020617;
  --light: #f8fafc;
  --gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --glass: rgba(55, 56, 56, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --text-gradient: linear-gradient(90deg, #ec4899, #8b5cf6);

  /* Light mode colors */
  --bg-color: #f1f5f9;
  --text-color: #0f172a;
  --navbar-bg: rgba(2, 6, 23, 0.95);
}

/* Dark mode colors */
[data-theme="dark"] {
  --bg-color: #020617;
  --text-color: #f8fafc;
  --navbar-bg: rgba(15, 23, 42, 0.95);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.menu-open {
  overflow: hidden;
}

/* Navbar Styles */
.navbar {
  background: var(--navbar-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  color: var(--light);
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  padding:0px 90px;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: background-color 0.3s ease;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: auto;
  width: 160px;
  max-width: 100%;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0.75rem;
  font-size: 1.05rem;
}

.nav-link:hover {
  color: white;
}

.nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: white;
  font-weight: 600;
}

.nav-link.active::before {
  transform: scaleX(1);
}

.cta-button {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  margin-left: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: var(--gradient);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
  z-index: 1001;
}

/* Dark Mode Toggle */
.theme-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 999;
  border: none;
  transition: transform 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

.theme-toggle i {
  font-size: 1.25rem;
}

@media (max-width: 1031px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .nav-menu {
    position: fixed;
    top: 100px;
    left: -100%;
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 80px);
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    transition: all 0.5s ease;
    box-shadow: var(--shadow);
    border-right: 1px solid var(--glass-border);
    z-index: 99;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-button {
    display: none;
  }
}

@media (max-width: 768px) {
  .logo-img {
    width: 140px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 120px;
  }
  .theme-toggle {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/* hero section */

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 5%;
  margin-top: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .hero-section {
  /* background: linear-gradient(135deg, #181e34 0%, #252a34 100%); */
  background: var(--bg-color);
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}

[data-theme="dark"] .particle-canvas {
  opacity: 0.3;
}

/* Rest of your existing styles remain exactly the same */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--darker);
  transition: color 0.3s ease;
}

[data-theme="dark"] .hero-text h1 {
  color: var(--light);
}

.hero-text h1 span {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  transition: color 0.3s ease;
}

[data-theme="dark"] .hero-text p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-image-desktop {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.hero-image-desktop img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  animation: float 6s ease-in-out infinite;
}

[data-theme="dark"] .hero-image-desktop img {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.hero-image-mobile {
  display: none;
  width: 100%;
  max-width: 500px;
  height: 100%;
  margin-bottom: 2rem;
}

.hero-image-mobile img {
  position: relative;
  top: 50px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .hero-image-mobile img {
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.primary-btn {
  background: var(--gradient);
  color: white !important;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.primary-btn.pulse {
  animation: pulse 2s infinite;
}

.secondary-btn {
  background: white;
  color: var(--primary-dark) !important;
  border: 2px solid var(--primary);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

[data-theme="dark"] .secondary-btn {
  background: var(--darker);
  color: var(--primary-light) !important;
  border-color: var(--primary-light);
}

.secondary-btn:hover {
  background: var(--primary-light);
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

[data-theme="dark"] .secondary-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(99, 102, 241, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-section {
    padding: 3rem 5%;
    margin-top: 60px;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

  .hero-image-desktop {
    display: none;
  }

  .hero-image-mobile {
    display: block;
  }
  .hero-image-mobile img {
    height: 100%;
    width: 100%;
    max-width: 600px;
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 2rem 5%;
    margin-top: 60px;
  }

  .hero-text h1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .primary-btn,
  .secondary-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  .hero-image-mobile img {
    height: 100%;
    max-height: 300px;
  }
}

@media (max-width: 400px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 220px;
  }
  .hero-image-mobile img {
    height: 250px;
  }
}

/* About Section Styles */
.about-section {
  padding: 5rem 5%;
  background-color: var(--bg-color);
  transition: background-color 0.3s ease;
}
[data-theme="dark"] .about-section {
  background: var(--navbar-bg);
}
.about-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 5rem;
}

.about-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

[data-theme="dark"] .about-image {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content {
  flex: 1;
}

.about-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--darker);
  font-family: "Montserrat", sans-serif;
  transition: color 0.3s ease;
}

[data-theme="dark"] .about-content h1 {
  color: var(--light);
}

.about-content h1 span {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 2.5rem;
  max-width: 600px;
  transition: color 0.3s ease;
}

[data-theme="dark"] .about-content p {
  color: rgba(255, 255, 255, 0.85);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

[data-theme="dark"] .feature {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .feature:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.2rem;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--darker);
  transition: color 0.3s ease;
}

[data-theme="dark"] .feature h3 {
  color: var(--light);
}

.feature p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #64748b;
  transition: color 0.3s ease;
}

[data-theme="dark"] .feature p {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 3rem;
  }

  .about-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-content {
    text-align: center;
  }

  .about-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .about-features {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 4rem 5%;
  }

  .about-content h1 {
    font-size: 2.3rem;
  }

  .feature {
    padding: 1.25rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}



/* UGC Section */
/* Base Styles */
.ugc-section {
  position: relative;
  padding: 4rem 1rem;
  color: #1e293b;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
}

[data-theme="dark"] .ugc-section {
  background-color:(--bg-color);
}

.particle-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Content Layout */
.ugc-content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .ugc-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .benefits {
    flex: 1;
    padding-right: 3rem;
  }

  .video-preview {
    flex: 1;
  }
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
  font-size: 1.15rem;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.25rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
}

[data-theme="dark"] .benefit-item {
  background: rgba(15, 23, 42, 0.7);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  color: white;
}

.icon {
  margin-right: 1.25rem;
  font-size: 1.75rem;
  min-width: 40px;
  text-align: center;
}

/* Video Preview */
.video-preview {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.video-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* Creators CTA */
.creators-cta {
  text-align: center;
  margin-top: 3rem;
  font-weight: 600;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

[data-theme="dark"] .creators-cta {
  background: rgba(15, 23, 42, 0.7);
}

.creators-cta p {
  margin: 0;
  color: #3b82f6;
}

[data-theme="dark"] .creators-cta p {
  color: #818cf8;
}

.arrow {
  font-size: 1.75rem;
  margin-top: 0.75rem;
  animation: bounce 2s infinite;
  color: #3b82f6;
}

[data-theme="dark"] .arrow {
  color: #818cf8;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* creators section */
/* Characters Section */
.characters-section {
  padding: 5rem 5%;
  background-color: var(--bg-color);
  transition: background-color 0.3s ease;
}
[data-theme="dark"] .characters-section {
  background-color: var(--navbar-bg);
}

.characters-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.character-card {
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

[data-theme="dark"] .character-card {
  background: #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.character-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .character-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.character-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  overflow: hidden;
  cursor: pointer;
}

.character-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  background-color: #000;
}

.play-pause-btn-david,
.play-pause-btn-sarah,
.play-pause-btn-michael {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.character-video:hover .play-pause-btn-david,
.character-video:hover .play-pause-btn-sarah,
.character-video:hover .play-pause-btn-michael {
  background: rgba(0, 0, 0, 0.8);
}

.character-card:hover .character-video video {
  transform: scale(1.05);
}

.character-details {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.character-details h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--darker);
  transition: color 0.3s ease;
}

[data-theme="dark"] .character-details h3 {
  color: var(--light);
}

.character-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.language-tag {
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #e0f2fe;
  color: #0369a1;
}

[data-theme="dark"] .language-tag {
  background: #1e3a8a;
  color: #bfdbfe;
}

.select-character-btn {
  width: 100%;
  padding: 0.6rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.select-character-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.select-character-btn.shared {
  background: #4caf50;
}


.discount-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff5722;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  z-index: 1;
}

.character-card {
  position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
  .characters-container {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .characters-section {
    padding: 3rem 5%;
  }

  .characters-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .characters-container::-webkit-scrollbar {
    display: none;
  }

  .character-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
    margin-right: 1rem;
  }

  .play-pause-btn-david,
  .play-pause-btn-sarah,
  .play-pause-btn-michael {
    opacity: 1;
  }
}

/* achivements section */

/* Achievements Section Styles */
.achievements-section {
  background: #ffffff;
  padding: 4rem 5%;
  position: relative;
}

[data-theme="dark"] .achievements-section {
  background: var(--navbar-bg);
}

.achievements-container {
  max-width: 1200px;
  margin: 0 auto;
}

.achievements-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.achievement-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.vertical-divider {
  width: 1px;
  height: 60px;
  background-color: #e2e8f0;
  display: block;
}

[data-theme="dark"] .vertical-divider {
  background-color: #334155;
}
.achievement-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.achievement-number span.counter {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

[data-theme="dark"] .achievement-number span.counter {
  color: #f8fafc;
}

.achievement-number .plus-sign,
.achievement-number .percent-sign,
.achievement-number .slash-sign,
.achievement-number .x-sign {
  font-size: 1.8rem;
  font-weight: 500;
  color: #6366f1;
  line-height: 1;
}

[data-theme="dark"] .achievement-number .plus-sign,
[data-theme="dark"] .achievement-number .percent-sign,
[data-theme="dark"] .achievement-number .slash-sign,
[data-theme="dark"] .achievement-number .x-sign {
  color: #a5b4fc;
}

.achievement-label {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 0.5rem;
}

[data-theme="dark"] .achievement-label {
  color: #94a3b8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .achievement-number span.counter {
    font-size: 2.4rem;
  }

  .achievement-number .plus-sign,
  .achievement-number .percent-sign,
  .achievement-number .slash-sign,
  .achievement-number .x-sign {
    font-size: 1.5rem;
  }

  .achievement-label {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .achievements-row {
    gap: 0.5rem;
  }

  .achievement-item {
    flex: 0 0 calc(50% - 0.5rem);
    min-width: auto;
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .achievement-item {
    flex: 0 0 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}

/* our services */
/* Modern Services Section */
.services-section {
  position: relative;
  padding: 120px 0;
  background: var(--bg-color);
  color: white;
  overflow: hidden;
}
[data-theme="dark"] .services-section {
  background:var(--bg-color);
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: 1;
}

[data-theme="dark"] .particle {
  background-color: rgba(199, 210, 254, 0.8);
}

.services-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  /* text-align: center; */
  z-index: 2;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 3rem;
}
/*  */
.service-row.reverse {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1;
  padding: 2rem;
  position: relative;
}

.service-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

[data-theme="dark"] .service-badge {
  background: rgba(129, 140, 248, 0.2);
  color: #a5b4fc;
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
  transition: color 0.3s ease;
}

[data-theme="dark"] .service-title {
  color: #f8fafc;
}

.service-description {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

[data-theme="dark"] .service-description {
  color: #cbd5e1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.service-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

[data-theme="dark"] .service-features li {
  color: #cbd5e1;
}

.service-features li span {
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
}

[data-theme="dark"] .service-features li span {
  color: #818cf8;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #6366f1;
  text-decoration: none;
  transition: all 0.3s ease;
}

[data-theme="dark"] .service-cta {
  color: #818cf8;
}

.service-cta:hover {
  color: #4f46e5;
  transform: translateX(5px);
}

[data-theme="dark"] .service-cta:hover {
  color: #a5b4fc;
}

.service-cta::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-cta:hover::after {
  transform: translateX(3px);
}

.service-image {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

/* Decorative Elements */
.services-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.1) 0%,
    rgba(99, 102, 241, 0) 70%
  );
  z-index: 1;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(139, 92, 246, 0) 70%
  );
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-row {
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .service-row {
    flex-direction: column;
    gap: 2rem;
  }

  .service-row.reverse {
    flex-direction: column;
  }

  .service-content {
    padding: 1rem 0;
  }

  .service-image {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 4rem 5%;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-title {
    font-size: 1.6rem;
  }
}

/* contact us section */
/* Base Styles */
.contact-section {
  background: #ffffff;
  padding: 4rem 1rem;
  position: relative;
}

[data-theme="dark"] .contact-section {
  background: var(--navbar-bg);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

[data-theme="dark"] .section-title {
  color: #f8fafc;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-content {
    flex-direction: row;
  }
}

/* Form Styles */
.contact-form {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .contact-form {
  background: #1e293b;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  font-size: 1rem;
  color: #1e293b;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  background: transparent;
  outline: none;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  color: #f8fafc;
  border-bottom-color: #334155;
}

/* Fix dropdown dark mode */
[data-theme="dark"] .form-group select option {
  background: #1e293b;
  color: #f8fafc;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 1rem;
  color: #64748b;
  pointer-events: none;
  transition: all 0.3s ease;
}

[data-theme="dark"] .form-group label {
  color: #94a3b8;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -0.5rem;
  font-size: 0.8rem;
  color: #6366f1;
}

[data-theme="dark"] .form-group input:focus ~ label,
[data-theme="dark"] .form-group input:valid ~ label,
[data-theme="dark"] .form-group select:focus ~ label,
[data-theme="dark"] .form-group select:valid ~ label,
[data-theme="dark"] .form-group textarea:focus ~ label,
[data-theme="dark"] .form-group textarea:valid ~ label {
  color: #818cf8;
}

.underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #6366f1;
  transition: width 0.3s ease;
}

[data-theme="dark"] .underline {
  background: #818cf8;
}

.form-group input:focus ~ .underline,
.form-group input:valid ~ .underline,
.form-group select:focus ~ .underline,
.form-group select:valid ~ .underline,
.form-group textarea:focus ~ .underline,
.form-group textarea:valid ~ .underline {
  width: 100%;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #6366f1;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

[data-theme="dark"] .submit-btn {
  background: #818cf8;
}

.submit-btn:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}

[data-theme="dark"] .submit-btn:hover {
  background: #a5b4fc;
}

/* Contact Info */
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .info-card {
  background: #1e293b;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-theme="dark"] .info-icon {
  background: rgba(129, 140, 248, 0.2);
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: #6366f1;
}

[data-theme="dark"] .info-icon svg {
  color: #818cf8;
}

.info-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .info-content h3 {
  color: #f8fafc;
}

.info-content p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0.25rem 0;
}

[data-theme="dark"] .info-content p {
  color: #94a3b8;
}

/* Social Links */
.social-links {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .social-links {
  background: #1e293b;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.social-links h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

[data-theme="dark"] .social-links h3 {
  color: #f8fafc;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

[data-theme="dark"] .social-icons a {
  background: rgba(129, 140, 248, 0.2);
}

.social-icons a:hover {
  background: #6366f1;
}

[data-theme="dark"] .social-icons a:hover {
  background: #818cf8;
}

.social-icons a svg {
  width: 20px;
  height: 20px;
  color: #64748b;
}

[data-theme="dark"] .social-icons a svg {
  color: #94a3b8;
}

.social-icons a:hover svg {
  color: white;
}

/* footer */
footer {
  color: #2c3e50;
  background-color: #ecf0f1;
  text-align: center;
  padding: 1rem 0;
  width: 100%;
  font-family: "Arial", sans-serif;
  font-size: 0.9rem;
  position: relative;
  bottom: 0;
}

[data-theme="dark"] footer {
  background-color: #000000;
  color: #ecf0f1;
}
footer p {
  margin: 0;
}
footer a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #2980b9;
}



/* Bundle Deal Section Styles */
.bundle-section {
  padding: 60px 20px;
  background-color: var(--bg-color);
  text-align: center;
}

.bundle-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

/* Default (Light Mode) */
.bundle-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px 25px;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 
              0 5px 10px rgba(0, 0, 0, 0.08),
              0 3px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  color: var(--text-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Dark Mode */
[data-theme="dark"] .bundle-card {
 box-shadow:
  0 35px 70px -15px rgba(0, 0, 0, 0.7),    /* Deep “hovered” shadow */
  0 15px 40px rgba(0, 0, 0, 0.85),         /* Core depth */
  0 0 25px rgba(0, 180, 255, 0.25);        /* Soft colored ambient glow for pop */

  border: 2px solid rgba(255, 255, 255, 0.1);
  background: var(--card-bg);
}

/* Hover Effects - Light Mode */
.bundle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 
              0 10px 15px rgba(0, 0, 0, 0.1),
              0 5px 5px rgba(0, 0, 0, 0.08);
}

/* Hover Effects - Dark Mode */
[data-theme="dark"] .bundle-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
              0 10px 15px rgba(0, 0, 0, 0.3),
              0 5px 5px rgba(0, 0, 0, 0.2);
}

.highlight-bundle {
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}

.bundle-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--light);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.bundle-icon {
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.bundle-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.price {
  font-size: 28px;
  font-weight: bold;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 15px 0;
}

.bundle-card p {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.5;
}

.select-bundle-btn {
  background: var(--gradient);
  color: var(--light);
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.select-bundle-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.select-bundle-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Top Offer Bar Styles - Responsive */
.offer-bar {
  position: relative;
  top: 100px;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #ff5722, #ff7043);
  color: white;
  padding: 10px 40px 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.offer-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: clamp(14px, 2vw, 16px); /* Responsive font size */
}

.offer-icon {
  margin-right: 5px;
  font-size: 1.2em;
}

.offer-text {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.highlight {
  font-weight: bold;
  background: white;
  color: #ff5722;
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 3px;
  white-space: nowrap;
}

.offer-btn {
  color: white;
  font-weight: bold;
  text-decoration: underline;
  white-space: nowrap;
  margin-left: 10px;
  padding: 4px 6px;
  border-radius: 4px;
  transition: all 0.3s;
}

.offer-btn:hover {
  color: #ffe0b2;
  background: rgba(255,255,255,0.1);
}

.close-offer {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0 5px;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .offer-bar {
    top: 100px; /* Adjust position for mobile */
    padding: 8px 35px 8px 10px;
  }
  
  .offer-content {
    gap: 5px;
  }
  
  .offer-btn {
    margin-left: 5px;
    padding: 2px 4px;
  }
}

@media (max-width: 480px) {
  .offer-bar {
    top: 100px;
    padding: 6px 30px 6px 8px;
  }
  
  .offer-text {
    flex-direction: column;
    gap: 2px;
  }
  
  .highlight {
    margin: 0;
  }
}