:root {
  --primary-color: #2d51fe;
  --secondary-color: #6cb6ff;
  --text-light: #ffffff;
  --bg-dark: #02020c;
  --border-color: #2c343c;
  --text-light: #fff;
  --text-gray: #7c7c7c;
  --highlight: #ccc;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

/* Container class */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* HEADER */

.navbar {
  border-bottom: 1px solid #2c343c;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

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

.nav-links a {
  text-decoration: none;
  transition: color 0.3s;
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #4ea3ff;
}

.contact-btn {
  padding: 10px 24px;
  border-radius: 40px;
  border: 0.5px solid #fff;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-variant: all-small-caps;
  text-decoration: none;
}

.primary-btn {
  width: fit-content;
  height: 26px;
  border-radius: 60px;
  background: linear-gradient(89.05deg, #6cb6ff 0.81%, #2d51fe 99.19%);
  opacity: 1;
  backdrop-filter: blur(12px);
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  align-items: start;
  padding: 12px 24px 12px 24px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.primary-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.primary-btn::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;
}

.primary-btn:hover {
  opacity: 0.95;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(45, 81, 254, 0.4);
  background: linear-gradient(89.05deg, #7cc4ff 0.81%, #3d61fe 99.19%);
}

.primary-btn:hover::before {
  left: 100%;
}

.primary-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 5px 15px rgba(45, 81, 254, 0.3);
}

.primary-btn::after {
  transition: all 0.3s ease;
}

.primary-btn:hover::after {
  transform: translateX(3px);
}

.primary-btn::after {
  content: url("images/Vector.svg");
  width: 16px;
  height: 16px;
  opacity: 1;
  color: #ffffff;
  padding-left: 10px;
}

.mobile-menu {
  display: none;
}

.btn-outline-mobile {
  display: none;
  color: #4ea3ff;
  text-decoration: none;
  transition: all 0.3s;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  font-variant: all-small-caps;
}

/* SECTION 1 */

.hero {
  padding-top: 80px;
  padding-bottom: 120px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 76px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

.hero-content h1 {
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 108.68%;
  letter-spacing: 1.28px;
  text-transform: capitalize;
  background: linear-gradient(
    123deg,
    #fff 61.76%,
    rgba(255, 255, 255, 0.08) 127.03%,
    rgba(255, 255, 255, 0) 141.04%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.italic-text {
  font-style: italic;
}
.hero-content p {
  color: #ebebeb;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  text-align: center;
  max-width: 900px;
}
.digisocial-btn {
  display: flex;
  width: 207px;
  height: 49px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: 2px solid #365ffe;
  gap: 10px;
  color: #ebebeb;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  text-decoration: none;
}

.digisocial-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.digisocial-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(54, 95, 254, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.digisocial-btn:hover {
  opacity: 0.95;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(54, 95, 254, 0.5);
  border-color: #4d6bff;
  background: linear-gradient(
    135deg,
    rgba(54, 95, 254, 0.1),
    rgba(54, 95, 254, 0.2)
  );
}

.digisocial-btn:hover::after {
  left: 100%;
}

.digisocial-btn:active {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(54, 95, 254, 0.4);
}

.digisocial-btn::before {
  transition: all 0.3s ease;
}

.digisocial-btn:hover::before {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.2);
}

.digisocial-btn::before {
  content: url("images/3stars.svg");
  width: 16px;
  height: 24px;
  opacity: 1;
  color: #ffffff;
  padding-right: 10px;
}

.hero-image {
  position: relative;
  overflow: hidden;
  /* background-image: url('images/dotted-bg.png'); */
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 1s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 66px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(2, 2, 12, 0.8) 100%
  );
  backdrop-filter: blur(15px);
  pointer-events: none;
}

/* Hero Animation States */
.hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero.visible .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero.visible .hero-image {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Additional Hero Animations */
.digisocial-btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

.hero-content h1 {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

.hero-content p {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

.primary-btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

.hero.visible .digisocial-btn,
.hero.visible .hero-content h1,
.hero.visible .hero-content p,
.hero.visible .primary-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animation sequence on page load */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes heroImageFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

/* Apply animations to hero elements */
.hero {
  animation: heroFadeIn 0.8s ease-out;
}

.hero-content {
  animation: heroContentFadeIn 0.8s ease-out 0.2s both;
}

.hero-image {
  animation: heroImageFadeIn 1s ease-out 0.4s both;
}

.digisocial-btn {
  animation: heroElementFadeIn 0.6s ease-out 0.1s both;
}

.hero-content h1 {
  animation: heroElementFadeIn 0.8s ease-out 0.3s both;
}

.hero-content p {
  animation: heroElementFadeIn 0.8s ease-out 0.5s both;
}

.primary-btn {
  animation: heroElementFadeIn 0.6s ease-out 0.7s both;
}

/* SECTION 2 */

.party-lovers-section {
  padding-bottom: 120px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.party-lovers-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 38px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.stats-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 15s linear infinite;
  gap: 140px;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 140px;
}

.stat-item {
  flex: 1;
  text-align: center;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.stat-item:hover .stat-number {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.stat-item:hover .stat-label {
  color: #ebebeb;
  font-size: 36px;
}

.star-rating,
.ages,
.happy-players {
  opacity: 0.5;
}

.star-rating:hover,
.happy-players:hover,
.ages:hover {
  opacity: 1;
}

.stat-number {
  font-weight: 600;
  font-size: 160px;
  line-height: 140%;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #4a9f9f 25%, #1a30ec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-weight: 400;
  font-size: 28px;
  color: #ebebeb;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  min-height: 60px;
}

/* SECTION 3 */

.secret-weapon-section {
  padding-block: 120px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.secret-weapon-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.secret-weapon-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.secret-wrapper-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 60%;
}
.secret-wrapper-content h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.secret-wrapper-content p {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}
.secret-wrapper-timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 35%;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.secret-weapon-section.visible .secret-wrapper-timeline {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.timeline-one {
  display: flex;
  gap: 37px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.secret-weapon-section.visible .timeline-one {
  opacity: 1;
  transform: translateY(0);
}

.secret-weapon-section.visible .timeline-one:nth-child(1) {
  transition-delay: 0.5s;
}

.secret-weapon-section.visible .timeline-one:nth-child(3) {
  transition-delay: 0.7s;
}

.secret-weapon-section.visible .timeline-one:nth-child(5) {
  transition-delay: 0.9s;
}
.blue-line {
  padding-left: 40px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: all 0.6s ease-out;
}

.secret-weapon-section.visible .blue-line {
  opacity: 1;
  transform: scaleY(1);
}

.secret-weapon-section.visible .blue-line:nth-child(2) {
  transition-delay: 0.6s;
}

.secret-weapon-section.visible .blue-line:nth-child(4) {
  transition-delay: 0.8s;
}
.timeline-text h4 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.48px;
  text-transform: capitalize;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease-out;
}

.secret-weapon-section.visible .timeline-text h4 {
  opacity: 1;
  transform: translateX(0);
}

.secret-weapon-section.visible .timeline-one:nth-child(1) .timeline-text h4 {
  transition-delay: 0.6s;
}

.secret-weapon-section.visible .timeline-one:nth-child(3) .timeline-text h4 {
  transition-delay: 0.8s;
}

.secret-weapon-section.visible .timeline-one:nth-child(5) .timeline-text h4 {
  transition-delay: 1s;
}
.timeline-text p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.36px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease-out;
}

.secret-weapon-section.visible .timeline-text p {
  opacity: 1;
  transform: translateX(0);
}

.secret-weapon-section.visible .timeline-one:nth-child(1) .timeline-text p {
  transition-delay: 0.7s;
}

.secret-weapon-section.visible .timeline-one:nth-child(3) .timeline-text p {
  transition-delay: 0.9s;
}

.secret-weapon-section.visible .timeline-one:nth-child(5) .timeline-text p {
  transition-delay: 1.1s;
}

/* Timeline images animations */
.timeline-one img {
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.6s ease-out;
}

.secret-weapon-section.visible .timeline-one img {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.secret-weapon-section.visible .timeline-one:nth-child(1) img {
  transition-delay: 0.5s;
}

.secret-weapon-section.visible .timeline-one:nth-child(3) img {
  transition-delay: 0.7s;
}

.secret-weapon-section.visible .timeline-one:nth-child(5) img {
  transition-delay: 0.9s;
}

/* Special keyframe animations for timeline */
@keyframes timelineSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes timelineItemBounce {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes timelineLineGrow {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

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

@keyframes timelineImageRotate {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Apply special animations */
.secret-weapon-section.visible .secret-wrapper-timeline {
  animation: timelineSlideIn 0.8s ease-out 0.3s both;
}

.secret-weapon-section.visible .timeline-one {
  animation: timelineItemBounce 0.8s ease-out both;
}

.secret-weapon-section.visible .blue-line {
  animation: timelineLineGrow 0.6s ease-out both;
}

.secret-weapon-section.visible .timeline-text h4,
.secret-weapon-section.visible .timeline-text p {
  animation: timelineTextSlide 0.6s ease-out both;
}

.secret-weapon-section.visible .timeline-one img {
  animation: timelineImageRotate 0.6s ease-out both;
}

/* section 4 */

.comprehensive-tool-section {
  padding-block: 120px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.comprehensive-tool-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for comprehensive tool cards */
.single-tool-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.comprehensive-tool-section.visible .single-tool-card {
  opacity: 1;
  transform: translateY(0);
}

.comprehensive-tool-section.visible .single-tool-card:nth-child(1) {
  transition-delay: 0.1s;
}

.comprehensive-tool-section.visible .single-tool-card:nth-child(2) {
  transition-delay: 0.2s;
}

.comprehensive-tool-section.visible .single-tool-card:nth-child(3) {
  transition-delay: 0.3s;
}

.comprehensive-tool-section.visible .single-tool-card:nth-child(4) {
  transition-delay: 0.4s;
}
.comprehensive-tool-section.visible .single-tool-card:nth-child(5) {
  transition-delay: 0.6s;
}

.comprehensive-tool-section.visible .single-tool-card:nth-child(6) {
  transition-delay: 0.7s;
}

.comprehensive-tool-section.visible .single-tool-card:nth-child(7) {
  transition-delay: 0.8s;
}

.comprehensive-tool-section.visible .single-tool-card:nth-child(8) {
  transition-delay: 0.9s;
}
.comprehensive-tool-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 80px;
}
.comprehensive-tool-content {
  max-width: 1082px;
}
.comprehensive-tool-content h2 {
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.comprehensive-tool-content p {
  color: #ebebeb;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}
.comprehensive-tool-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.single-tool-card {
  padding-block: 36px;
  padding-inline: 24px;
  background-image: url("images/dotspattern2.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  box-shadow: 0 1.423px 1.423px 0 rgba(255, 255, 255, 0.2) inset,
    0 -1.423px 2.845px 0 rgba(255, 255, 255, 0.05) inset;
}
.single-tool-card img {
  border-radius: 12px;
  background: radial-gradient(50% 50% at 50% 50%, #317bff 0%, #0c0e13 100%);
  box-shadow: 0 1.195px 0.597px -0.667px rgba(0, 0, 0, 0.11),
    0 2.831px 1.416px -1.334px rgba(0, 0, 0, 0.11),
    0 5.165px 2.582px -2px rgba(0, 0, 0, 0.11),
    0 8.587px 4.293px -2.667px rgba(0, 0, 0, 0.1),
    0 13.867px 6.933px -3.334px rgba(0, 0, 0, 0.1),
    0 22.698px 11.349px -4.001px rgba(0, 0, 0, 0.09),
    0 39.085px 19.542px -4.668px rgba(0, 0, 0, 0.07),
    0 71.125px 35.563px -5.334px rgba(0, 0, 0, 0.04),
    0 0.711px 2.845px -1.423px rgba(255, 255, 255, 0.6) inset,
    0 14.225px 14.225px -1.423px rgba(255, 255, 255, 0.08) inset;
}
.single-tool-card h3 {
  color: #fff;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  padding-bottom: 12px;
}
.single-tool-card p {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* Enhanced hover effects for single-tool-card */
.single-tool-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.single-tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.single-tool-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(49, 123, 255, 0.3),
    0 1.423px 1.423px 0 rgba(255, 255, 255, 0.3) inset,
    0 -1.423px 2.845px 0 rgba(255, 255, 255, 0.1) inset;
  background-image: linear-gradient(
      135deg,
      rgba(49, 123, 255, 0.1),
      rgba(49, 123, 255, 0.05)
    ),
    url("images/dotspattern2.png");
}

.single-tool-card:hover::before {
  left: 100%;
}

.single-tool-card:active {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 25px rgba(49, 123, 255, 0.2),
    0 1.423px 1.423px 0 rgba(255, 255, 255, 0.25) inset;
}

.single-tool-card img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-tool-card:hover img {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 8px 25px rgba(49, 123, 255, 0.4),
    0 1.195px 0.597px -0.667px rgba(0, 0, 0, 0.15),
    0 2.831px 1.416px -1.334px rgba(0, 0, 0, 0.15),
    0 5.165px 2.582px -2px rgba(0, 0, 0, 0.15),
    0 8.587px 4.293px -2.667px rgba(0, 0, 0, 0.12),
    0 13.867px 6.933px -3.334px rgba(0, 0, 0, 0.12),
    0 22.698px 11.349px -4.001px rgba(0, 0, 0, 0.11),
    0 39.085px 19.542px -4.668px rgba(0, 0, 0, 0.09),
    0 71.125px 35.563px -5.334px rgba(0, 0, 0, 0.06),
    0 14.225px 14.225px -1.423px rgba(255, 255, 255, 0.12) inset;
}

.single-tool-card h3 {
  transition: all 0.3s ease;
}

.single-tool-card:hover h3 {
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(49, 123, 255, 0.3);
}

.single-tool-card p {
  transition: all 0.3s ease;
}

.single-tool-card:hover p {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* section 5 */
.spotlighted-section {
  padding-block: 120px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.spotlighted-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.spotlighted-wrapper {
  display: flex;
  padding: 0 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.spotlighted-wrapper h2 {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.marquee-spotlight {
  overflow: hidden;
  width: 100%;
}

.spotlight-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 15s linear infinite;
  gap: 140px;
}

.spotlight-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 140px;
  margin-bottom: 40px;
}

.spotlight-item {
  flex: 1;
  text-align: center;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.spotlight-item:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.spotlight-item:hover {
  color: #fff;
}

/* section 6 */
.scale-faster-section {
  padding-block: 120px;
  background-image: url("images/scale-faster-bg.png");
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.scale-faster-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.scale-faster-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.scale-faster-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
.scale-faster-content h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 16px;
}
.scale-faster-content p {
  color: #ebebeb;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}
.scale-faster-rows {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.active-users {
  display: flex;
  padding-bottom: 20px;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  /* min-width: 711px; */
  width: 100%;
}

.active-users h3 {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.active-users p {
  color: #ebebeb;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px;
}

.teams-empowered {
  border-bottom: none;
}

/* section 7 */
.stay-active-section {
  padding-block: 120px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.stay-active-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.stay-active-wrapper {
  background-image: url("images/Card.png");
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stay-active-content {
  padding-block: 79px;
  padding-left: 72px;
  max-width: 783px;
}
.stay-active-content h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 16px;
}

.stay-active-content p {
  color: #ebebeb;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  padding-bottom: 24px;
}
.stay-active-image {
  padding-right: 20px;
}

/* section 8 */
.social-media-section {
  padding-top: 120px;
  padding-bottom: 80px;
  background-image: url("images/social-media-bg.png");
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.social-media-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for social media cards */
.social-media-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.social-media-section.visible .social-media-card {
  opacity: 1;
  transform: translateY(0);
}

.social-media-section.visible .social-media-card:nth-child(1) {
  transition-delay: 0.1s;
}

.social-media-section.visible .social-media-card:nth-child(2) {
  transition-delay: 0.2s;
}

.social-media-section.visible .social-media-card:nth-child(3) {
  transition-delay: 0.3s;
}

.social-media-section.visible .social-media-card:nth-child(4) {
  transition-delay: 0.4s;
}
.social-media-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.social-media-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 675px;
}

.social-media-content h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social-media-content p {
  color: #ebebeb;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}
.social-media-cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-height: 634px;
  overflow: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE & Edge */
}

.social-media-cards::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.social-media-single-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  background-image: url("images/Shadow.png");
  background-position: center;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 22px;
  border: 1px solid rgba(79, 26, 214, 0.15);
  padding-block: 22px;
  padding-left: 37px;
  box-shadow: 0 10px 5px -1px rgba(26, 101, 214, 0.15) inset;
  /* width: 778px; */
}
.media-card-wrapper {
  padding: 10px;
  border-radius: 30px;
  background: #080808;
  box-shadow: 0 0.602px 1.325px -0.583px rgba(0, 0, 0, 0.09),
    0 2.289px 5.035px -1.167px rgba(0, 0, 0, 0.1),
    0 10px 22px -1.75px rgba(0, 0, 0, 0.16);
}
.social-media-single-card h3 {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.5px;
}
.social-media-single-card p {
  color: rgba(255, 255, 255, 0.5);
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

/* section 9 */
.choose-digisocial-section {
  padding-block: 120px;
  background: url("images/choose-digisocial-bg.png");
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.choose-digisocial-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for choose digisocial elements */
.wrapper-one,
.wrapper-two {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .wrapper-one {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.choose-digisocial-section.visible .wrapper-two {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Enhanced animations for choose-digisocial-section components */
.wrapper-one-content {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.choose-digisocial-section.visible .wrapper-one-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.wrapper-one-content h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .wrapper-one-content h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.wrapper-one-content p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .wrapper-one-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.wrapper-one-content .primary-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .wrapper-one-content .primary-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.reason-points {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .reason-points {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.customise-plans {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .customise-plans {
  opacity: 1;
  transform: translateX(0);
}

.choose-digisocial-section.visible .customise-plans:nth-child(1) {
  transition-delay: 1.2s;
}

.choose-digisocial-section.visible .customise-plans:nth-child(2) {
  transition-delay: 1.4s;
}

.choose-digisocial-section.visible .customise-plans:nth-child(3) {
  transition-delay: 1.6s;
}

.customise-plans img {
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .customise-plans img {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.choose-digisocial-section.visible .customise-plans:nth-child(1) img {
  transition-delay: 1.3s;
}

.choose-digisocial-section.visible .customise-plans:nth-child(2) img {
  transition-delay: 1.5s;
}

.choose-digisocial-section.visible .customise-plans:nth-child(3) img {
  transition-delay: 1.7s;
}

.customise-plans h3 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .customise-plans h3 {
  opacity: 1;
  transform: translateY(0);
}

.choose-digisocial-section.visible .customise-plans:nth-child(1) h3 {
  transition-delay: 1.4s;
}

.choose-digisocial-section.visible .customise-plans:nth-child(2) h3 {
  transition-delay: 1.6s;
}

.choose-digisocial-section.visible .customise-plans:nth-child(3) h3 {
  transition-delay: 1.8s;
}

.customise-plans p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .customise-plans p {
  opacity: 1;
  transform: translateY(0);
}

.choose-digisocial-section.visible .customise-plans:nth-child(1) p {
  transition-delay: 1.5s;
}

.choose-digisocial-section.visible .customise-plans:nth-child(2) p {
  transition-delay: 1.7s;
}

.choose-digisocial-section.visible .customise-plans:nth-child(3) p {
  transition-delay: 1.9s;
}

.wrapper-one img {
  opacity: 0;
  transform: translateX(50px) scale(0.9);
  transition: all 0.8s ease-out;
}

.choose-digisocial-section.visible .wrapper-one img {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.4s;
}

.wrapper-two-content {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.choose-digisocial-section.visible .wrapper-two-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.economical {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .economical {
  opacity: 1;
  transform: translateX(0);
}

.choose-digisocial-section.visible .economical:nth-child(1) {
  transition-delay: 0.8s;
}

.choose-digisocial-section.visible .economical:nth-child(2) {
  transition-delay: 1s;
}

.choose-digisocial-section.visible .economical:nth-child(3) {
  transition-delay: 1.2s;
}

.economical img {
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .economical img {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.choose-digisocial-section.visible .economical:nth-child(1) img {
  transition-delay: 0.9s;
}

.choose-digisocial-section.visible .economical:nth-child(2) img {
  transition-delay: 1.1s;
}

.choose-digisocial-section.visible .economical:nth-child(3) img {
  transition-delay: 1.3s;
}

.economical h3 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .economical h3 {
  opacity: 1;
  transform: translateY(0);
}

.choose-digisocial-section.visible .economical:nth-child(1) h3 {
  transition-delay: 1s;
}

.choose-digisocial-section.visible .economical:nth-child(2) h3 {
  transition-delay: 1.2s;
}

.choose-digisocial-section.visible .economical:nth-child(3) h3 {
  transition-delay: 1.4s;
}

.economical p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.choose-digisocial-section.visible .economical p {
  opacity: 1;
  transform: translateY(0);
}

.choose-digisocial-section.visible .economical:nth-child(1) p {
  transition-delay: 1.1s;
}

.choose-digisocial-section.visible .economical:nth-child(2) p {
  transition-delay: 1.3s;
}

.choose-digisocial-section.visible .economical:nth-child(3) p {
  transition-delay: 1.5s;
}

.wrapper-two img {
  opacity: 0;
  transform: translateX(-50px) scale(0.9);
  transition: all 0.8s ease-out;
}

.choose-digisocial-section.visible .wrapper-two img {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.8s;
}

/* Special keyframe animations for choose-digisocial-section */
@keyframes chooseDigisocialContentSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes chooseDigisocialImageSlide {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes chooseDigisocialFeatureBounce {
  0% {
    opacity: 0;
    transform: translateX(-30px) scale(0.9);
  }
  50% {
    transform: translateX(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes chooseDigisocialIconRotate {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

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

@keyframes chooseDigisocialButtonPulse {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chooseDigisocialWrapperTwoSlide {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes chooseDigisocialEconomicalSlide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply special animations */
.choose-digisocial-section.visible .wrapper-one-content {
  animation: chooseDigisocialContentSlide 0.8s ease-out 0.2s both;
}

.choose-digisocial-section.visible .wrapper-one img {
  animation: chooseDigisocialImageSlide 0.8s ease-out 0.4s both;
}

.choose-digisocial-section.visible .wrapper-one-content h2 {
  animation: chooseDigisocialTextSlide 0.6s ease-out 0.4s both;
}

.choose-digisocial-section.visible .wrapper-one-content p {
  animation: chooseDigisocialTextSlide 0.6s ease-out 0.6s both;
}

.choose-digisocial-section.visible .wrapper-one-content .primary-btn {
  animation: chooseDigisocialButtonPulse 0.8s ease-out 0.8s both;
}

.choose-digisocial-section.visible .reason-points {
  animation: chooseDigisocialTextSlide 0.6s ease-out 1s both;
}

.choose-digisocial-section.visible .customise-plans {
  animation: chooseDigisocialFeatureBounce 0.8s ease-out both;
}

.choose-digisocial-section.visible .customise-plans img {
  animation: chooseDigisocialIconRotate 0.6s ease-out both;
}

.choose-digisocial-section.visible .customise-plans h3,
.choose-digisocial-section.visible .customise-plans p {
  animation: chooseDigisocialTextSlide 0.6s ease-out both;
}

.choose-digisocial-section.visible .wrapper-two-content {
  animation: chooseDigisocialWrapperTwoSlide 0.8s ease-out 0.6s both;
}

.choose-digisocial-section.visible .wrapper-two img {
  animation: chooseDigisocialImageSlide 0.8s ease-out 0.8s both;
}

.choose-digisocial-section.visible .economical {
  animation: chooseDigisocialEconomicalSlide 0.8s ease-out both;
}

.choose-digisocial-section.visible .economical img {
  animation: chooseDigisocialIconRotate 0.6s ease-out both;
}

.choose-digisocial-section.visible .economical h3,
.choose-digisocial-section.visible .economical p {
  animation: chooseDigisocialTextSlide 0.6s ease-out both;
}

/* Keyframe animations for special effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply special animations to specific elements */
.secret-weapon-section.visible .secret-weapon-wrapper {
  animation: fadeInUp 0.8s ease-out;
}

.scale-faster-section.visible .scale-faster-wrapper {
  animation: slideInLeft 0.8s ease-out;
}

/* Enhanced animations for scale-faster-section components */
.scale-faster-image {
  opacity: 0;
  transform: translateX(-50px) scale(0.9);
  transition: all 0.8s ease-out;
}

.scale-faster-section.visible .scale-faster-image {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.2s;
}

.scale-faster-content {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.scale-faster-section.visible .scale-faster-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.scale-faster-content h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scale-faster-section.visible .scale-faster-content h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.scale-faster-content p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scale-faster-section.visible .scale-faster-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.scale-faster-rows {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scale-faster-section.visible .scale-faster-rows {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.active-users {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-out;
}

.scale-faster-section.visible .active-users {
  opacity: 1;
  transform: translateX(0);
}

.scale-faster-section.visible .active-users:nth-child(1) {
  transition-delay: 1.2s;
}

.scale-faster-section.visible .active-users:nth-child(2) {
  transition-delay: 1.4s;
}

.scale-faster-section.visible .active-users:nth-child(3) {
  transition-delay: 1.6s;
}

.active-users img {
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.6s ease-out;
}

.scale-faster-section.visible .active-users img {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.scale-faster-section.visible .active-users:nth-child(1) img {
  transition-delay: 1.3s;
}

.scale-faster-section.visible .active-users:nth-child(2) img {
  transition-delay: 1.5s;
}

.scale-faster-section.visible .active-users:nth-child(3) img {
  transition-delay: 1.7s;
}

.active-users h3 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.scale-faster-section.visible .active-users h3 {
  opacity: 1;
  transform: translateY(0);
}

.scale-faster-section.visible .active-users:nth-child(1) h3 {
  transition-delay: 1.4s;
}

.scale-faster-section.visible .active-users:nth-child(2) h3 {
  transition-delay: 1.6s;
}

.scale-faster-section.visible .active-users:nth-child(3) h3 {
  transition-delay: 1.8s;
}

.active-users p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.scale-faster-section.visible .active-users p {
  opacity: 1;
  transform: translateY(0);
}

.scale-faster-section.visible .active-users:nth-child(1) p {
  transition-delay: 1.5s;
}

.scale-faster-section.visible .active-users:nth-child(2) p {
  transition-delay: 1.7s;
}

.scale-faster-section.visible .active-users:nth-child(3) p {
  transition-delay: 1.9s;
}

.scale-faster-content .primary-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scale-faster-section.visible .scale-faster-content .primary-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2s;
}

/* Special keyframe animations for scale-faster-section */
@keyframes scaleFasterImageSlide {
  from {
    opacity: 0;
    transform: translateX(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes scaleFasterContentSlide {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleFasterStatsBounce {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.8);
  }
  50% {
    transform: translateX(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes scaleFasterIconRotate {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

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

@keyframes scaleFasterButtonPulse {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Apply special animations */
.scale-faster-section.visible .scale-faster-image {
  animation: scaleFasterImageSlide 0.8s ease-out 0.2s both;
}

.scale-faster-section.visible .scale-faster-content {
  animation: scaleFasterContentSlide 0.8s ease-out 0.4s both;
}

.scale-faster-section.visible .scale-faster-content h2 {
  animation: scaleFasterTextSlide 0.6s ease-out 0.6s both;
}

.scale-faster-section.visible .scale-faster-content p {
  animation: scaleFasterTextSlide 0.6s ease-out 0.8s both;
}

.scale-faster-section.visible .scale-faster-rows {
  animation: scaleFasterTextSlide 0.6s ease-out 1s both;
}

.scale-faster-section.visible .active-users {
  animation: scaleFasterStatsBounce 0.8s ease-out both;
}

.scale-faster-section.visible .active-users img {
  animation: scaleFasterIconRotate 0.6s ease-out both;
}

.scale-faster-section.visible .active-users h3,
.scale-faster-section.visible .active-users p {
  animation: scaleFasterTextSlide 0.6s ease-out both;
}

.scale-faster-section.visible .scale-faster-content .primary-btn {
  animation: scaleFasterButtonPulse 0.8s ease-out 2s both;
}

.stay-active-section.visible .stay-active-wrapper {
  animation: scaleIn 0.8s ease-out;
}

.social-media-section.visible .social-media-wrapper {
  animation: slideInRight 0.8s ease-out;
}

/* Enhanced animations for social-media-section components */
.social-media-content {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.social-media-section.visible .social-media-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.social-media-content h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.social-media-section.visible .social-media-content h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.social-media-content p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.social-media-section.visible .social-media-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.social-media-content .primary-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.social-media-section.visible .social-media-content .primary-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.social-media-cards {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.social-media-section.visible .social-media-cards {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.media-card-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.social-media-section.visible .media-card-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.social-media-section.visible .media-card-wrapper:nth-child(1) {
  transition-delay: 0.6s;
}

.social-media-section.visible .media-card-wrapper:nth-child(2) {
  transition-delay: 0.8s;
}

.social-media-section.visible .media-card-wrapper:nth-child(3) {
  transition-delay: 1s;
}

.social-media-section.visible .media-card-wrapper:nth-child(4) {
  transition-delay: 1.2s;
}

.social-media-section.visible .media-card-wrapper:nth-child(5) {
  transition-delay: 1.4s;
}

.social-media-section.visible .media-card-wrapper:nth-child(6) {
  transition-delay: 1.6s;
}

.social-media-section.visible .media-card-wrapper:nth-child(7) {
  transition-delay: 1.8s;
}

.social-media-single-card {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s ease-out;
}

.social-media-section.visible .social-media-single-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.social-media-single-card img {
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.6s ease-out;
}

.social-media-section.visible .social-media-single-card img {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.social-media-single-card h3 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.social-media-section.visible .social-media-single-card h3 {
  opacity: 1;
  transform: translateY(0);
}

.social-media-single-card p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.social-media-section.visible .social-media-single-card p {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for individual card elements */
.social-media-section.visible
  .media-card-wrapper:nth-child(1)
  .social-media-single-card
  img {
  transition-delay: 0.7s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(1)
  .social-media-single-card
  h3 {
  transition-delay: 0.8s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(1)
  .social-media-single-card
  p {
  transition-delay: 0.9s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(2)
  .social-media-single-card
  img {
  transition-delay: 0.9s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(2)
  .social-media-single-card
  h3 {
  transition-delay: 1s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(2)
  .social-media-single-card
  p {
  transition-delay: 1.1s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(3)
  .social-media-single-card
  img {
  transition-delay: 1.1s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(3)
  .social-media-single-card
  h3 {
  transition-delay: 1.2s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(3)
  .social-media-single-card
  p {
  transition-delay: 1.3s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(4)
  .social-media-single-card
  img {
  transition-delay: 1.3s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(4)
  .social-media-single-card
  h3 {
  transition-delay: 1.4s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(4)
  .social-media-single-card
  p {
  transition-delay: 1.5s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(5)
  .social-media-single-card
  img {
  transition-delay: 1.5s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(5)
  .social-media-single-card
  h3 {
  transition-delay: 1.6s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(5)
  .social-media-single-card
  p {
  transition-delay: 1.7s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(6)
  .social-media-single-card
  img {
  transition-delay: 1.7s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(6)
  .social-media-single-card
  h3 {
  transition-delay: 1.8s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(6)
  .social-media-single-card
  p {
  transition-delay: 1.9s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(7)
  .social-media-single-card
  img {
  transition-delay: 1.9s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(7)
  .social-media-single-card
  h3 {
  transition-delay: 2s;
}

.social-media-section.visible
  .media-card-wrapper:nth-child(7)
  .social-media-single-card
  p {
  transition-delay: 2.1s;
}

/* Special keyframe animations for social-media-section */
@keyframes socialMediaContentSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes socialMediaCardsSlide {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes socialMediaCardBounce {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes socialMediaIconRotate {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

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

@keyframes socialMediaButtonPulse {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Apply special animations */
.social-media-section.visible .social-media-content {
  animation: socialMediaContentSlide 0.8s ease-out 0.2s both;
}

.social-media-section.visible .social-media-cards {
  animation: socialMediaCardsSlide 0.8s ease-out 0.4s both;
}

.social-media-section.visible .social-media-content h2 {
  animation: socialMediaTextSlide 0.6s ease-out 0.4s both;
}

.social-media-section.visible .social-media-content p {
  animation: socialMediaTextSlide 0.6s ease-out 0.6s both;
}

.social-media-section.visible .social-media-content .primary-btn {
  animation: socialMediaButtonPulse 0.8s ease-out 0.8s both;
}

.social-media-section.visible .media-card-wrapper {
  animation: socialMediaCardBounce 0.8s ease-out both;
}

.social-media-section.visible .social-media-single-card img {
  animation: socialMediaIconRotate 0.6s ease-out both;
}

.social-media-section.visible .social-media-single-card h3,
.social-media-section.visible .social-media-single-card p {
  animation: socialMediaTextSlide 0.6s ease-out both;
}
.choose-digisocial-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.wrapper-one {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrapper-one-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.wrapper-one-content h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wrapper-one-content p {
  color: #ebebeb;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}
.reason-points {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 685px;
}
.customise-plans {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-block: 28px;
}
.customise-plans h3 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.48px;
  text-transform: capitalize;
}
.customise-plans p {
  color: #aeadc5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.36px;
}
.wrapper-two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.wrapper-two-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 685px;
}
.economical {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-block: 28px;
}
.economical h3 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.48px;
  text-transform: capitalize;
}
.economical p {
  color: #aeadc5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.36px;
}

/* section 10 */
.testimonials {
  background: linear-gradient(
    180deg,
    #020206 0%,
    rgba(2, 2, 12, 0.6) 27.33%,
    rgba(3, 3, 56, 0.41) 49.52%,
    #02020c 100%
  );
  padding: 100px 0;
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonials-title {
  text-align: center;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonials-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-bottom: 60px;
}
.testimonials-heading p {
  color: #ebebeb;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  max-width: 640px;
}

.testimonials.visible .testimonials-title {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.testimonial-card {
  border-radius: 16px;
  background: linear-gradient(
    92deg,
    rgba(255, 255, 255, 0.06) 21.68%,
    rgba(255, 255, 255, 0.06) 102.49%
  );
  backdrop-filter: blur(18px);
  padding: 40px;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.testimonials.visible .testimonial-card {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for each card */
.testimonials.visible .testimonial-card:nth-child(1) {
  transition-delay: 0.1s;
}

.testimonials.visible .testimonial-card:nth-child(2) {
  transition-delay: 0.2s;
}

.testimonials.visible .testimonial-card:nth-child(3) {
  transition-delay: 0.3s;
}

.testimonials.visible .testimonial-card:nth-child(4) {
  transition-delay: 0.4s;
}

/* Enhanced animations for testimonials-section components */
.testimonials {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

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

.testimonials-heading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.testimonials.visible .testimonials-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.testimonials-title {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.testimonials.visible .testimonials-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.testimonials-heading p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.testimonials.visible .testimonials-heading p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.testimonials-grid {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.testimonials.visible .testimonials-grid {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.testimonial-card {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s ease-out;
}

.testimonials.visible .testimonial-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testimonials.visible .testimonial-card:nth-child(1) {
  transition-delay: 1s;
}

.testimonials.visible .testimonial-card:nth-child(2) {
  transition-delay: 1.2s;
}

.testimonials.visible .testimonial-card:nth-child(3) {
  transition-delay: 1.4s;
}

.testimonials.visible .testimonial-card:nth-child(4) {
  transition-delay: 1.6s;
}

.testimonial-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.testimonials.visible .testimonial-text {
  opacity: 1;
  transform: translateY(0);
}

.testimonials.visible .testimonial-card:nth-child(1) .testimonial-text {
  transition-delay: 1.1s;
}

.testimonials.visible .testimonial-card:nth-child(2) .testimonial-text {
  transition-delay: 1.3s;
}

.testimonials.visible .testimonial-card:nth-child(3) .testimonial-text {
  transition-delay: 1.5s;
}

.testimonials.visible .testimonial-card:nth-child(4) .testimonial-text {
  transition-delay: 1.7s;
}

.testimonial-author {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.testimonials.visible .testimonial-author {
  opacity: 1;
  transform: translateY(0);
}

.testimonials.visible .testimonial-card:nth-child(1) .testimonial-author {
  transition-delay: 1.2s;
}

.testimonials.visible .testimonial-card:nth-child(2) .testimonial-author {
  transition-delay: 1.4s;
}

.testimonials.visible .testimonial-card:nth-child(3) .testimonial-author {
  transition-delay: 1.6s;
}

.testimonials.visible .testimonial-card:nth-child(4) .testimonial-author {
  transition-delay: 1.8s;
}

.author-avatar {
  opacity: 0;
  transform: scale(0.8) rotate(-5deg);
  transition: all 0.6s ease-out;
}

.testimonials.visible .author-avatar {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.testimonials.visible .testimonial-card:nth-child(1) .author-avatar {
  transition-delay: 1.3s;
}

.testimonials.visible .testimonial-card:nth-child(2) .author-avatar {
  transition-delay: 1.5s;
}

.testimonials.visible .testimonial-card:nth-child(3) .author-avatar {
  transition-delay: 1.7s;
}

.testimonials.visible .testimonial-card:nth-child(4) .author-avatar {
  transition-delay: 1.9s;
}

.author-name {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease-out;
}

.testimonials.visible .author-name {
  opacity: 1;
  transform: translateX(0);
}

.testimonials.visible .testimonial-card:nth-child(1) .author-name {
  transition-delay: 1.4s;
}

.testimonials.visible .testimonial-card:nth-child(2) .author-name {
  transition-delay: 1.6s;
}

.testimonials.visible .testimonial-card:nth-child(3) .author-name {
  transition-delay: 1.8s;
}

.testimonials.visible .testimonial-card:nth-child(4) .author-name {
  transition-delay: 2s;
}

/* Special keyframe animations for testimonials-section */
@keyframes testimonialsSectionFade {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@keyframes testimonialCardBounce {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

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

@keyframes testimonialAvatarRotate {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

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

/* Apply special animations */
.testimonials.visible {
  animation: testimonialsSectionFade 0.8s ease-out both;
}

.testimonials.visible .testimonials-heading {
  animation: testimonialsHeadingSlide 0.6s ease-out 0.2s both;
}

.testimonials.visible .testimonials-title {
  animation: testimonialsTitleSlide 0.6s ease-out 0.4s both;
}

.testimonials.visible .testimonials-heading p {
  animation: testimonialsTitleSlide 0.6s ease-out 0.6s both;
}

.testimonials.visible .testimonials-grid {
  animation: testimonialsGridSlide 0.6s ease-out 0.8s both;
}

.testimonials.visible .testimonial-card {
  animation: testimonialCardBounce 0.8s ease-out both;
}

.testimonials.visible .testimonial-text {
  animation: testimonialTextSlide 0.6s ease-out both;
}

.testimonials.visible .testimonial-author {
  animation: testimonialAuthorSlide 0.6s ease-out both;
}

.testimonials.visible .author-avatar {
  animation: testimonialAvatarRotate 0.6s ease-out both;
}

.testimonials.visible .author-name {
  animation: testimonialNameSlide 0.6s ease-out both;
}

.testimonial-app {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 37.375px;
  font-variant: all-small-caps;
}

.testimonial-text {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  min-height: 140px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.author-name {
  color: #ddd;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.2px;
}

/* footer  */
.footer {
  background: #02020d;
  padding-top: 80px;
}

.footer .container {
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  padding-bottom: 40px;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-cta-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
}

.newsletter-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}

.btn-secondary {
  font-family: Montserrat, sans-serif;
  padding: 12px 24px;
  border-radius: 60px;
  background-color: #02020d;
  border: 1px solid #5ea0e8;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  max-width: fit-content;
  text-decoration: none;
}

.btn-secondary::after {
  content: url("images/Vector.svg");
  width: 16px;
  height: 16px;
  opacity: 1;
  color: #ffffff;
  padding-left: 10px;
}

.newsletter-input {
  position: relative;
  display: flex;
  min-width: 412px;
}

.email-input {
  padding: 16px 28px;
  border: 1px solid #7c7c7c;
  border-radius: 99999px;
  background: transparent;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  width: 100%;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-content {
  display: flex;
  gap: 18rem;
  margin-bottom: 40px;
  width: 100%;
}

.footer-nav-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin-top: 48px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #5ea0e8;
}

.footer-locations {
  flex: 1;
}

.footer-locations-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.location-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}

.location-address {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #2c343c;
  width: 100%;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 12px;
}

.copyright-text {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 400;
}

.copyright-dot {
  color: #02bde3;
  font-size: 1.125rem;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.social-link {
  color: #ffffff;
  text-decoration: underline;
  font-size: 1.25rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #5ea0e8;
}
.join-community,
.made-with-love {
  display: none;
}

/* section 11 */
.faq-section {
  padding: 120px 0;
  color: var(--text-light);
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
  background-color: #02020d;
}

.faq-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-content {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  margin: 0 auto;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-section.visible .faq-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.faq-left {
  max-width: 481px;
  flex: 1;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-section.visible .faq-left {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.faq-main-heading {
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  padding-bottom: 20px;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-section.visible .faq-main-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.faq-description {
  color: #ebebeb;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px;
  margin-bottom: 40px;
}

.faq-section.visible .faq-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.faq-ask-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid #6cb6ff;
  padding-block: 14px;
  transition: all 0.3s ease;
  opacity: 1;
}

.faq-section.visible .faq-ask-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.faq-ask-btn:hover {
  color: #6cb6ff;
  border-bottom-color: #ffffff;
}

.faq-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-ask-btn:hover .faq-arrow {
  transform: translate(2px, -2px);
}

.faq-right {
  flex: 1;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-section.visible .faq-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-left: 1.5px solid rgba(26, 117, 219, 0.5);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 0;
  transition: all 0.3s ease;
  opacity: 1;
}

.faq-section.visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for FAQ items */
.faq-section.visible .faq-item:nth-child(1) {
  transition-delay: 0.4s;
}

.faq-section.visible .faq-item:nth-child(2) {
  transition-delay: 0.5s;
}

.faq-section.visible .faq-item:nth-child(3) {
  transition-delay: 0.6s;
}

.faq-section.visible .faq-item:nth-child(4) {
  transition-delay: 0.7s;
}

.faq-section.visible .faq-item:nth-child(5) {
  transition-delay: 0.8s;
}

/* Enhanced animations for faq-section components */
.faq-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.faq-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.faq-section.visible .faq-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.faq-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.faq-section.visible .faq-left {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.faq-main-heading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.faq-section.visible .faq-main-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.faq-description {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.faq-section.visible .faq-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.faq-ask-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.faq-section.visible .faq-ask-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.faq-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.faq-section.visible .faq-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.faq-accordion {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.faq-section.visible .faq-accordion {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.faq-item {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-out;
}

.faq-section.visible .faq-item {
  opacity: 1;
  transform: translateX(0);
}

.faq-section.visible .faq-item:nth-child(1) {
  transition-delay: 0.8s;
}

.faq-section.visible .faq-item:nth-child(2) {
  transition-delay: 1s;
}

.faq-section.visible .faq-item:nth-child(3) {
  transition-delay: 1.2s;
}

.faq-section.visible .faq-item:nth-child(4) {
  transition-delay: 1.4s;
}

.faq-section.visible .faq-item:nth-child(5) {
  transition-delay: 1.6s;
}

.faq-question {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.faq-section.visible .faq-question {
  opacity: 1;
  transform: translateY(0);
}

.faq-section.visible .faq-item:nth-child(1) .faq-question {
  transition-delay: 0.9s;
}

.faq-section.visible .faq-item:nth-child(2) .faq-question {
  transition-delay: 1.1s;
}

.faq-section.visible .faq-item:nth-child(3) .faq-question {
  transition-delay: 1.3s;
}

.faq-section.visible .faq-item:nth-child(4) .faq-question {
  transition-delay: 1.5s;
}

.faq-section.visible .faq-item:nth-child(5) .faq-question {
  transition-delay: 1.7s;
}

.faq-question-text {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease-out;
}

.faq-section.visible .faq-question-text {
  opacity: 1;
  transform: translateX(0);
}

.faq-section.visible .faq-item:nth-child(1) .faq-question-text {
  transition-delay: 1s;
}

.faq-section.visible .faq-item:nth-child(2) .faq-question-text {
  transition-delay: 1.2s;
}

.faq-section.visible .faq-item:nth-child(3) .faq-question-text {
  transition-delay: 1.4s;
}

.faq-section.visible .faq-item:nth-child(4) .faq-question-text {
  transition-delay: 1.6s;
}

.faq-section.visible .faq-item:nth-child(5) .faq-question-text {
  transition-delay: 1.8s;
}

.faq-chevron {
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.6s ease-out;
}

.faq-section.visible .faq-chevron {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.faq-section.visible .faq-item:nth-child(1) .faq-chevron {
  transition-delay: 1.1s;
}

.faq-section.visible .faq-item:nth-child(2) .faq-chevron {
  transition-delay: 1.3s;
}

.faq-section.visible .faq-item:nth-child(3) .faq-chevron {
  transition-delay: 1.5s;
}

.faq-section.visible .faq-item:nth-child(4) .faq-chevron {
  transition-delay: 1.7s;
}

.faq-section.visible .faq-item:nth-child(5) .faq-chevron {
  transition-delay: 1.9s;
}

.faq-answer {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.faq-section.visible .faq-answer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s; /* Remove delay for accordion functionality */
}

/* Remove individual delays for FAQ answers to fix accordion */
.faq-section.visible .faq-item:nth-child(1) .faq-answer,
.faq-section.visible .faq-item:nth-child(2) .faq-answer,
.faq-section.visible .faq-item:nth-child(3) .faq-answer,
.faq-section.visible .faq-item:nth-child(4) .faq-answer,
.faq-section.visible .faq-item:nth-child(5) .faq-answer {
  transition-delay: 0s;
}

/* Special keyframe animations for faq-section */
@keyframes faqSectionFade {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes faqLeftSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes faqRightSlide {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

@keyframes faqItemBounce {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
  }
  50% {
    transform: translateX(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

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

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

@keyframes faqChevronRotate {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

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

/* Apply special animations */
.faq-section.visible {
  animation: faqSectionFade 0.8s ease-out both;
}

.faq-section.visible .faq-content {
  animation: faqContentSlide 0.6s ease-out 0.2s both;
}

.faq-section.visible .faq-left {
  animation: faqLeftSlide 0.8s ease-out 0.3s both;
}

.faq-section.visible .faq-right {
  animation: faqRightSlide 0.8s ease-out 0.4s both;
}

.faq-section.visible .faq-main-heading {
  animation: faqHeadingSlide 0.6s ease-out 0.5s both;
}

.faq-section.visible .faq-description {
  animation: faqDescriptionSlide 0.6s ease-out 0.7s both;
}

.faq-section.visible .faq-ask-btn {
  animation: faqButtonSlide 0.6s ease-out 0.9s both;
}

.faq-section.visible .faq-accordion {
  animation: faqAccordionSlide 0.6s ease-out 0.6s both;
}

.faq-section.visible .faq-item {
  animation: faqItemBounce 0.8s ease-out both;
}

.faq-section.visible .faq-question {
  animation: faqQuestionSlide 0.6s ease-out both;
}

.faq-section.visible .faq-question-text {
  animation: faqQuestionTextSlide 0.6s ease-out both;
}

.faq-section.visible .faq-chevron {
  animation: faqChevronRotate 0.6s ease-out both;
}

.faq-section.visible .faq-answer {
  animation: faqAnswerSlide 0.6s ease-out 0s both; /* Remove delay for accordion */
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-left: 1.5px solid #1a76db;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question-text {
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  flex: 1;
  line-height: 34px;
}

.faq-chevron {
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-chevron img {
  width: 16px;
  height: 14px;
  transition: transform 0.3s ease;
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 0 32px 24px 32px;
}

.faq-answer p {
  font-weight: 400;
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1350px) {
  .scale-faster {
    display: block;
    height: auto;
    max-width: 100%;
  }
  .scale-faster-wrapper {
    width: 100%;
  }
  .scale-faster-image,
  .scale-faster-content {
    width: 50%;
  }
}

@media (max-width: 1200px) {
  .single-tool-card {
    padding: 18px;
  }
  .comprehensive-tool-cards {
    gap: 14px;
  }
  .single-tool-card h3 {
    font-size: 24px;
    line-height: 120%;
  }
  .single-tool-card p {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding-block: 54px;
  }
  .digisocial-btn {
    display: none;
  }
  .hero-content {
    gap: 10px;
    max-width: 700px;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .hero-content p {
    font-size: 14px;
    line-height: 21px;
  }
  .hero-wrapper {
    gap: 10px;
  }
  .primary-btn {
    padding: 7px 12px 7px 12px;
    font-size: 12px;
  }
  .primary-btn::after {
    content: url("images/Vector-small.svg ");
    opacity: 1;
    color: var(--text-light);
    padding-left: 5px;
  }

  .party-lovers-section {
    padding: 32px 0;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .stats-container {
    margin-bottom: 35px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 15px;
  }

  .stat-item:hover .stat-label {
    font-size: 26px;
  }
  .secret-weapon-section {
    padding-block: 32px;
  }
  .secret-wrapper-content h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0.56px;
  }
  .secret-weapon-wrapper {
    gap: 20px;
  }
  .secret-wrapper-content p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
  }
  .secret-wrapper-content,
  .secret-wrapper-timeline {
    width: 50%;
  }
  .timeline-text h4 {
    font-size: 20px;
  }
  .timeline-text p {
    font-size: 14px;
  }
  .timeline-one {
    gap: 21px;
    align-items: center;
  }
  .blue-line {
    height: 50px;
  }
  .comprehensive-tool-section {
    padding-block: 32px;
  }
  .comprehensive-tool-content {
    max-width: 700px;
  }
  .comprehensive-tool-content h2 {
    font-size: 28px;
  }
  .comprehensive-tool-content p {
    font-size: 14px;
  }
  .comprehensive-tool-wrapper {
    gap: 40px;
  }
  .comprehensive-tool-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .spotlighted-section {
    padding-block: 32px;
  }
  .spotlighted-wrapper {
    padding: 0;
  }
  .spotlighted-wrapper h2 {
    font-size: 28px;
  }
  .scale-faster-section {
    padding-block: 32px;
  }
  .scale-faster-content {
    gap: 16px;
  }
  .scale-faster-content h2 {
    font-size: 28px;
    padding-bottom: 12px;
  }
  .scale-faster-content p {
    font-size: 14px;
  }
  .stay-active-section {
    padding-block: 32px;
  }
  .active-users {
    padding-bottom: 12px;
  }
  .active-users h3 {
    font-size: 18px;
  }
  .active-users p {
    line-height: 18px;
  }
  .active-users-img {
    height: 45px;
    width: 45px;
  }
  .stay-active-content h2 {
    font-size: 28px;
    padding-bottom: 12px;
  }
  .stay-active-content p {
    font-size: 14px;
    padding-bottom: 16px;
  }
  .social-img {
    max-width: 100%;
    display: block;
    height: auto;
  }
  .social-media-section {
    padding-block: 32px;
  }
  .social-media-content h2 {
    font-size: 28px;
  }
  .social-media-content p {
    font-size: 14px;
  }
  .social-media-single-card {
    padding-block: 10px;
    padding-left: 10px;
    width: 100%;
  }
  .social-media-single-card h3 {
    font-size: 24px;
  }
  .social-media-single-card p {
    font-size: 14px;
    line-height: 20px;
  }
  .social-media-cards {
    max-height: 430px;
  }
  .faq-main-heading {
    font-size: 28px;
    line-height: 40px;
    padding-bottom: 12px;
  }
  .faq-description {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 20px;
  }
  .faq-content {
    gap: 60px;
  }
  .faq-question-text {
    font-size: 16px;
    line-height: 25px;
  }
  .faq-answer p {
    font-size: 14px;
  }
  .faq-section {
    padding-block: 32px;
  }
  .footer {
    padding: 40px 0;
  }

  .footer .container {
    padding: 0 20px;
  }

  .footer-top {
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 30px;
  }

  .footer-content {
    gap: 10rem;
    margin-bottom: 40px;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-nav-title,
  .footer-locations-title {
    font-size: 1.375rem;
  }

  .footer-link {
    font-size: 14px;
  }

  .location-name {
    font-size: 14px;
  }

  .location-address {
    font-size: 14px;
  }
  .footer-cta-title {
    font-size: 18px;
  }
  .newsletter-title {
    font-size: 18px;
  }
  .btn-secondary {
    font-size: 12px;
  }
  .footer-nav-title {
    font-size: 14px;
  }
  .footer-locations-title {
    font-size: 14px;
  }
  .copyright-text,
  .copyright-text2 {
    font-size: 14px;
  }
  .social-link {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
  .single-tool-card h3 {
    font-size: 18px;
    padding-top: 12px;
  }
  .single-tool-card p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0px 16px;
  }
  .hero-content {
    max-width: 450px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 18px;
  }

  .party-lovers-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .stats-container {
    margin-bottom: 30px;
  }

  .stat-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .stat-item:hover .stat-label {
    font-size: 14px;
  }

  .stat-number {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 14px;
  }

  .accent-line {
    margin-top: 15px;
  }
  .secret-weapon-wrapper {
    flex-direction: column;
    gap: 52px;
  }
  .secret-wrapper-content,
  .secret-wrapper-timeline {
    width: 100%;
  }
  .secret-wrapper-content p {
    font-size: 18px;
  }
  .comprehensive-tool-cards {
    gap: 12px;
  }
  .comprehensive-tool-content p {
    font-size: 18px;
  }
  .spotlight-track,
  .spotlight-container {
    gap: 100px;
  }
  .scale-faster-wrapper {
    flex-direction: column-reverse;
  }
  .scale-faster-image,
  .scale-faster-content {
    width: 100%;
  }
  .scale-faster-content p {
    font-size: 18px;
  }
  .active-users p {
    font-size: 14px;
  }
  .stay-active-wrapper {
    flex-direction: column;
  }
  .stay-active-content {
    padding-block: 20px;
    padding-left: 20px;
  }
  .stay-active-content p {
    font-size: 18px;
  }
  .stay-active-image {
    padding-right: 0;
  }
  .stay-active-wrapper {
    border-radius: 24px;
  }
  .social-media-wrapper {
    flex-direction: column;
  }
  .social-media-content {
    gap: 10px;
  }
  .social-media-cards,
  .media-card-wrapper {
    width: 100%;
  }
  .social-media-content p,
  .social-media-single-card p {
    font-size: 18px;
  }
  .faq-content {
    flex-direction: column;
  }
  .footer {
    padding: 30px 0;
  }

  .footer .container {
    padding: 0 16px;
  }
  .copyright-text2 {
    font-size: 14px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    text-align: left;
    width: 100%;
  }

  .footer-cta {
    gap: 16px;
    width: 100%;
  }

  .footer-newsletter {
    gap: 16px;
    max-width: 100%;
    margin-left: 0;
    width: 100%;
  }

  .copyright-dot {
    display: none;
  }
  .newsletter-title {
    display: none;
  }
  .join-community {
    display: block;
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
  }

  .footer-cta-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .btn-secondary {
    font-size: 16px;
  }

  .newsletter-input {
    max-width: 100%;
    min-width: 100%;
  }

  .email-input {
    padding: 14px 20px;
    font-size: 16px;
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
    width: 100%;
  }

  .footer-nav {
    width: 100%;
    text-align: left;
  }

  .footer-locations {
    width: 100%;
    text-align: left;
  }

  .footer-nav-title,
  .footer-locations-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer-nav-list {
    gap: 16px;
  }

  .footer-link {
    font-size: 1rem;
    text-align: center;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 400px;
  }

  .location-name {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
    margin-top: 0;
  }

  .location-address {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 24px 0;
    width: 100%;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .made-with-love {
    font-size: 0.875rem;
    text-align: center;
    display: block;
  }

  .copyright-text {
    display: none;
  }

  .footer-social {
    display: none;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-link {
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0px 16px;
  }
  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .accent-line {
    margin-top: 10px;
  }

  .accent-line::after {
    width: 2px;
    height: 2px;
  }
  .comprehensive-tool-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .party-lovers-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 12px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .stats-container {
    gap: 50px;
    margin-bottom: 25px;
  }

  .stats-track {
    gap: 50px;
  }

  .stat-item {
    max-width: 250px;
  }

  .stat-number {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 10px;
  }

  .accent-line {
    margin-top: 10px;
    height: 1px;
  }

  .accent-line::after {
    width: 3px;
    height: 3px;
  }
  .spotlight-track,
  .spotlight-container {
    gap: 40px;
  }
  .footer {
    padding: 24px 0;
  }

  .footer .container {
    padding: 0 12px;
  }

  .footer-top {
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .footer-cta-title,
  .newsletter-title {
    font-size: 1.25rem;
  }

  .footer-content {
    margin-bottom: 20px;
  }

  .footer-nav-title,
  .footer-locations-title {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }

  .footer-nav-list {
    gap: 12px;
  }

  .footer-link {
    font-size: 0.9rem;
  }

  .location-name {
    font-size: 0.9rem;
  }

  .location-address {
    font-size: 0.8rem;
  }

  .footer-bottom {
    gap: 16px;
    padding: 20px 0;
  }

  .footer-social {
    gap: 12px;
  }

  .social-link {
    font-size: 0.9rem;
  }
}
