:root {
  --primary-purple: #7f5af0;
  --primary-blue: #00c6ff;
  --dark-bg-start: #0a0a0a;
  --dark-bg-end: #1a1a2a;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-light: #cbd5e1;
  --text-lighter: #e2e8f0;
  --footer-bg: #0d0d1a;
  --footer-text: #9ca3af;
  --button-gradient: linear-gradient(90deg, #6c3ddc, #0099e6);
  --button-gradient-hover: linear-gradient(90deg, #0099e6, #6c3ddc);
  --mobile-nav-bg: rgba(0, 0, 0, 0.8);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to right top, var(--dark-bg-start), var(--dark-bg-end));
  color: white;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* --- Preloader Styles --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right top, var(--dark-bg-start), var(--dark-bg-end));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  opacity: 1;
  visibility: visible;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

#preloader .loader-brand {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3em, 10vw, 6em);
  font-weight: 900;
  letter-spacing: clamp(-5px, -1vw, -2px);
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue), var(--primary-purple));
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s linear infinite, textPulse 2s ease-in-out infinite alternate;
  text-shadow: 0 0 25px rgba(147, 51, 234, 0.6), 0 0 40px rgba(0, 198, 255, 0.3);
  margin-bottom: 20px;
}

@keyframes textPulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.5), 0 0 30px rgba(0, 198, 255, 0.2);
  }
  100% {
    transform: scale(1.03);
    text-shadow: 0 0 35px rgba(147, 51, 234, 0.8), 0 0 50px rgba(0, 198, 255, 0.4);
  }
}

#preloader .lottie-loader {
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.2s;
}

.loader-progress-bar {
  width: 250px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 15px rgba(127, 90, 240, 0.3);
}

.loader-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
  transform: translateX(-100%);
  animation: progressBarFill 2.5s ease-out forwards;
  animation-delay: 0.8s;
}

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

/* --- Animated Background Blobs --- */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to right top, var(--dark-bg-start), var(--dark-bg-end));
}

.animated-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.16;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

.animated-bg-blob:nth-child(1) {
  width: 85vmax;
  height: 85vmax;
  background: radial-gradient(circle at center, #9333ea, transparent 50%);
  top: -25%;
  left: -25%;
  animation: blobMove1 40s infinite ease-in-out;
}

.animated-bg-blob:nth-child(2) {
  width: 75vmax;
  height: 75vmax;
  background: radial-gradient(circle at center, #3b82f6, transparent 50%);
  bottom: -35%;
  right: -30%;
  animation: blobMove2 35s infinite ease-in-out;
  animation-delay: 5s;
}

.animated-bg-blob:nth-child(3) {
  width: 55vmax;
  height: 55vmax;
  background: radial-gradient(circle at center, #6c3ddc, transparent 50%);
  top: 15%;
  right: 8%;
  animation: blobMove3 30s infinite ease-in-out;
  animation-delay: 10s;
}

.animated-bg-blob:nth-child(4) {
  width: 45vmax;
  height: 45vmax;
  background: radial-gradient(circle at center, #0099e6, transparent 50%);
  bottom: 8%;
  left: 18%;
  animation: blobMove4 28s infinite ease-in-out;
  animation-delay: 15s;
}

.animated-bg-blob:nth-child(5) {
  width: 65vmax;
  height: 65vmax;
  background: radial-gradient(circle at center, #7f5af0, transparent 50%);
  top: 45%;
  left: 45%;
  animation: blobMove5 45s infinite ease-in-out;
  animation-delay: 20s;
}

@keyframes blobMove1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  30% {
    transform: translate(10%, 15%) scale(1.05);
  }
  70% {
    transform: translate(-15%, -10%) scale(0.95);
  }
}

@keyframes blobMove2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(-10%, -15%) scale(1.03);
  }
  80% {
    transform: translate(15%, 10%) scale(0.97);
  }
}

@keyframes blobMove3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(5%, -5%) scale(1.02);
  }
  60% {
    transform: translate(-8%, 8%) scale(0.98);
  }
}

@keyframes blobMove4 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  35% {
    transform: translate(-7%, 10%) scale(1.04);
  }
  75% {
    transform: translate(12%, -8%) scale(0.96);
  }
}

@keyframes blobMove5 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  45% {
    transform: translate(10%, -10%) scale(0.95);
  }
  85% {
    transform: translate(-10%, 10%) scale(1.05);
  }
}

body > *:not(.animated-bg):not(#preloader) {
  position: relative;
  z-index: 1;
}

/* --- Navigation Bar --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav .brand-name {
  font-weight: 800;
  font-size: 1.4em;
  color: white;
  text-decoration: none;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 80%;
}

nav ul li a:hover,
nav ul li a.active {
  color: white;
  text-shadow: 0 0 8px rgba(127, 90, 240, 0.4);
}

.menu-toggle {
  display: none;
  font-size: 1.8em;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10000;
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-toggle .fa-bars,
.menu-toggle .fa-times {
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s ease;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-toggle .fa-times {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.menu-toggle.active .fa-bars {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.menu-toggle.active .fa-times {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* --- Hero Section - Revamped --- */
header.hero {
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  z-index: 1;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInSlideUp 1.2s ease forwards;
  animation-delay: 0.5s;
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.hero-visual-element {
  position: absolute;
  width: 80%;
  max-width: 1000px;
  height: 420px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -50%) rotateX(10deg) scale(0.95);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  clip-path: polygon(
    0% 20%,
    10% 0%,
    90% 0%,
    100% 20%,
    100% 80%,
    90% 100%,
    10% 100%,
    0% 80%
  );
  animation: floatEffect 8s ease-in-out infinite alternate;
  top: 50%;
  left: 50%;
  z-index: 1;
}

.hero-visual-element::before,
.hero-visual-element::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  z-index: -1;
}

.hero-visual-element::before {
  width: 80%;
  height: 80%;
  background: radial-gradient(circle at center, var(--primary-purple), transparent 70%);
  top: 10%;
  left: 10%;
  animation: glowPulse 5s ease-in-out infinite alternate;
}

.hero-visual-element::after {
  width: 70%;
  height: 70%;
  background: radial-gradient(circle at center, var(--primary-blue), transparent 70%);
  bottom: 10%;
  right: 10%;
  animation: glowPulse 6s ease-in-out infinite alternate reverse;
}

@keyframes floatEffect {
  0% {
    transform: translate(-50%, -50%) rotateX(10deg) scale(0.95);
  }
  50% {
    transform: translate(-50%, -53%) rotateX(12deg) scale(0.96);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(10deg) scale(0.95);
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
}

/* -- About Page: Vision Cards -- */
.vision-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.vision-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-item p {
    color: var(--text-color);
    line-height: 1.6;
}


/* --- SAYXSEE TEXT FIXES --- */
.brand {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.2em, 8.5vw, 5em);
  font-weight: 900;
  letter-spacing: clamp(-4px, -0.8vw, -2px);
  position: relative;
  display: inline-block;
  perspective: 1000px;
  line-height: 1.15;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: clip;
  margin: 0 auto;
  padding-bottom: 8px;
}

.brand-text {
  display: block;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue), var(--primary-purple));
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s linear infinite;
  transform: rotateX(8deg) rotateY(-4deg) translateZ(-30px);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 0 0 25px rgba(147, 51, 234, 0.8), 0 0 40px rgba(0, 198, 255, 0.4);
  will-change: transform;
  line-height: inherit;
}

.brand:hover .brand-text {
  transform: rotateX(0deg) rotateY(0deg) translateZ(0);
  text-shadow: 0 0 35px rgba(147, 51, 234, 1), 0 0 60px rgba(0, 198, 255, 0.6);
}

.brand::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0%;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
  filter: blur(10px);
  opacity: 0.7;
  border-radius: 50%;
  animation: brandGlowPulse 4s infinite ease-in-out alternate;
}

@keyframes brandGlowPulse {
  0%, 100% {
    transform: scaleX(0.8) translateY(0px);
    opacity: 0.7;
  }
  50% {
    transform: scaleX(1) translateY(5px);
    opacity: 0.9;
  }
}

@keyframes shineText {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

header.hero p {
  font-size: clamp(1em, 2.2vw, 1.3em);
  color: var(--text-light);
  margin-top: 18px;
  line-height: 1.5;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-width: 180px;
  text-align: center;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-30deg);
  transition: all 0.4s ease;
  z-index: -1;
}

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

.hero-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
  background: var(--button-gradient-hover);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  backdrop-filter: blur(5px);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

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

/* --- Why SayXSee Section --- */
.why-sayxsee {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 50px auto 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 1s;
  opacity: 0;
  position: relative;
  z-index: 1;
}

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

.why-sayxsee h2 {
  font-size: 2.8em;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.why-sayxsee p.subtitle {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.feature-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-item .icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.feature-item .icon-wrapper i {
  font-size: 2.5em;
  background: linear-gradient(45deg, var(--primary-purple), var(--primary-blue));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.feature-item h3 {
  font-size: 1.5em;
  color: white;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.9em;
  line-height: 1.6;
}

/* --- Info Cards Section --- */
.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 20px;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 35px 25px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-align: center;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 95% 100%, 0% 100%);
  animation: cardFadeIn 1s ease forwards;
  opacity: 0;
}

.card:nth-child(1) {
  animation-delay: 0.2s;
}
.card:nth-child(2) {
  animation-delay: 0.4s;
}
.card:nth-child(3) {
  animation-delay: 0.6s;
}
.card:nth-child(4) {
  animation-delay: 0.8s;
}

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

.card::before {
  content: '';
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.3));
  filter: blur(50px);
  z-index: 0;
  transition: all 0.6s ease;
  opacity: 0;
  border-radius: 20px;
  transform: scale(0.9);
}

.card:hover::before {
  opacity: 0.8;
  transform: scale(1);
}

.card .lottie-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 0 15px rgba(127, 90, 240, 0.3);
}
.card:hover .lottie-container {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6), 0 0 25px rgba(127, 90, 240, 0.6);
  transform: translateY(-5px);
}

.card * {
  position: relative;
  z-index: 1;
}

.card h2 {
  margin: 15px 0 10px;
  color: #ffffff;
  font-size: 1.8em;
  font-weight: 700;
}

.card p {
  color: var(--text-lighter);
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card a {
  margin-top: 15px;
  display: inline-block;
  padding: 12px 24px;
  background: var(--button-gradient);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateZ(20px);
}

.card a:hover {
  background: var(--button-gradient-hover);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px) translateZ(25px);
}

/* --- Footer --- */
footer {
  background: var(--footer-bg);
  padding: 60px 20px 30px;
  color: var(--footer-text);
  font-size: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-image: radial-gradient(circle at 1% 1%, rgba(255, 255, 255, 0.01) 1px, transparent 1px), radial-gradient(circle at 99% 99%, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: left;
}

.footer-section {
  flex: 1;
  min-width: 180px;
}

.footer-section h3 {
  color: white;
  font-size: 1.2em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
  transition: width 0.3s ease;
}

.footer-section h3:hover::after {
  width: 70px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: var(--footer-text);
  font-size: 1.5em;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
  border-radius: 50%;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-purple), var(--primary-blue));
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: 0;
}

.social-icons a:hover::before {
  opacity: 0.2;
  transform: scale(1);
}

.social-icons a:hover {
  color: white;
  transform: translateY(-3px);
  text-shadow: 0 0 10px var(--primary-purple), 0 0 20px var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.6);
}

/*
* -- New Newsletter Signup Styles --
*/
.newsletter-signup {
  text-align: left;
}

.newsletter-signup h3 {
  color: white;
  font-size: 1.5em;
  margin-bottom: 15px;
}
.newsletter-signup p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 12px 18px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: white;
  font-size: 1em;
  flex-grow: 1;
  max-width: 300px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--footer-text);
  opacity: 0.7;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(127, 90, 240, 0.3);
}

.newsletter-form button {
  padding: 12px 25px;
  background: var(--button-gradient);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--button-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(45deg, var(--primary-purple), var(--primary-blue));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.services-hero {
  padding: 100px 20px;
  text-align: center;
}

.services-title {
  font-size: 3em;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00c6ff, #7f5af0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-subtitle {
  font-size: 1.2em;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(45deg, #7f5af0, #00c6ff);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrapper i {
  font-size: 2em;
  color: white;
}

.service-card h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: white;
}

.service-card p {
  color: #cbd5e1;
  line-height: 1.6;
}

.detailed-services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-heading {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #7f5af0, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-detail {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 40px;
  margin-bottom: 40px;
}

.service-detail h3 {
  font-size: 2em;
  margin-bottom: 20px;
  color: white;
}

.service-detail p, .service-detail ul {
  color: #cbd5e1;
  line-height: 1.8;
}

.service-detail ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-detail {
  background: #1f2937;      /* Dark background */
  padding: 1.5rem;          /* Inner spacing */
  border-radius: 1rem;      /* Smooth corners */
  margin-bottom: 1.5rem;    /* Gap between cards */
}

.service-detail .btn-primary {
  display: block;
  width: 100%;          /* Full width mobile pe */
  margin-top: 1rem;     /* Upar thoda gap */
  border-radius: 0.5rem;
}

.btn-primary, .btn-large {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, #6c3ddc, #0099e6);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1em;
}

.btn-primary:hover, .btn-large:hover {
  transform: scale(1.05);
}

.call-to-action {
  padding: 60px 20px;
  text-align: center;
}

.call-to-action h2 {
  color: white;
  font-size: 2.2em;
  margin-bottom: 20px;
}

/* Hero Section */
.about-hero {
  padding: 100px 20px;
  text-align: center;
}

.about-title {
  font-size: 3em;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00c6ff, #7f5af0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.about-subtitle {
  font-size: 1.2em;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-card {
  aspect-ratio: 1 / 1;   /* square force karega */
  width: 100%;
  max-width: 300px;      /* max size */
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* Vision Section */
.team-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.vision-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: white;
}

.vision-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.vision-item {
  background: rgba(255, 255, 255, 0.05); /* halka sa background */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.vision-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #7f5af0;
}

.vision-item p {
  color: #cbd5e1;
  font-size: 1em;
  line-height: 1.6;
}

/* Add these new styles to your main.css file */

/* --- New and Improved CSS for Info Tool Page --- */

.info-tool-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.tool-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    max-width: 650px;
    width: 100%;
    padding: 40px;
    color: white;
}

.tool-title {
    font-size: 2.8em;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tool-subtitle {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #a0aec0;
}

/* --- New and Improved CSS for Info Tool Page --- */

/* ... (other styles from previous response remain the same) ... */

.search-form-group {
    margin-bottom: 25px;
    /* Add this to create a vertical layout */
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers everything inside the group */
}

/* ... (other styles remain the same) ... */

.get-token-btn {
    width: 100%; /* Make the button full-width */
    padding: 15px 25px;
    background: linear-gradient(135deg, #7f5af0, #00c6ff);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px; /* Add some space above the button */
}

/* ... (rest of the CSS remains the same) ... */


.form-label {
    display: block;
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #cbd5e1;
}

.input-with-button {
    display: flex;
    gap: 10px;
}

.search-input {
    width: 100%; /* Make input fields full-width */
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    font-size: 1em;
    transition: all 0.3s ease;
    text-align: center; /* This will center the placeholder and text */
}

.search-input:focus {
    outline: none;
    border-color: #6c3ddc;
    box-shadow: 0 0 0 4px rgba(108, 61, 220, 0.2);
}

.get-token-btn {
    padding: 15px 25px;
    background: linear-gradient(135deg, #7f5af0, #00c6ff);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.get-token-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.search-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #38e21a, #00c6ff);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.status-message {
    margin-top: 10px;
    font-size: 0.9em;
    color: #a0aec0;
    text-align: center;
}

.search-results-box {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    min-height: 150px;
    text-align: left;
    color: #e2e8f0;
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-y: auto;
}

/*
 * Floating Message Container Styles
/*
/*
 * Floating Message Container Styles (Ultra-Aesthetic, High Transparency)
 */
.floating-message-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    /* --- Ultra-Transparent Frosted Glass Effect --- */
    background: rgba(255, 255, 255, 0.05); /* Very low opacity for extreme transparency */
    backdrop-filter: blur(8px); /* Slightly less blur for the higher transparency */
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Very subtle border */
    
    /* Dynamic, Multi-Color Gradient (more translucent) */
    background-image: linear-gradient(135deg,
        rgba(255,99,71,0.2), rgba(255,140,0,0.2), rgba(255,215,0,0.2), rgba(173,255,47,0.2), rgba(0,206,209,0.2),
        rgba(30,144,255,0.2), rgba(138,43,226,0.2), rgba(255,20,147,0.2), rgba(255,105,180,0.2), rgba(233,150,122,0.2),
        rgba(0,250,154,0.2), rgba(147,112,219,0.2), rgba(255,69,0,0.2), rgba(70,130,180,0.2), rgba(210,105,30,0.2)
    );
    background-size: 800% 800%;
    
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2); /* Softer, wider shadow for floating depth */
    z-index: 1000;
    cursor: pointer;
    text-align: center;
    max-width: 150px;
    font-size: 14px;
    
    /* Aesthetic Animations: Gradient flow, morphing, and gentle float */
    animation: 
        flowGradient 25s ease infinite, 
        morphBoxToBall 5s linear infinite,
        gentleFloat 3s ease-in-out infinite alternate; /* New: gentle float */

    /* Add perspective for more realistic 3D effects on hover */
    transform-style: preserve-3d;
    perspective: 800px;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

/* Defines the continuous color flow animation */
@keyframes flowGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Defines the Box-to-Ball Morphing Animation with sparkle effect */
@keyframes morphBoxToBall {
    0% { /* Start as a box */
        transform: scale(1) translateY(0);
        border-radius: 10px;
        box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    }
    49% { /* Almost a ball, before the "poof" */
        transform: scale(0.2) translateY(-20px);
        border-radius: 50%;
        box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.5); /* Subtle pre-sparkle glow */
    }
    50% { /* Morph into a ball with a "sparkle" */
        transform: scale(0.1) translateY(-25px); /* Shrink more for impact */
        border-radius: 50%;
        box-shadow: 0 0 30px 15px rgba(255, 255, 255, 0.8); /* Bright sparkle effect */
    }
    51% { /* Immediately after sparkle */
        transform: scale(0.15) translateY(-22px);
        border-radius: 50%;
        box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.3); /* Fading sparkle */
    }
    100% { /* Morph back to a box */
        transform: scale(1) translateY(0);
        border-radius: 10px;
        box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.2);
    }
}

/* NEW: Gentle Up/Down Floating Animation */
@keyframes gentleFloat {
    0% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-3px) rotateX(1deg); } /* Gentle bob up with slight tilt */
    100% { transform: translateY(0) rotateX(0deg); }
}


.floating-message-container a {
    text-decoration: none;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.6); /* Slightly less intense text shadow */
    
    /* Animate text opacity so it disappears during morph */
    animation: fadeText 5s linear infinite;
}

/* Defines the text fading animation */
@keyframes fadeText {
    0% { opacity: 1; }
    45% { opacity: 0; }
    55% { opacity: 0; }
    100% { opacity: 1; }
}

.floating-message-container:hover {
    transform: translateY(-8px) translateZ(30px) rotateX(3deg) scale(1.08); /* More pronounced, elegant lift */
    box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.4); /* Stronger, wider shadow on hover for depth */
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

/*
 * Result Card Styles (to match the ultra-transparent glassmorphism theme)
 */
.result-card {
    border: 1px solid rgba(255, 255, 255, 0.08); /* More subtle border */
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: rgba(30, 30, 30, 0.6); /* Slightly more transparent */
    backdrop-filter: blur(6px); /* Adjusted blur */
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25); /* Slightly softer shadow */
    color: #f0f0f0;
}

.result-card h4, .result-card p {
    color: #f5f5f5; /* Lighter text for better contrast */
}


/* --- Media Queries --- */
@media (min-width: 768px) {
  nav ul.nav-links {
    display: flex !important;
    position: static;
    transform: none;
    opacity: 1;
    width: auto;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: none;
    padding: 0;
    flex-direction: row;
  }
  .menu-toggle {
    display: none;
  }
  .footer-section {
    text-align: left;
  }
  .footer-section h3::after {
    left: 0;
    transform: none;
  }
  .social-icons {
    justify-content: flex-start;
  }
  .newsletter-signup {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .newsletter-signup h3,
  .newsletter-signup p {
    text-align: left;
  }
  .newsletter-form {
    justify-content: flex-start;
  }
  nav {
    padding: 15px 25px;
  }
  nav .brand-name {
    font-size: 1.3em;
  }
  nav ul {
    gap: 25px;
  }
  nav ul li a {
    font-size: 0.95em;
    padding: 7px 13px;
  }
  header.hero {
    padding: 50px 20px 35px;
    min-height: 65vh;
  }
  .hero-content {
    padding: 0 30px;
  }
  .hero-visual-element {
    width: 85%;
    max-width: 850px;
    height: 380px;
  }
  .brand {
    font-size: clamp(3em, 7.5vw, 4.5em);
    letter-spacing: clamp(-3.5px, -0.9vw, -1.5px);
    line-height: 1.15;
  }
  header.hero p {
    font-size: clamp(0.95em, 2vw, 1.2em);
  }
  .hero-cta {
    gap: 15px;
    flex-direction: row;
  }
  .hero-btn {
    min-width: 160px;
    padding: 14px 28px;
    font-size: 0.95em;
  }
  /* Footer Fixes */
  .footer-content {
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-section {
    flex: none;
    width: 30%;
    margin-bottom: 0;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .detailed-services {
    padding: 0 1rem; /* Left-right margin */
  }

  .service-detail {
    padding: 1.25rem;
  }
  /* -- About Page Cards Desktop Layout -- */
  .why-sayxsee-container {
      display: flex;
      gap: 30px;
      justify-content: center;
      align-items: stretch;
  }
  /* Mobile First Adjustments */
  
  .services-hero {
    padding: 2rem 1rem;
  }

  .services-title {
    font-size: 1.8rem;
  }

  .services-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr; /* ek column me cards */
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  /* Detailed Services */
  .detailed-services {
    padding: 2rem 1rem;
  }

  .service-detail {
    padding: 1.5rem;
  }

  /* Buttons */
  .btn-primary, 
  .btn-large {
    width: 100%; /* pura button width lega */
    text-align: center;
  }

  /* CTA */
  .call-to-action {
    padding: 2rem 1rem;
  }
  .tool-container {
    padding: 20px;
  }
  .tool-title {
    font-size: 2em;
  }
  .input-with-button {
    flex-direction: column;
  }
  .get-token-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  nav ul.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--mobile-nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    gap: 10px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    z-index: 9998;
  }
  nav ul.nav-links.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  nav ul li {
    width: 100%;
    text-align: center;
  }
  nav ul li a {
    padding: 12px 0;
    display: block;
    font-size: 1.1em;
  }
  nav ul li a::after {
    bottom: 2px;
  }
  .menu-toggle {
    display: flex;
  }
  .footer-section {
    text-align: center;
  }
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .social-icons {
    justify-content: center;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 90%;
    max-width: 350px;
  }
  header.hero {
    padding: 40px 15px 30px;
    min-height: auto;
  }
  .hero-content {
    padding: 0 20px;
  }
  .hero-visual-element {
    height: 280px;
    width: 95%;
    max-width: 350px;
  }
  .brand {
    font-size: clamp(2.5em, 11vw, 4em);
    letter-spacing: clamp(-3px, -1.5vw, -1px);
    line-height: 1.15;
  }
  header.hero p {
    font-size: 0.95em;
    margin-top: 15px;
  }
  .hero-cta {
    flex-direction: column;
    gap: 12px;
    max-width: 90%;
  }
  .hero-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .why-sayxsee h2 {
    font-size: 1.6em;
  }
  .why-sayxsee p.subtitle {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 10px 10px;
  }
  nav ul li a {
    font-size: 1em;
    padding: 10px 0;
  }
  .hero-visual-element {
    height: 280px;
    width: 95%;
    max-width: 350px;
  }
  .brand {
    font-size: clamp(2em, 13vw, 3.5em);
    letter-spacing: clamp(-2px, -1.8vw, 0px);
    line-height: 1.2;
  }
  header.hero p {
    font-size: 0.9em;
    margin-top: 10px;
  }
  .hero-cta {
    gap: 10px;
    max-width: 95%;
  }
  .hero-btn {
    font-size: 0.8em;
    padding: 10px 20px;
    max-width: 280px;
  }
  .why-sayxsee h2 {
    font-size: 1.6em;
  }
  .why-sayxsee p.subtitle {
    font-size: 0.9em;
  }
}
