.gradient-text {
  background: linear-gradient(90deg, #52c0b8 0%, #e41870 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section {
  position: relative;
  background-image: url("../images/DigitalMarketing/Hero_back.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(82, 192, 184, 0.92) 0%,
    rgba(228, 24, 112, 0.88) 100%
  );
}

.dark .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.95) 0%,
    rgba(31, 41, 55, 0.92) 50%,
    rgba(75, 85, 99, 0.9) 100%
  );
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .breadcrumb {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.dark .service-card {
  background: rgba(31, 41, 55, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dark .service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-icon {
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
}

.check-icon {
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.benefit-card {
  background: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #52c0b8 0%, #e41870 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.benefit-card:hover::before {
  transform: scaleX(1);
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.benefit-card:hover .icon-wrapper {
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
}
.benefit-card:hover .icon-wrapper i {
  color: white;
  transform: scale(1.1);
}
.benefit-card:hover .arrow-icon {
  transform: translateX(8px);
  color: #e41870;
}
.icon-wrapper {
  transition: all 0.4s ease;
}
.icon-wrapper i {
  transition: all 0.4s ease;
}
.arrow-icon {
  transition: all 0.3s ease;
}
.dark .benefit-card {
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.8) 0%,
    rgba(17, 24, 39, 0.9) 100%
  );
  border: 1px solid rgba(75, 85, 99, 0.3);
}
.dark .benefit-card:hover {
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.95) 0%,
    rgba(17, 24, 39, 1) 100%
  );
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}
.stagger-1 {
  animation-delay: 0.1s;
  opacity: 0;
}
.stagger-2 {
  animation-delay: 0.2s;
  opacity: 0;
}
.stagger-3 {
  animation-delay: 0.3s;
  opacity: 0;
}
.stagger-4 {
  animation-delay: 0.4s;
  opacity: 0;
}
.stagger-5 {
  animation-delay: 0.5s;
  opacity: 0;
}
.stagger-6 {
  animation-delay: 0.6s;
  opacity: 0;
}
.stagger-7 {
  animation-delay: 0.7s;
  opacity: 0;
}
.stagger-8 {
  animation-delay: 0.8s;
  opacity: 0;
}
.stagger-9 {
  animation-delay: 0.9s;
  opacity: 0;
}
.stagger-10 {
  animation-delay: 1s;
  opacity: 0;
}

.plan-card {
  background: white;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
}
.plan-card.active {
  border-left-color: #e41870;
  background: linear-gradient(to right, rgba(82, 192, 184, 0.05), white);
}
.plan-card:hover {
  border-left-color: #52c0b8;
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.feature-item {
  /* Card look */
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);

  /* Animation */
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);

  /* Layout */
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Dark mode support (optional) */
.dark .feature-item {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.feature-item.show {
  opacity: 1;
  transform: translateX(0);
}

/* Hover effect */
.feature-item:hover {
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* Icon hover */
.feature-item:hover .check-icon {
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
}

.check-icon {
  transition: all 0.3s ease;
  background: #52c0b8;
}
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(82, 192, 184, 0.3) 0%,
    rgba(228, 24, 112, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.image-container:hover::before {
  opacity: 1;
}
.image-container img {
  transition: transform 0.5s ease;
}
.image-container:hover img {
  transform: scale(1.05);
}
.plan-title {
  position: relative;
  display: inline-block;
}
.plan-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #52c0b8 0%, #e41870 100%);
  transition: width 0.4s ease;
}
.plan-card:hover .plan-title::after,
.plan-card.active .plan-title::after {
  width: 100%;
}
.dark .plan-card {
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.8) 0%,
    rgba(17, 24, 39, 0.9) 100%
  );
  border: 1px solid rgba(75, 85, 99, 0.3);
}
.dark .plan-card.active {
  background: linear-gradient(
    to right,
    rgba(82, 192, 184, 0.1),
    rgba(31, 41, 55, 0.9)
  );
}
.gradient-text {
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(82, 192, 184, 0.2) 0%,
    rgba(228, 24, 112, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.image-container:hover::before {
  opacity: 1;
}
.image-container img {
  transition: transform 0.5s ease;
}
.image-container:hover img {
  transform: scale(1.05);
}
.feature-item {
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
  animation: slideInRight 0.5s ease forwards;
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-item:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-item:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-item:hover {
  transform: translateX(8px);
  background: linear-gradient(to right, rgba(82, 192, 184, 0.05), transparent);
}
.feature-item:hover .check-icon {
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
  transform: scale(1.15) rotate(360deg);
}
.check-icon {
  transition: all 0.5s ease;
  background: #52c0b8;
}
.content-section {
  animation: fadeInUp 0.8s ease forwards;
}

.badge {
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
  animation: pulse 2s ease-in-out infinite;
}

.dark .image-container {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.faq-item {
  transition: all 0.3s ease;
  background: white;
  border-left: 4px solid transparent;
}
.faq-item:hover {
  border-left-color: #52c0b8;
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.faq-item.active {
  border-left-color: #e41870;
  background: linear-gradient(to right, rgba(82, 192, 184, 0.03), white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  opacity: 0;
}
.faq-answer.show {
  max-height: 500px;
  opacity: 1;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.chevron-icon {
  transition: transform 0.3s ease;
}
.faq-item.active .chevron-icon {
  transform: rotate(90deg);
}
.badge {
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.feature-badge {
  background: linear-gradient(
    135deg,
    rgba(82, 192, 184, 0.1) 0%,
    rgba(228, 24, 112, 0.1) 100%
  );
  border: 1px solid rgba(82, 192, 184, 0.3);
}
.feature-badge:hover {
  background: linear-gradient(
    135deg,
    rgba(82, 192, 184, 0.15) 0%,
    rgba(228, 24, 112, 0.15) 100%
  );
  border-color: rgba(228, 24, 112, 0.5);
}

.gradient-text {
  background: linear-gradient(90deg, #52c0b8 0%, #e41870 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-text {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

/* FAQ Section */
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

/* Left Side - Static */
.faq-left {
  position: sticky;
  top: 2rem;
  padding: 2rem;
}

.faq-badge {
  display: inline-block;
  color: #e41870;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

body.dark .faq-badge {
  color: #f472b6;
}

.faq-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.2;
}

body.dark .faq-title {
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-description {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

body.dark .faq-description {
  color: #9ca3af;
}

.faq-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

body.dark .feature-item {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(82, 192, 184, 0.2);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: white;
  font-size: 1.25rem;
}

.feature-text {
  color: #374151;
  font-weight: 500;
}

body.dark .feature-text {
  color: #e5e7eb;
}

/* Right Side - Scrollable */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

body.dark .faq-item {
  background: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  box-shadow: 0 20px 40px rgba(82, 192, 184, 0.15);
  transform: translateY(-5px);
}

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

.faq-question h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.5;
  flex: 1;
}

body.dark .faq-question h3 {
  color: #ffffff;
}

.faq-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-toggle i {
  color: white;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 2rem 2rem 2rem;
  opacity: 1;
}

.faq-answer p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1rem;
  padding-top: 0.5rem;
}

body.dark .faq-answer p {
  color: #d1d5db;
}

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #52c0b8 0%, #e41870 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 100;
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.theme-toggle i {
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.theme-toggle .fa-sun {
  transform: rotate(0deg) scale(1);
}

body.dark .theme-toggle .fa-sun {
  transform: rotate(90deg) scale(0);
  position: absolute;
}

.theme-toggle .fa-moon {
  transform: rotate(-90deg) scale(0);
  position: absolute;
}

body.dark .theme-toggle .fa-moon {
  transform: rotate(0deg) scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-left {
    position: static;
  }

  .faq-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  body {
    /* padding: 1rem; */
  }

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

  .faq-description {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-question h3 {
    font-size: 1.125rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

/* Scroll Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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