/* HOME PAGE SPECIFIC STYLES */

/* Section Backgrounds for Home Page */
.hero-bg {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(59, 130, 246, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(139, 92, 246, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(34, 197, 94, 0.08) 0%,
      transparent 50%
    );
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
}

.about-bg {
  background:
    linear-gradient(45deg, rgba(30, 41, 59, 0.9) 0%, transparent 50%),
    radial-gradient(
      circle at 70% 30%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 40%
    );
  background-size: 150% 150%;
  animation: gradientMove 20s ease infinite;
}

.services-bg {
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 40%
    ),
    linear-gradient(90deg, rgba(15, 23, 42, 0.7) 0%, transparent 50%);
  background-size: 180% 180%;
  animation: gradientFlow 25s ease infinite;
}

.differentiation-bg {
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 40%
    ),
    linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, transparent 50%);
  background-size: 160% 160%;
  animation: gradientPulse 18s ease infinite;
}

.social-proof-bg {
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(59, 130, 246, 0.07) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(139, 92, 246, 0.07) 0%,
      transparent 40%
    ),
    linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: gradientShift 22s ease infinite;
}

.cta-bg {
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 40%
    );
  background-size: 150% 150%;
  animation: gradientMove 15s ease infinite;
}

/* Home Page Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.text-content {
  flex: 1;
  z-index: 2;
}

.tagline {
  font-size: 14px;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
  padding: 5px 15px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 30px;
  animation: fadeIn 1s ease;
}

/* Revealing Path Animation Styles */
.revealing-path-heading {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
}

.path-text-left {
  color: var(--light);
  font-weight: 600;
  opacity: 1;
  animation: fadeIn 0.5s ease forwards;
}

.path-text-right {
  color: var(--primary-light);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInSlide 0.8s ease 1.2s forwards;
}

.path-container {
  position: relative;
  width: 120px;
  height: 20px;
  margin: 0 10px;
  opacity: 0;
  animation: fadeIn 0.3s ease 0.5s forwards;
}

.path-line {
  width: 100%;
  height: 100%;
}

.path-draw {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawPath 1.2s ease 0.5s forwards;
}

.path-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: moveDot 1.2s ease 0.5s forwards;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

/* Revealing Path Animations */
@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes moveDot {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 1;
  }
}

@keyframes fadeInSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.description {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 500px;
  animation: fadeIn 1.5s ease;
}

.features {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  animation: fadeIn 2s ease;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 15px;
  padding: 8px 16px;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgba(59, 130, 246, 0.1);
}

.feature i {
  color: var(--primary);
  font-size: 18px;
}

.buttons {
  display: flex;
  gap: 20px;
  animation: fadeIn 2.5s ease;
}

/* Marketing Illustration Styles */
.marketing-illustration {
  width: 100%;
  max-width: 600px;
  height: 400px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

.digital-marketing-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.1));
}

.chart-title {
  fill: var(--light);
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.bar {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.bar:hover {
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.2));
}

.data-line {
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
}

.data-point {
  filter: drop-shadow(0 0 4px currentColor);
}

.central-node {
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.data-stream circle {
  filter: drop-shadow(0 0 6px currentColor);
}

.floating-element {
  filter: drop-shadow(0 0 8px currentColor);
}

.illustration-legend {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  background: rgba(15, 23, 42, 0.8);
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #334155;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #94a3b8;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

/* Hover effects for interactivity */
.marketing-illustration:hover .central-node {
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
}

.marketing-illustration:hover .bar {
  opacity: 0.9;
}

/* Animation for the entire illustration container */
@keyframes illustrationFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.marketing-illustration {
  animation: illustrationFloat 6s ease-in-out infinite;
}

/* About Section Content Blocks */
.content-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.content-block {
  padding: 25px;
  background: rgba(15, 23, 42, 0.3);
  border-radius: 15px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.content-block:hover {
  transform: translateY(-5px);
  background: rgba(15, 23, 42, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.content-block h3 {
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-block h3 i {
  color: var(--primary);
}

.content-block p {
  color: var(--gray);
  line-height: 1.7;
}

/* Process Section Styles */
.process-section {
  margin-top: 60px;
  text-align: center;
}

.process-section h4 {
  font-size: 24px;
  margin-bottom: 40px;
  color: var(--light);
  position: relative;
  display: inline-block;
}

.process-section h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary),
    transparent
  );
  transform: translateX(-50%);
  z-index: 1;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.process-step:nth-child(odd) {
  flex-direction: row-reverse;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  border: 5px solid rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 4px var(--primary);
}

.step-content {
  background: rgba(15, 23, 42, 0.3);
  border-radius: 15px;
  padding: 25px;
  width: calc(50% - 50px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.step-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary);
  transform: translateY(-50%) rotate(45deg);
}

.process-step:nth-child(even) .step-content::before {
  right: -10px;
  border-right: 1px solid rgba(59, 130, 246, 0.2);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.process-step:nth-child(odd) .step-content::before {
  left: -10px;
  border-left: 1px solid rgba(59, 130, 246, 0.2);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.step-content:hover {
  transform: translateY(-5px);
  background: rgba(15, 23, 42, 0.5);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-content h5 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-content p {
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Animation for process steps */
@keyframes stepFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.process-step:hover .step-number {
  animation: stepFloat 0.6s ease;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/* Visual content area */
.visual-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Animated background elements */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 15s infinite linear;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 5%;
  background: var(--primary);
  border-radius: 50%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 80%;
  background: var(--accent);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: -5s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 15%;
  background: var(--success);
  border-radius: 50%;
  animation-delay: -10s;
}

.shape:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 70%;
  background: var(--warning);
  border-radius: 50%;
  animation-delay: -7s;
}

/* Home Page Specific Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes flip {
  0% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
  }
}

@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Section Common Styles (for home page) */
section {
  padding: 120px 40px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

section.active {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--light), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 18px;
}

/* About Section (Home Page) */
.about {
  background: var(--secondary);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-content {
  flex: 1;
}

.about-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Services Section - Infinite Carousel with Navigation */
.services {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.services-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.services-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
  cursor: grab;
}

.services-track.dragging {
  cursor: grabbing;
  transition: none;
}

.service-card {
  background: var(--secondary);
  border-radius: 15px;
  padding: 25px 20px;
  transition: all 0.4s ease;
  border: 1px solid #334155;
  position: relative;
  overflow: hidden;
  z-index: 1;
  flex: 0 0 280px;
  min-width: 280px;
  height: 320px;
  display: flex;
  flex-direction: column;
  user-select: none;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--primary-light);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-light);
}

.service-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.service-link {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
  font-size: 14px;
}

.service-link:hover {
  gap: 12px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid #334155;
  color: var(--light);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--primary);
  transform: scale(1.1);
}

/* Carousel indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray);
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary);
  opacity: 1;
  transform: scale(1.2);
}

/* Differentiation Section - New Design */
.differentiation {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.differentiation-container {
  max-width: 1400px;
  margin: 0 auto;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.diff-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.diff-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.diff-item:hover::before {
  opacity: 0.1;
}

.diff-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
}

.diff-icon {
  width: 90px;
  height: 90px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: var(--primary);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.diff-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.diff-item:hover .diff-icon::before {
  opacity: 0.2;
}

.diff-item:hover .diff-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(59, 130, 246, 0.2);
}

.diff-item h3 {
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.diff-item h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.diff-item:hover h3::after {
  width: 80px;
}

.diff-item p {
  color: var(--gray);
  line-height: 1.7;
}

/* Social Proof - Testimonial Carousel with Navigation */
.social-proof {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.social-proof-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 40px;
  cursor: grab;
}

.testimonials-track.dragging {
  cursor: grabbing;
  transition: none;
}

.testimonial {
  background: var(--secondary);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  border: 1px solid #334155;
  transition: all 0.4s ease;
  flex: 0 0 380px;
  min-width: 380px;
  user-select: none;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  color: rgba(59, 130, 246, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 25px;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--gray);
  font-size: 14px;
}

/* CTA Section (Home Page) */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  text-align: center;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.1)" d="M0,0 L1000,0 L1000,1000 L0,1000 Z"></path></svg>');
  background-size: cover;
  opacity: 0.1;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Updated CTA Button in CTA Section to match hero button */
.cta-section .cta-button {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light)
  ) !important;
  color: white !important;
  text-decoration: none;
  border: none !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4) !important;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.cta-section .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-section .cta-button:hover::before {
  left: 100%;
}

.cta-section .cta-button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6) !important;
  color: white !important;
}

/* Responsive design for home page */
@media (max-width: 1200px) {
  .about-container {
    gap: 50px;
  }

  .revealing-path-heading {
    font-size: 46px;
  }

  .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .features {
    justify-content: center;
  }

  .buttons {
    justify-content: center;
  }

  .content-blocks {
    grid-template-columns: 1fr;
  }

  .marketing-illustration {
    height: 350px;
    max-width: 500px;
  }

  .illustration-legend {
    flex-direction: column;
    gap: 8px;
    right: 10px;
    bottom: 10px;
  }

  .revealing-path-heading {
    justify-content: center;
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 20px;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .revealing-path-heading {
    font-size: 36px;
    gap: 10px;
  }

  .path-container {
    width: 80px;
    margin: 0 5px;
  }

  .marketing-illustration {
    height: 300px;
    max-width: 400px;
    padding: 15px;
  }

  .chart-title {
    font-size: 14px;
  }

  .illustration-legend {
    position: relative;
    margin-top: 15px;
    right: auto;
    bottom: auto;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    flex-direction: row !important;
    margin-bottom: 30px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 20px;
    margin-right: 20px;
    position: relative;
    left: 0;
  }

  .step-content {
    width: calc(100% - 80px);
    margin-left: 0;
  }

  .process-step:nth-child(even) .step-content::before,
  .process-step:nth-child(odd) .step-content::before {
    left: -10px;
    right: auto;
    border-left: 1px solid rgba(59, 130, 246, 0.2);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    border-right: none;
    border-top: none;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .service-card {
    flex: 0 0 260px;
    min-width: 260px;
    height: 300px;
    padding: 20px 15px;
  }

  .service-card p {
    -webkit-line-clamp: 3;
  }

  .testimonial {
    flex: 0 0 340px;
    min-width: 340px;
    padding: 30px 20px;
  }

  .testimonial-content {
    -webkit-line-clamp: 4;
  }
}

@media (max-width: 576px) {
  .revealing-path-heading {
    font-size: 32px;
    flex-direction: column;
    gap: 15px;
  }

  .path-container {
    order: 1;
    width: 120px;
    margin: 10px 0;
  }

  .path-text-left, .path-text-right {
    order: 0;
  }

  .path-text-right {
    order: 2;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .marketing-illustration {
    height: 250px;
    max-width: 320px;
  }

  .illustration-legend {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  .legend-item {
    font-size: 11px;
  }

  .process-section h4 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .step-content {
    padding: 20px;
    width: calc(100% - 70px);
  }

  .step-content h5 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 14px;
  }

  .service-card {
    flex: 0 0 240px;
    min-width: 240px;
    height: 280px;
    padding: 20px 15px;
  }

  .service-card p {
    -webkit-line-clamp: 3;
    font-size: 13px;
  }

  .testimonial {
    flex: 0 0 300px;
    min-width: 300px;
    padding: 25px 15px;
  }

  .testimonial-content {
    -webkit-line-clamp: 3;
    font-size: 14px;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .author-info h4 {
    font-size: 16px;
  }

  .author-info p {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .revealing-path-heading {
    font-size: 28px;
  }

  .path-container {
    width: 100px;
  }

  .marketing-illustration {
    height: 200px;
    max-width: 280px;
  }

  .content-blocks {
    gap: 20px;
  }

  .content-block {
    padding: 20px;
  }

  .step-content {
    padding: 15px 10px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .step-content h5 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 13px;
  }
}

/* ====================== WHITE THEME FOR HOME PAGE SECTIONS ====================== */

/* White theme base styles */
.white-theme {
  background: white !important;
  color: #333 !important;
}

/* Hide dark backgrounds in white theme sections */
.white-theme .section-bg {
  display: none !important;
}

/* Section Title Styles for White Theme */
.white-theme .section-title h2 {
  color: #333 !important;
  background: linear-gradient(to right, #333, #555) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.white-theme .section-title p {
  color: #666 !important;
}

.white-theme .section-title h2::after {
  background: var(--primary) !important;
}

/* About Section White Theme */
.white-theme.about {
  background: white !important;
}

.white-theme .about-content p {
  color: #666 !important;
}

.white-theme .content-block {
  background: #f8f9fa !important;
  border: 1px solid #e9ecef !important;
}

.white-theme .content-block h3 {
  color: #333 !important;
}

.white-theme .content-block p {
  color: #666 !important;
}

.white-theme .content-block:hover {
  background: #e9ecef !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

/* Marketing Illustration White Theme */
.white-theme .marketing-illustration {
  background: rgba(248, 250, 252, 0.9) !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.white-theme .chart-title {
  fill: #333 !important;
}

.white-theme .illustration-legend {
  background: rgba(248, 250, 252, 0.95) !important;
  border: 1px solid #e2e8f0 !important;
}

.white-theme .legend-item {
  color: #666 !important;
}

/* Process Section White Theme */
.white-theme .process-section h4 {
  color: #333 !important;
}

.white-theme .process-section h4::after {
  background: var(--primary) !important;
}

.white-theme .process-timeline::before {
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary),
    transparent
  ) !important;
}

.white-theme .step-number {
  border-color: rgba(248, 250, 252, 0.8) !important;
}

.white-theme .step-content {
  background: #f8f9fa !important;
  border: 1px solid #e9ecef !important;
}

.white-theme .step-content:hover {
  background: white !important;
  border-color: var(--primary) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.white-theme .step-content h5 {
  color: #333 !important;
}

.white-theme .step-content p {
  color: #666 !important;
}

.white-theme .process-step:nth-child(even) .step-content::before {
  border-right: 1px solid var(--primary) !important;
  border-top: 1px solid var(--primary) !important;
}

.white-theme .process-step:nth-child(odd) .step-content::before {
  border-left: 1px solid var(--primary) !important;
  border-bottom: 1px solid var(--primary) !important;
}

@media (max-width: 768px) {
  .white-theme .process-step:nth-child(even) .step-content::before,
  .white-theme .process-step:nth-child(odd) .step-content::before {
    border-left: 1px solid var(--primary) !important;
    border-bottom: 1px solid var(--primary) !important;
    border-right: none !important;
    border-top: none !important;
  }
}

/* Services Section White Theme */
.white-theme.services {
  background: white !important;
}

.white-theme .service-card {
  background: #f8f9fa !important;
  border: 1px solid #e9ecef !important;
}

.white-theme .service-card h3 {
  color: #333 !important;
}

.white-theme .service-card p {
  color: #666 !important;
}

.white-theme .service-link {
  color: var(--primary) !important;
}

.white-theme .service-card:hover {
  background: white !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.white-theme .service-card::after {
  background: linear-gradient(90deg, var(--primary), var(--accent)) !important;
}

/* Carousel Controls White Theme */
.white-theme .carousel-btn {
  background: white !important;
  border: 1px solid #dee2e6 !important;
  color: #333 !important;
}

.white-theme .carousel-btn:hover {
  background: var(--primary) !important;
  color: white !important;
  border-color: var(--primary) !important;
}

.white-theme .indicator {
  background: #dee2e6 !important;
}

.white-theme .indicator.active {
  background: var(--primary) !important;
}

/* Differentiation Section White Theme */
.white-theme.differentiation {
  background: white !important;
}

.white-theme .diff-item {
  background: #f8f9fa !important;
  border: 1px solid #e9ecef !important;
}

.white-theme .diff-item h3 {
  color: #333 !important;
}

.white-theme .diff-item p {
  color: #666 !important;
}

.white-theme .diff-item:hover {
  background: white !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.white-theme .diff-icon {
  background: rgba(59, 130, 246, 0.1) !important;
  color: var(--primary) !important;
}

.white-theme .diff-item h3::after {
  background: var(--primary) !important;
}

/* Social Proof Section White Theme */
.white-theme.social-proof {
  background: white !important;
}

.white-theme .testimonial {
  background: #f8f9fa !important;
  border: 1px solid #e9ecef !important;
}

.white-theme .testimonial-content {
  color: #666 !important;
}

.white-theme .author-info h4 {
  color: #333 !important;
}

.white-theme .author-info p {
  color: #666 !important;
}

.white-theme .testimonial:hover {
  background: white !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.white-theme .testimonial::before {
  color: rgba(59, 130, 246, 0.1) !important;
}

/* CTA Section White Theme */
.white-theme.cta-section {
  background: white !important;
}

.white-theme .cta-container h2 {
  color: #333 !important;
}

.white-theme .cta-container p {
  color: #666 !important;
}

.white-theme .cta-section::before {
  display: none !important;
}

/* Updated White Theme CTA Button */
.white-theme .cta-button {
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light)
  ) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4) !important;
}

.white-theme .cta-button:hover {
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light)
  ) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6) !important;
}

/* Footer should remain dark theme */

/* Responsive adjustments for white theme */
@media (max-width: 992px) {
  .white-theme .about-container {
    flex-direction: column;
    text-align: center;
  }

  .white-theme .hero-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .white-theme section {
    padding: 80px 20px !important;
  }

  .white-theme .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .white-theme .buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Ensure text is readable in white theme */
.white-theme h1,
.white-theme h2,
.white-theme h3,
.white-theme h4 {
  color: #333 !important;
}

.white-theme p {
  color: #666 !important;
}

/* Buttons in white theme sections */
.white-theme .secondary-button {
  background: transparent !important;
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
}

.white-theme .secondary-button:hover {
  background: var(--primary) !important;
  color: white !important;
}