/* Base styles */
:root {
  --background: 0 0% 0%;
  --foreground: 0 0% 100%;
  --primary: 222.2 47.4% 55.2%;
  --secondary: 326 100% 70%;
  --accent: 48 96% 70%;
}

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

body {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Theme Toggle */
.controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-control {
  position: relative;
}

.theme-toggle {
  opacity: 0;
  position: absolute;
}

.theme-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  width: 60px;
  height: 30px;
  background-image: linear-gradient(43deg, #4158D0, #C850C0);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
}

.theme-label .fa-sun {
  color: #f8f988;
  font-size: 14px;
}

.theme-label .fa-moon {
  color: #fff;
  font-size: 14px;
}

.toggle-ball {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.theme-toggle:checked + .theme-label .toggle-ball {
  transform: translateX(30px);
}

/* Language Selector */
.language-control select {
  padding: 5px 10px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

body:not(.dark-theme) .language-control select {
  background-color: rgba(0, 0, 0, 0.1);
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  padding: 1.5rem 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-text {
  font-size: 2rem;
  font-weight: bold;
  background-image: linear-gradient(43deg, #4158D0, #C850C0, #FFCC70);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: glow 3s ease-in-out infinite;
}

.logo-text span {
  color: #FFCC70;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-image: linear-gradient(43deg, #4158D0, #C850C0, #FFCC70);
  transition: width 0.3s ease;
}

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

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    linear-gradient(43deg, rgba(65, 88, 208, 0.3) 0%, rgba(200, 80, 192, 0.3) 46%, rgba(255, 204, 112, 0.3) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: slideIn 0.7s ease forwards;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #ccc;
  animation: slideIn 0.7s ease 0.2s forwards;
  opacity: 0;
}

.gradient-text {
  background-image: linear-gradient(43deg, #4158D0, #C850C0, #FFCC70);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-image: linear-gradient(43deg, #4158D0, #C850C0, #FFCC70);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  animation: slideIn 0.7s ease 0.4s forwards;
  opacity: 0;
  background-size: 200% auto;
}

.cta-button:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(65, 88, 208, 0.3);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  animation: glow 3s ease-in-out infinite;
}

/* Services Section */
.services {
  background-color: #080808;
}

body:not(.dark-theme) .services {
  background-color: #f1f1f1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #111;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background-image: linear-gradient(to bottom, rgba(65, 88, 208, 0.05), rgba(200, 80, 192, 0.05));
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background-image: linear-gradient(43deg, #4158D0, #C850C0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #aaa;
}

/* Portfolio Section */
.portfolio {
  background-color: #050505;
}

body:not(.dark-theme) .portfolio {
  background-color: #e9e9e9;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.portfolio-card:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(to top, rgba(65, 88, 208, 0.9), rgba(200, 80, 192, 0.9));
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.view-details-btn {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-details-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Project Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-container {
  background: #111;
  border-radius: 10px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.modal-content {
  padding: 40px;
}

.project-header {
  margin-bottom: 30px;
}

.project-header img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.project-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  background-image: linear-gradient(43deg, #4158D0, #C850C0, #FFCC70);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.project-description {
  margin-bottom: 30px;
  line-height: 1.8;
}

.project-technologies,
.project-features {
  margin-bottom: 30px;
}

.project-technologies h3,
.project-features h3,
.project-code h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #C850C0;
}

.project-technologies ul,
.project-features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.project-technologies li {
  background: linear-gradient(43deg, #4158D0, #C850C0);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.project-features li {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 5px;
  width: 48%;
  margin-bottom: 10px;
}

.project-features li:before {
  content: '•';
  color: #C850C0;
  margin-right: 10px;
}

.project-code {
  margin-top: 40px;
}

.project-code pre {
  background: #0a0a0a;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: 'Courier New', monospace;
  line-height: 1.5;
  max-height: 400px;
  overflow-y: auto;
}

body.modal-open {
  overflow: hidden;
}

/* Pricing Section */
.pricing {
  background-color: #080808;
  padding-bottom: 8rem;
}

body:not(.dark-theme) .pricing {
  background-color: #f1f1f1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background-color: #111;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-header {
  padding: 2rem;
  background-color: #161616;
}

.pricing-card.pro .pricing-header {
  background-image: linear-gradient(43deg, #4158D0, #C850C0);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.price-period {
  font-size: 0.9rem;
  color: #aaa;
}

.pricing-features {
  padding: 2rem;
  list-style: none;
}

.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .not-included {
  color: #666;
}

.pricing-btn {
  display: inline-block;
  margin: 1rem;
  padding: 1rem 2rem;
  background-image: linear-gradient(43deg, #4158D0, #C850C0);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(65, 88, 208, 0.3);
}

.popular-badge {
  position: absolute;
  top: 10px;
  right: -35px;
  background: #FFCC70;
  color: #000;
  padding: 0.5rem 3rem;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
}

.custom-pricing {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  background-color: #111;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.custom-pricing h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background-image: linear-gradient(43deg, #4158D0, #C850C0, #FFCC70);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.custom-pricing p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #aaa;
}

.contact-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(43deg, #4158D0, #C850C0, #FFCC70);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  background-size: 200% auto;
}

.contact-btn:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(65, 88, 208, 0.3);
}

/* Testimonials Section - New! */
.testimonials {
  background-color: #050505;
  padding: 5rem 0;
}

body:not(.dark-theme) .testimonials {
  background-color: #e9e9e9;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.testimonials-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
}

.testimonial-card {
  flex: 0 0 100%;
  background-color: #111;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.quote-icon {
  font-size: 2rem;
  color: #C850C0;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.testimonial-author {
  margin-bottom: 1rem;
}

.author-name {
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
}

.author-company {
  color: #C850C0;
  font-style: italic;
}

.rating {
  color: #FFCC70;
  font-size: 1.2rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 1.5rem;
}

.prev-btn,
.next-btn {
  background-color: transparent;
  border: 2px solid #C850C0;
  color: #C850C0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: #C850C0;
  color: #fff;
}

.dots-container {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(200, 80, 192, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #C850C0;
  transform: scale(1.3);
}

/* Add Testimonial Form */
.add-testimonial-container {
  margin-top: 4rem;
  background-color: #111;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.add-testimonial-container h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  background-image: linear-gradient(43deg, #4158D0, #C850C0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-form input,
.testimonial-form textarea {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1rem;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus {
  outline: none;
  border-color: #C850C0;
}

.testimonial-form textarea {
  min-height: 120px;
  resize: vertical;
}

.rating-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.star-rating {
  display: flex;
  gap: 0.5rem;
  color: #aaa;
  font-size: 1.5rem;
  cursor: pointer;
}

.star-rating i.fas {
  color: #FFCC70;
}

.submit-review-btn {
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  background-image: linear-gradient(43deg, #4158D0, #C850C0);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-review-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(65, 88, 208, 0.3);
}

/* FAQ Section */
.faq {
  background-color: #080808;
  padding: 5rem 0;
}

body:not(.dark-theme) .faq {
  background-color: #f1f1f1;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #111;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.faq-icon .fa-minus {
  display: none;
}

.faq-icon .fa-plus {
  display: block;
}

.faq-item.open .faq-icon .fa-minus {
  display: block;
}

.faq-item.open .faq-icon .fa-plus {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
  color: #aaa;
}

/* About Section */
.about {
  background-color: #080808;
}

body:not(.dark-theme) .about {
  background-color: #f1f1f1;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 2rem;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.skill {
  padding: 0.5rem 1.5rem;
  background-image: linear-gradient(43deg, #4158D0, #C850C0);
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.skill:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(65, 88, 208, 0.3);
}

/* Contact Section */
.contact {
  background-color: #050505;
}

body:not(.dark-theme) .contact {
  background-color: #e9e9e9;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-content p {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 1.5rem;
}

.email-link {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  background-image: linear-gradient(43deg, #4158D0, #C850C0, #FFCC70);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: glow 3s ease-in-out infinite;
}

.email-link:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: #080808;
  padding: 4rem 0 1rem;
}

body:not(.dark-theme) .footer {
  background-color: #151515;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  margin-bottom: 0.75rem;
  color: #aaa;
}

.footer-section i {
  margin-right: 0.75rem;
}

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

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #C850C0;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #777;
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(65, 88, 208, 0.8), 0 0 20px rgba(65, 88, 208, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(200, 80, 192, 0.8), 0 0 30px rgba(200, 80, 192, 0.5);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }

  .menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

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

  .portfolio-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .controls {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar.active .controls {
    display: flex;
  }
  
  .project-features li {
    width: 100%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design for Testimonials */
@media screen and (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .add-testimonial-container {
    padding: 2rem;
  }
  
  .slider-controls {
    flex-wrap: wrap;
  }
  
  .rating-selector {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
/* Language selector dark mode fix */
.language-control select {
  background-color: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body:not(.dark-theme) .language-control select {
  background-color: #fff;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.2);
}


body:not(.dark-theme) .pricing-card .price {
  color: #fff;
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 15px;
  right: -5px;
  background: #ea384c;
  color: #fff;
  padding: 0.25rem 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 90% 100%, 0% 100%);
  z-index: 1;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.4rem;
  margin-right: 0.5rem;
}

.discount-price {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
}

.discount-badge.time-limited {
  font-size: 0.7rem;
  top: 50px;
  background: #333;
}

/* Enhanced service features */
.service-feature {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  color: #aaa;
}

.service-feature i {
  color: #4158D0;
  margin-right: 0.5rem;
}

.service-feature.included i {
  color: #50C878;
}

.service-feature.premium i {
  color: #FFCC70;
}

.service-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.service-badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  background: rgba(200, 80, 192, 0.2);
  color: #C850C0;
}


.time-limited-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes borderGlow {
  0% {
    border-color: rgba(255, 255, 255, 0.5);
  }
  50% {
    border-color: rgba(255, 255, 255, 0.9);
  }
  100% {
    border-color: rgba(255, 255, 255, 0.5);
  }
}