/* Ads Funnel Landing Page Styles */

/* General Styles */
body {
  color: #333;
  overflow-x: hidden;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, #000000 0%, #1b1b1b 100%);
  padding-top: 20px;
  color: #fff;
}

.hero-logo {
  width: 200px;
}

.hero-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(78, 87, 212, 0.05);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 50%;
  background-color: rgba(78, 87, 212, 0.05);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 1;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.countdown-timer-small {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.timer-block {
  background-color: #ffc107;
  color: white;
  border-radius: 8px;
  padding: 10px 15px;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.timer-block-small {
  background-color: #ffc107;
  color: white;
  border-radius: 8px;
  padding: 3px 6px;
  min-width: 50px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timer-value {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.timer-value-small {
  font-size: 0.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.timer-label-small {
  font-size: 0.6rem;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
}
.timer-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
}

/* CTA Form */
.cta-form {
  border-radius: 10px;
  border-top: 5px solid #ffc107;
}

/* Social Proof Badges */
.social-proof-badge,
.results-badge {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.social-proof-badge {
  bottom: 30px;
  left: -20px;
}

.results-badge {
  top: 30px;
  right: -20px;
}

/* Client Logos */
.client-logos img {
  /* height: 40px; */
  width: auto;
  /* opacity: 0.7;
    transition: opacity 0.3s ease; */
}

.client-logos img:hover {
  opacity: 1;
}

/* Benefits Section */
.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 170, 0, 0.856);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.check-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #ffc107;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  padding: 80px 0;
}

/* Center line */
.process-timeline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ffc107, #ffc107);
  z-index: 1;
  border-radius: 2px;
}

.process-step {
  position: relative;
  margin-bottom: 80px;
  z-index: 2;
  opacity: 1; /* Changed from 0 to 1 for visibility */
  transform: none; /* Removed initial transform */
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 70px;
  height: 70px;
  background: #ffc107;

  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(212, 212, 78, 0.35);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.process-content {
  width: calc(45% - 40px);
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.process-content .process-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.process-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* .process-content h4 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 15px;
} */

.process-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

.process-content:before {
  content: "";
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: white;
  transform: rotate(45deg);
  z-index: -1;
}

/* Zigzag positioning */
.process-step:nth-child(odd) .process-content {
  left: 0;
  text-align: right;
}

.process-step:nth-child(odd) .process-content:before {
  right: -10px;
}

.process-step:nth-child(even) .process-content {
  left: calc(55% + 40px);
}

.process-step:nth-child(even) .process-content:before {
  left: -10px;
}

/* Icons */
.process-icon {
  position: absolute;
  top: 15px;
  font-size: 24px;
  color: var(--primary);
  opacity: 0.9;
}

.process-step:nth-child(odd) .process-icon {
  right: 30px;
}

.process-step:nth-child(even) .process-icon {
  left: 30px;
}

.hero-section {
  margin-top: 2em;
}
.desktop {
  display: flex !important;
}

.mobile {
  display: none !important;
}
/* Responsive Styles */
@media (max-width: 991px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: flex !important;
  }
  .hero-section {
    margin-top: 6em;
    text-align: center;
  }
  .hero-logo {
    width: 100px;
  }
  .process-timeline:before {
    left: 30px;
  }

  .process-step {
    margin-left: 60px;
  }

  .process-number {
    left: -40px;
    transform: translateX(-50%);
  }

  .process-content {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    margin-top: 50px;
  }

  .process-content:before {
    top: -10px;
    left: 40px !important;
    right: auto !important;
  }

  .process-step:nth-child(odd) .process-icon,
  .process-step:nth-child(even) .process-icon {
    left: 30px;
    right: auto;
  }
}

@media (max-width: 767px) {
  .process-content {
    padding: 20px;
  }

  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Animation Classes */
.fade-up {
  opacity: 1;
  transform: none;
}

.fade-in {
  opacity: 1;
}

.fade-left {
  opacity: 1;
  transform: none;
}

.fade-right {
  opacity: 1;
  transform: none;
}

/* Additional Fixes */
.process-timeline:before {
  background: linear-gradient(to bottom, #ffc107, #ffc107);
}

/* Results Section */
.result-stats h5 {
  font-size: 1.5rem;
  font-weight: 700;
}

.results-slider .slick-slide {
  padding: 10px;
}

.results-slider .slick-prev,
.results-slider .slick-next {
  width: 40px;
  height: 40px;
  background-color: black;
  border-radius: 50%;
  z-index: 1;
}

.results-slider .slick-prev:before,
.results-slider .slick-next:before {
  font-size: 20px;
  opacity: 1;
}

.results-slider .slick-prev {
  left: -20px;
}

.results-slider .slick-next {
  right: -20px;
}

.results-slider .slick-dots {
  bottom: -40px;
}

.results-slider .slick-dots li button:before {
  font-size: 12px;
  color: #4e57d4;
}

/* FAQ Section */
.accordion-button:not(.collapsed) {
  background-color: rgba(212, 178, 78, 0.1);
  color: #000000;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(78, 87, 212, 0.1);
}

/* Final CTA Section */
#final-cta {
  background: linear-gradient(135deg, #000000 0%, #000000 60%, #1c1c1e 100%);
}

.text-yellow {
  color: #ffc107;
}

.btn-yellow {
  background-color: #ffc107;
}

@media (max-width: 767px) {
  .countdown-timer {
    justify-content: center;
  }

  .timer-block {
    min-width: 60px;
    padding: 8px 10px;
  }

  .timer-value {
    font-size: 1.4rem;
  }

  .timer-label {
    font-size: 0.7rem;
  }
}

/* Animation Classes */
.fade-up {
  opacity: 1;
  /* transform: translateY(30px); */
}

.fade-in {
  opacity: 1;
}

.fade-left {
  opacity: 1;
}

.fade-right {
  opacity: 1;
  /* transform: translateX(30px); */
}

.video-thumbnail {
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button i {
  color: #dc3545;
  font-size: 24px;
}

.video-thumbnail:hover .play-button {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.review-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.review-meta h5 {
  margin-bottom: 0.25rem;
}

.review-meta p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.benefit-card h4 {
  text-align: center;
}

.blink-offer {
  animation: blink-animation 1s infinite;
}
@keyframes blink-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.blink-offer:hover {
  animation: none;
  opacity: 1;
}

.bg-yellow {
  background-color: #ffc107;
  color: #000;
}

.header-logo img {
  width: 100px;
}

.bg-black {
  background-color: #000;
}

.animated-bg-button {
  position: relative;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  font-weight: 600;
  z-index: 1;
}

.animated-bg-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    115deg,
    #ffc107,
    #ff9800,
    #ff5722,
    #ff9800,
    #ffc107
  );
  background-size: 50% 100%;
  z-index: -1;
  animation: moveGradient 3s linear infinite;
}

.animated-bg-button:hover::before {
  animation: moveGradient 1.5s linear infinite;
}

.animated-bg-button .button-text {
  background: linear-gradient(45deg, #000000, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.animated-bg-button:hover .button-text {
  background: linear-gradient(45deg, #ffffff, #000000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes moveGradient {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.slick-track {
  overflow: hidden !important;
}

.animated-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 80vh;
}

.text-gradient {
  background-image: linear-gradient(
    45deg,
    #000000,
    #ffc007,
    #ff0000,
    #00ff00,
    #0000ff
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-text 5s linear infinite;
}

@keyframes gradient-text {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}


.typing-text {
  border-right: 0.15em solid #2937f0;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

.floating-elements {
  position: relative;
  height: 400px;
}

.code-element,
.design-element,
.performance-element {
  position: absolute;
  padding: 2rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.code-element {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.design-element {
  top: 50%;
  right: 15%;
  animation-delay: 2s;
}

.performance-element {
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

.bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: #2937f0;
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: #9f1ae2;
  bottom: -75px;
  left: -75px;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: #2937f0;
  top: 50%;
  right: 10%;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #2937f0;
  }
}

.feature-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.animate-text {
  line-height: 1.8;
}

.highlight-text {
  background: linear-gradient(120deg, #ffd700 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.fade-in-text {
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
  animation-delay: 3.5s;
}

.slide-in-text {
  opacity: 0;
  transform: translateX(-100%);
  animation: slideIn 1s ease-out forwards;
  animation-delay: 5s;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

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

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.key-highlights {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.highlight-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.text-gradient-static {
  background: linear-gradient(45deg, #2937f0, #9f1ae2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter,
.price-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2937f0;
}

.highlight-icon {
  height: 80px;
  width: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2937f0, #9f1ae2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.highlight-card:hover .card-hover-effect {
  transform: scaleX(1);
}

.floating-shapes div {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: #2937f0;
  top: 10%;
  left: 5%;
  animation: float 6s infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: #9f1ae2;
  bottom: 10%;
  right: 5%;
  animation: float 8s infinite;
}

.shape-3 {
  width: 70px;
  height: 70px;
  background: #2937f0;
  top: 50%;
  left: 50%;
  animation: float 7s infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, 15px) rotate(180deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
