html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

progress {
  vertical-align: baseline;
  display: inline-block;
}

a:active,
a:hover {
  outline: 0;
}

strong {
  font-weight: bold;
}

h1 {
  margin: 20px 0px;
  font-size: 2em;
}

h2 {
  margin: 20px 0px;
}

input {
  color: inherit;
  font: inherit;
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 500;
}

ul,
ol,
li {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

a {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  outline: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
  border: 0;
  height: auto;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

.wrapper {
  min-height: 100vh;
  margin: 0 auto;
  box-sizing: border-box;
}

.main {
  flex: 1 0 auto;
}

a {
  text-transform: none;
  margin: 0;
  padding: 0;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  max-width: 1680px;
  padding: 0px 5px;
  width: 100%;
  margin: 0 auto;
}

footer,
header,
menu,
nav,
section {
  display: block;
}

a:active,
a:hover {
  outline: 0;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
  text-align: center;
}

h3 {
  margin: 10px 0px;
  padding: 0px;
}

svg:not(:root) {
  overflow: hidden;
}

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

/* Base */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
}

.index-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: linear-gradient(135deg, #4a148c 0%, #311b92 100%);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(74, 20, 140, 0.5);
  backdrop-filter: blur(12px);
}

.logo a {
  color: #bb86fc;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(187, 134, 252, 0.8);
  transition: transform 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
}

.logo a:hover {
  color: #7c4dff;
  transform: rotate(5deg) scale(1.1);
  text-shadow: 0 0 15px rgba(124, 77, 255, 1);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 24px;
}

.nav-menu a {
  color: #ede7f6;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #673ab7, #3f51b5);
  transition: width 0.4s ease, left 0.4s ease, box-shadow 0.4s ease;
}

.nav-menu a:hover::after {
  width: 100%;
  left: 0;
  box-shadow: 0 0 8px rgba(63, 81, 181, 0.7);
}

.nav-menu a:hover {
  color: #673ab7;
  transform: translateY(-3px) scale(1.05);
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 32px;
  height: 22px;
  justify-content: space-between;
}

.burger span {
  background: #fff;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  transition: all 0.4s ease, box-shadow 0.4s ease;
}

.burger span:hover {
  box-shadow: 0 0 6px rgba(103, 58, 183, 0.8);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #4a148c, #311b92);
    flex-direction: column;
    padding: 12px;
    box-shadow: 0 8px 20px rgba(74, 20, 140, 0.4);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 12px 0;
  }

  .burger {
    display: flex;
  }
}

.index-footer {
  background: linear-gradient(180deg, #1a237e 0%, #0d47a1 100%);
  color: #e8eaf6;
  padding: 3.5rem 1.2rem;
  border-top: 4px solid #3f51b5;
  position: relative;
  overflow: hidden;
}

.index-footer::before {
  content: "";
  display: block;
  height: 5px;
  width: 60px;
  background: linear-gradient(90deg, #673ab7, #3f51b5);
  margin: 0 auto 1.2rem auto;
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(63, 81, 181, 0.7);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.index-footer h3 {
  margin-bottom: 0.9rem;
  color: #bb86fc;
  text-shadow: 0 0 12px rgba(187, 134, 252, 0.8);
  font-weight: 800;
  position: relative;
}

.index-footer h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3f51b5, transparent);
  transition: width 0.4s ease;
}

.index-footer h3:hover::after {
  width: 100%;
}

.index-footer-nav-list,
.index-footer-contacts,
.index-footer-policies {
  list-style: none;
  padding: 0;
  margin: 0;
}

.index-footer-nav-link,
.index-footer-contacts a {
  color: #e8eaf6;
  text-decoration: none;
  transition: color 0.4s ease, transform 0.4s ease, text-shadow 0.4s ease;
  display: inline-block;
}

.index-footer-nav-link:hover,
.index-footer-contacts a:hover {
  color: #3f51b5;
  text-shadow: 0 0 10px rgba(63, 81, 181, 0.8);
  transform: translateX(6px) scale(1.02);
}

.index-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  margin-bottom: 2.2rem;
}

.index-footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #c5cae9;
  font-style: italic;
  text-shadow: 0 0 8px rgba(63, 81, 181, 0.6);
  position: relative;
}

.index-footer-copyright::before {
  content: "🌟";
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  font-size: 1.2rem;
  animation: sparkle 1.5s infinite alternate;
}

@keyframes sparkle {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.index-header::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #673ab7, #3f51b5, #bb86fc);
  opacity: 0.8;
  box-shadow: 0 0 10px rgba(63, 81, 181, 0.6);
  animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.index-header {
  background: linear-gradient(135deg, #4527a0 0%, #283593 100%);
  color: #e8eaf6;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.index-header .index-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.index-header .index-logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.index-header ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.index-header a {
  color: #e8eaf6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.index-header a:hover {
  color: #7c4dff;
}

main {
  padding: 40px 0;
}

section {
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 20px;
  color: #fff;
}

.index-hero {
  background-image: url("img/app-bg1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e8eaf6;
  position: relative;
}

.index-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.7);
}

.index-hero-content {
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease-in-out;
}

.index-hero-content p {
  color: #fff;
}

.index-hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.index-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.index-hero-button {
  background: #4527a0;
  color: #e8eaf6;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.index-hero-button:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 4px 8px rgba(69, 39, 160, 0.5);
  background: #5e35b1;
}

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

.index-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: linear-gradient(to right, #212121, #1e1e1e);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.index-intro-text {
  flex: 1;
  min-width: 300px;
}
.index-intro-text p {
  color: #fff;
}
.index-intro-image {
  flex: 1;
  min-width: 300px;
}

.index-intro-image img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.index-intro-image img:hover {
  transform: rotate(2deg) scale(1.02);
  filter: brightness(1.2);
}

.index-intro-icons {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

@media (max-width: 425px) {
  .index-intro-icons {
    flex-direction: column;
  }
}

.index-intro-icon {
  text-align: center;
  width: 100%;
}

.index-intro-icon img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.index-featured {
  background: #4527a0;
  color: #e8eaf6;
  padding: 60px 0;
}

.index-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.index-featured-card {
  background: rgba(69, 39, 160, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: slideUp 0.8s ease;
}

.index-featured-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 8px 20px rgba(69, 39, 160, 0.6);
}

.index-featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: filter 0.4s ease;
}

.index-featured-card:hover img {
  filter: brightness(1.1);
}

.index-featured-card-content {
  padding: 10px;
  text-align: center;
}

.index-featured-card-content p {
  color: #fff;
}

.index-featured-card a {
  color: #bb86fc;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.index-featured-card a:hover {
  color: #7c4dff;
}

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

.index-story {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: #212121;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.index-story-text {
  flex: 2;
  min-width: 300px;
}

.index-story-text p {
  color: #fff;
}

.index-story-image {
  flex: 1;
  min-width: 300px;
}

.index-story-image img {
  width: 100%;
  border-radius: 10px;
  transition: filter 0.5s ease, transform 0.5s ease;
}

.index-story-image img:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
}

.index-story-timeline {
  margin-top: 20px;
  list-style: none;
}

.index-story-timeline li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.index-story-timeline li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #5e35b1;
}

.index-story-timeline li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bb86fc;
  animation: pulse 1.5s infinite;
}

.index-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  background: linear-gradient(to bottom, #1e1e1e, #212121);
  padding: 40px 0;
}

.index-why h2 {
  color: #000;
}

.index-why p {
  color: #000;
}

.index-why-item {
  padding: 10px;
  background: #282828;
  border: 1px solid #4527a0;
  border-radius: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  margin-bottom: 5px;
}

.index-why-item:hover {
  box-shadow: 0 4px 12px rgba(69, 39, 160, 0.6);
  transform: translateY(-5px) rotate(1deg);
}

.index-why-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}

.index-why-item:hover img {
  transform: rotate(360deg);
}

.index-seasonal {
  background: linear-gradient(135deg, #4527a0, #5e35b1);
  color: #e8eaf6;
  padding: 60px 0;
}

.index-seasonal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.index-seasonal-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.index-seasonal-card:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 6px 15px rgba(69, 39, 160, 0.6);
}

.index-seasonal-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: filter 0.4s ease;
}

.index-seasonal-card:hover img {
  filter: contrast(1.2);
}

.index-seasonal-card-content {
  padding: 8px;
  text-align: center;
}

.index-seasonal-card-content p {
  color: #fff;
}

.index-seasonal-card a {
  color: #e8eaf6;
  text-decoration: underline;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.index-seasonal-card a:hover {
  color: #7c4dff;
}

.index-spotlight {
  text-align: center;
  background: #1e1e1e;
  padding: 50px 0;
  border-top: 3px solid #5e35b1;
  border-bottom: 3px solid #bb86fc;
}

.index-spotlight h2 {
  color: #000;
}

.index-spotlight p {
  color: #000;
}

.index-spotlight-image {
  max-width: 800px;
  margin: 20px auto;
  border-radius: 10px;
  overflow: hidden;
}

.index-spotlight-image img {
  width: 100%;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.index-spotlight-image img:hover {
  transform: scale(1.05);
  filter: hue-rotate(30deg);
}

.index-spotlight-quote {
  font-style: italic;
  font-size: 1.4rem;
  margin-top: 20px;
  padding: 0 40px;
  color: #4527a0;
  border-left: 5px solid #bb86fc;
  animation: fadeIn 2s ease-in-out;
}

.index-testimonials {
  background: #212121;
  padding: 60px 0;
}

.index-testimonials h2 {
  color: #000;
}

.index-testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.index-testimonial-card {
  background: #282828;
  padding: 10px;
  border-radius: 15px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(69, 39, 160, 0.4);
  animation: fadeInLeft 1s ease;
}

.index-testimonial-card:nth-child(even) {
  animation-delay: 0.3s;
}

.index-testimonial-card:nth-child(odd) {
  animation-delay: 0.6s;
}

.index-testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}

.index-testimonial-card:hover img {
  transform: scale(1.1);
}

.index-testimonial-stars {
  color: #bb86fc;
  margin-bottom: 10px;
}

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

.index-process {
  background: linear-gradient(to bottom, #212121, #1e1e1e);
  padding: 60px 0;
}

.index-process-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.index-process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  padding: 10px;
  background: #282828;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.index-process-step p {
  color: #fff;
}

.index-process-step:hover {
  transform: translateY(-5px) rotate(2deg);
}

.index-process-step::before {
  content: attr(data-number);
  display: block;
  width: 40px;
  height: 40px;
  background: #4527a0;
  color: #e8eaf6;
  border-radius: 50%;
  line-height: 40px;
  margin: 0 auto 10px;
  font-weight: bold;
  animation: spin 2s linear infinite;
}

.index-impact {
  text-align: center;
  padding: 50px 0;
  background: #5e35b1;
  color: #e8eaf6;
}

.index-impact p {
  color: #fff;
}

.index-impact-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.index-impact-stat {
  background: rgba(94, 53, 177, 0.4);
  padding: 10px;
  border-radius: 10px;
  min-width: 150px;
  text-align: center;
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.index-impact-infographic {
  max-width: 100%;
  margin-top: 30px;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.index-impact-infographic:hover {
  transform: scale(1.05);
}

.index-subscription {
  background: #4527a0;
  color: #e0e0e0;
  padding: 60px 0;
  text-align: center;
}

.index-subscription p {
  color: #fff;
}

.index-subscription-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.index-subscription-plan {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: #282828;
  padding: 10px;
  border-radius: 15px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.index-subscription-plan:hover {
  transform: scale(1.05) rotate(-1deg);
}

.index-subscription-plan ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
  margin-bottom: 20px;
}

.index-subscription-button {
  background: #5e35b1;
  color: #e8eaf6;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
  transition: background 0.3s ease;
}

.index-subscription-button:hover {
  background: #7c4dff;
}

.index-guides {
  padding: 60px 0;
  background: #1e1e1e;
}

.index-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.index-guides-grid p {
  color: #fff;
}

.index-guide-card {
  background: #282828;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.index-guide-card:hover {
  box-shadow: 0 6px 15px rgba(69, 39, 160, 0.6);
  transform: translateY(-5px);
}

.index-guide-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.index-guide-card:hover img {
  transform: scale(1.1);
}

.index-guide-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.index-guide-steps {
  list-style: decimal;
  padding-left: 20px;
  margin-top: 10px;
}

.index-guide-link {
  color: #4527a0;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.index-guide-link:hover {
  color: #bb86fc;
}

.index-commitment {
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(to right, #5e35b1, #4527a0);
  color: #e8eaf6;
}

.index-commitment p {
  color: #fff;
}

.index-commitment img {
  width: 100%;
  transition: filter 0.4s ease;
}

.index-commitment img:hover {
  filter: brightness(1.2);
}

.index-commitment-image {
  max-width: 600px;
  margin: 20px auto;
  border-radius: 10px;
}

.index-commitment-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.index-commitment-item {
  flex: 1;
  min-width: 200px;
  padding: 10px;
  background: rgba(94, 53, 177, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.4s ease;
}

.index-commitment-item:hover {
  transform: scale(1.05);
}

.index-commitment-item img {
  width: 40px;
  height: 40px;
}

.index-partners {
  padding: 60px 0;
  background: #212121;
}

.index-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  justify-items: center;
}

.index-partner-item {
  text-align: center;
  max-width: 200px;
}

.index-partner-logo {
  max-width: 150px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.index-partner-logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #bb86fc);
}

.index-news {
  background: #4527a0;
  color: #e8eaf6;
  padding: 60px 0;
}

.index-news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.index-news-list p {
  color: #fff;
}

.index-news-item {
  background: rgba(94, 53, 177, 0.3);
  padding: 10px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.index-news-item:hover {
  background: rgba(94, 53, 177, 0.5);
}

.index-community {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  padding: 10px;
  background: #1e1e1e;
  border-radius: 10px;
}

.index-community-text {
  flex: 1;
}

.index-community-text p {
  color: #fff;
}

.index-community-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.index-community-gallery img {
  width: 100%;
  border-radius: 5px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.index-community-gallery img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.index-cta {
  background: #4527a0;
  color: #e8eaf6;
  text-align: center;
  padding: 60px 0;
  border-radius: 10px;
}

.index-cta p {
  color: #fff;
}

.index-cta-button {
  background: #bb86fc;
  color: #212121;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.index-cta-button:hover {
  background: #7c4dff;
  transform: scale(1.1) rotate(3deg);
}

.index-footer {
  background: #121212;
  color: #e8eaf6;
  text-align: center;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .index-hero h1 {
    font-size: 2rem;
  }

  .index-intro,
  .index-story,
  .index-community {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .index-featured-grid,
  .index-seasonal-grid,
  .index-guides-grid,
  .index-partners-grid {
    grid-template-columns: 1fr;
  }

  .index-why {
    grid-template-columns: 1fr;
  }

  .index-process-timeline,
  .index-subscription-plans,
  .index-commitment-list,
  .index-impact-stats {
    flex-direction: column;
  }

  .index-testimonials-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .index-header ul {
    flex-direction: column;
    gap: 10px;
  }

  .index-container {
    padding: 0 10px;
  }

  section {
    margin-bottom: 30px;
  }
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e8eaf6;
}

.service-hero img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: brightness(0.6);
}

.service-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.6);
  z-index: -1;
}

.service-hero-content {
  max-width: 800px;
  padding: 10px;
  animation: zoomIn 1.2s ease-out;
}

.service-hero h1 {
  font-size: 3.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.service-hero p {
  font-size: 1.3rem;
  margin-bottom: 35px;
}

.service-hero-button {
  background: linear-gradient(135deg, #4a148c, #bb86fc);
  color: #212121;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-hero-button:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 6px 12px rgba(187, 134, 252, 0.5);
}

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

.service-featured {
  background: #282828;
  padding: 70px 0;
}

.service-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.service-featured-card {
  background: #1e1e1e;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(69, 39, 160, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.service-featured-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 8px 25px rgba(124, 77, 255, 0.5);
}

.service-featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #311b92, #4a148c);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-featured-card:hover::before {
  opacity: 1;
}

.service-featured-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-featured-card:hover img {
  transform: scale(1.05);
}

.service-featured-card-content {
  padding: 10px;
  text-align: center;
}

.service-featured-card a {
  color: #311b92;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
  transition: color 0.4s ease;
}

.service-featured-card a:hover {
  color: #7c4dff;
}

.service-impact {
  background: linear-gradient(135deg, #311b92, #1a237e);
  color: #e8eaf6;
  padding: 70px 0;
  text-align: center;
}

.service-impact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-impact-counter {
  min-width: 200px;
  animation: countUp 2s ease-in-out forwards;
}

.service-impact-counter h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}

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

.service-spotlight {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: #282828;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.service-spotlight-image img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.service-spotlight-image img:hover {
  transform: scale(1.04);
  filter: brightness(1.15);
}

.service-process {
  padding: 70px 0;
  background: #1e1e1e;
}

.service-process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.service-process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #4a148c;
  transform: translateX(-50%);
}

.service-process-step {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}

.service-process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.service-process-step-content {
  flex: 1;
  padding: 10px;
  background: #282828;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.service-process-step-content:hover {
  transform: scale(1.03) rotate(1deg);
}

.service-process-step-number {
  width: 50px;
  height: 50px;
  background: #311b92;
  color: #e8eaf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 20px;
  z-index: 1;
  animation: pulse 1.5s infinite;
}

.service-seasonal {
  background: linear-gradient(135deg, #bb86fc, #4a148c);
  color: #212121;
  padding: 60px 0;
  text-align: center;
  border-radius: 15px;
}

.service-seasonal-button {
  background: #311b92;
  color: #e8eaf6;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 35px;
  transition: background 0.4s ease, transform 0.4s ease;
}

.service-seasonal-button:hover {
  background: #1a237e;
  transform: scale(1.05);
}

.service-testimonials {
  overflow: hidden;
  padding: 70px 0;
  background: #282828;
}

.service-testimonials-carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.service-testimonial-card {
  flex: 0 0 33.33%;
  padding: 10px;
  background: #1e1e1e;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
  text-align: center;
  margin: 0 15px;
  transition: transform 0.4s ease;
}

.service-testimonial-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.service-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.service-visual-image img {
  width: 100%;
  border-radius: 10px;
  transform: skew(-5deg);
  transition: transform 0.4s ease;
}

.service-visual-image img:hover {
  transform: skew(0deg) scale(1.05);
}

.service-visual-text {
  padding: 10px;
  background: #282828;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  text-align: center;
  background: linear-gradient(to bottom, #1e1e1e, #212121);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.service-why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at bottom left,
    rgba(124, 77, 255, 0.3),
    transparent
  );
  z-index: -1;
}

.service-why::after {
  content: "🎮";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

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

.service-why-item {
  padding: 20px;
  background: #282828;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  margin-bottom: 10px;
}

.service-why-item:hover {
  background: #311b92;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 8px 25px rgba(124, 77, 255, 0.5);
}

.service-why-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background: radial-gradient(circle, rgba(124, 77, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 20px;
}

.service-why-item:hover::before {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: conic-gradient(#7c4dff, #4527a0, #7c4dff);
  position: relative;
  transition: transform 0.5s ease;
}

.service-icon:hover {
  transform: rotate(360deg);
}

.service-icon.culture::after {
  content: "🕉";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #e8eaf6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.service-icon.tech::after {
  content: "💻";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #e8eaf6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.service-icon.user::after {
  content: "👥";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #e8eaf6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.service-icon.success::after {
  content: "🏆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #e8eaf6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.service-cta {
  background: linear-gradient(135deg, #311b92, #4a148c);
  color: #e8eaf6;
  text-align: center;
  padding: 70px 0;
  border-radius: 15px;
}

.service-cta-button {
  background: #5e35b1;
  color: #e8eaf6;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 40px;
  transition: background 0.4s ease, transform 0.4s ease;
}

.service-cta-button:hover {
  background: #1a237e;
  transform: rotate(3deg) scale(1.05);
}

@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2.5rem;
  }

  .service-featured-grid {
    grid-template-columns: 1fr;
  }

  .service-impact-grid {
    flex-direction: column;
  }

  .service-spotlight {
    flex-direction: column;
  }

  .service-process-timeline::before {
    left: 25px;
  }

  .service-process-step {
    flex-direction: column;
  }

  .service-process-step:nth-child(even) {
    flex-direction: column;
  }

  .service-process-step-number {
    margin: 0 auto 20px;
  }

  .service-testimonial-card {
    flex: 0 0 80%;
  }

  .service-visual {
    grid-template-columns: 1fr;
  }

  .service-why {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-container {
    padding: 0 15px;
  }

  section {
    margin-bottom: 15px;
  }
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-intro {
  margin-top: 50px;
}

.about-story {
  padding: 60px 0;
  background: #1e1e1e;
}

.about-story-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.about-story-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #4a148c, #311b92);
  transform: translateX(-50%);
}

.about-story-event {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.about-story-event:nth-child(even) {
  flex-direction: row-reverse;
}

.about-story-event-content {
  flex: 1;
  padding: 10px;
  background: #282828;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.about-story-event-content:hover {
  transform: scale(1.05) rotate(2deg);
}

.about-story-event-marker {
  width: 50px;
  height: 50px;
  background: #bb86fc;
  color: #212121;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 25px;
  z-index: 1;
  animation: pulse 1.5s infinite;
}

.about-founder {
  background: linear-gradient(to bottom, #282828, #1e1e1e);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-founder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(187, 134, 252, 0.3),
    transparent
  );
  z-index: 0;
}

.about-founder-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-founder-quote {
  flex: 1;
  min-width: 320px;
  font-size: 1.6rem;
  font-style: italic;
  color: #5e35b1;
  border-left: 6px solid #7c4dff;
  padding-left: 25px;
  position: relative;
  transition: transform 0.4s ease;
}

.about-founder-quote::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 3rem;
  color: #7c4dff;
  opacity: 0.5;
}

.about-founder-quote:hover {
  transform: translateX(10px);
}

.about-founder-image .founder-portrait {
  width: 100%;
  max-width: 320px;
  height: 320px;
  border-radius: 50%;
  background: conic-gradient(#7c4dff, #bb86fc, #7c4dff);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-founder-image .founder-portrait::after {
  content: "A";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  color: #e8eaf6;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.about-founder-image .founder-portrait:hover {
  transform: rotate(6deg) scale(1.05);
  box-shadow: 0 8px 25px rgba(124, 77, 255, 0.5);
}

.about-commitment {
  padding: 70px 0;
  background: linear-gradient(to bottom, #212121, #282828);
  position: relative;
}

.about-commitment::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 5px;
  background: linear-gradient(90deg, #7c4dff, #5e35b1);
  border-radius: 3px;
}

.about-commitment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.about-commitment-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 15px;
  background: #282828;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(94, 53, 177, 0.3);
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.about-commitment-item p {
  text-align: center;
}

.about-commitment-item:hover {
  background: #311b92;
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(124, 77, 255, 0.4);
}

.about-commitment-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background: radial-gradient(circle, rgba(124, 77, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 15px;
}

.about-commitment-item:hover::before {
  opacity: 1;
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(#7c4dff, #bb86fc, #5e35b1);
  position: relative;
  transition: transform 0.4s ease;
}

.value-icon:hover {
  transform: rotate(360deg);
}

.value-icon.culture::after {
  content: "🕉";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #e8eaf6;
}

.value-icon.innovation::after {
  content: "⚙️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #e8eaf6;
}

.value-icon.community::after {
  content: "🤝";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #e8eaf6;
}

.value-icon.ethics::after {
  content: "⚖️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #e8eaf6;
}

.value-icon.sustainability::after {
  content: "🌱";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #e8eaf6;
}

.about-impact {
  text-align: center;
  padding: 60px 0;
  background: #212121;
}

.about-impact-map {
  max-width: 1000px;
  margin: 20px auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.about-impact-map img {
  width: 100%;
  transition: transform 0.5s ease;
}

.about-impact-map:hover img {
  transform: scale(1.05);
}

.about-impact-map::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(74, 20, 140, 0.3),
    rgba(49, 27, 146, 0.3)
  );
  pointer-events: none;
}

.about-team {
  background: #282828;
  padding: 60px 0;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.about-team-member {
  text-align: center;
  background: #1e1e1e;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.about-team-member:hover {
  transform: translateY(-10px) rotate(1deg);
}

.about-team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: border 0.4s ease;
}

.about-team-member:hover {
  transform: translateY(-10px);
}

.about-team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.about-why {
  padding: 70px 0;
  background: linear-gradient(to bottom, #ffdde1, #ee9ca7);
  position: relative;
  overflow: hidden;
}

.about-why::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.3), transparent);
  z-index: 0;
}

.about-why::after {
  content: "✨";
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 3.5rem;
  opacity: 0.5;
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

.about-why-progress {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-why-item {
  margin-bottom: 35px;
  position: relative;
}

.about-why-item h3 {
  margin-bottom: 12px;
  color: #c71585;
  position: relative;
}

.about-why-item h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff1493, #ff69b4);
  transition: width 0.5s ease;
}

.about-why-item:hover h3::after {
  width: 120px;
}

.about-why-progress-bar {
  background: #ffe4e1;
  height: 25px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

.about-why-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff69b4, #ff1493);
  transition: width 1.5s ease-in-out;
  position: relative;
}

.about-why-progress-fill1 {
  width: 95%;
}
.about-why-progress-fill2 {
  width: 90%;
}
.about-why-progress-fill3 {
  width: 93%;
}
.about-why-progress-fill4 {
  width: 98%;
}

.about-why-progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4));
  animation: shimmer 2.5s infinite;
}

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

.about-partners {
  background: linear-gradient(to bottom, #fff5e1, #ffe4b5);
  padding: 60px 0;
}

.about-partners h2,
p {
  color: #000;
}

.about-partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  justify-items: center;
}

@media (max-width: 768px) {
  .about-partners-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 425px) {
  .about-partners-grid {
    grid-template-columns: 1fr;
  }
}

.about-partner-logo {
  max-width: 100%;
  transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
}

.about-partner-logo:hover {
  transform: scale(1.2) rotate(5deg);
  filter: brightness(1.3);
  box-shadow: 0 6px 12px rgba(255, 165, 0, 0.4);
}

.about-gallery {
  padding: 60px 0;
  background: linear-gradient(to right, #e6e6fa, #dcdcdc);
}

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

.about-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-gallery-item img {
  width: 100%;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.about-gallery-item:hover img {
  transform: scale(1.15);
  filter: contrast(1.2);
}

.about-gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(138, 43, 226, 0.5));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-gallery-item:hover::after {
  opacity: 1;
}

.about-cta {
  background: url("img/app-bg2.jpg") center/cover no-repeat;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  border-radius: 15px;
}

.about-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(75, 0, 130, 0.6);
  z-index: 0;
}

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

.about-cta-button {
  background: linear-gradient(135deg, #ff4500, #ff8c00);
  color: #fff;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}

.about-cta-button:hover {
  transform: scale(1.15) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.6);
  background: linear-gradient(135deg, #ff8c00, #ffa500);
}

@media (max-width: 768px) {
  .about-story-timeline::before {
    left: 25px;
  }

  .about-story-event {
    flex-direction: column;
  }

  .about-story-event:nth-child(even) {
    flex-direction: column;
  }

  .about-story-event-marker {
    margin: 0 auto 20px;
  }

  .about-founder-content {
    flex-direction: column;
  }

  .about-commitment-list {
    grid-template-columns: 1fr;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 15px;
  }

  section {
    margin-bottom: 15px;
  }

  .about-intro h2 {
    font-size: 1.8rem;
  }

  .about-founder-quote {
    font-size: 1.2rem;
  }
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-hero {
  position: relative;
  height: 70vh;
  background-image: url("img/app-bg3.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8bfd8;
  text-align: center;
  overflow: hidden;
  flex-direction: column;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(72, 61, 139, 0.7),
    rgba(147, 112, 219, 0.8)
  );
  animation: gradientShift 8s ease-in-out infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.contact-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
  color: #dda0dd;
  transition: transform 0.6s ease, color 0.6s ease;
  animation: fadeInDown 1.5s ease-out;
}
.contact-hero h1:hover {
  transform: scale(1.08) rotate(2deg);
  color: #da70d6;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-hero p {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  margin: 20px 0;
  color: #e6e6fa;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  transition: transform 0.5s ease, opacity 0.5s ease;
  animation: fadeInUp 1.8s ease-out;
}
.contact-hero p:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-hero a.contact-hero-button {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #9932cc, #da70d6);
  color: #f8f8ff;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  animation: pulseButton 2s infinite;
}
.contact-hero a.contact-hero-button:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 20px rgba(153, 50, 204, 0.6);
  background: linear-gradient(135deg, #da70d6, #9932cc);
}
@keyframes pulseButton {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: radial-gradient(
    circle at center,
    rgba(218, 112, 214, 0.4),
    transparent
  );
  animation: wave 10s linear infinite;
}
@keyframes wave {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.contact-map {
  text-align: center;
  background: linear-gradient(to bottom, #191970, #2f4f4f);
  padding: 50px 0;
  border-radius: 12px;
}

.contact-map iframe {
  width: 100%;
  max-width: 900px;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contact-map iframe:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 25px rgba(106, 90, 205, 0.4);
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(to right, #2f4f4f, #483d8b);
}

.contact-fact-item {
  background: #1c2526;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-bottom: 10px;
}

.contact-fact-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 10px 25px rgba(147, 112, 219, 0.5);
}

.contact-fact-item h3 {
  font-size: 2.5rem;
  color: #9370db;
}

.contact-fact-item::before {
  content: "✨";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-fact-item:hover::before {
  opacity: 1;
}

.contact-data {
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(to right, #2f4f4f, #191970);
  border-radius: 12px;
}

.contact-data ul {
  list-style: none;
}

.contact-data li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #d3d3d3;
}

.contact-data a {
  color: #6a5acd;
  text-decoration: none;
  transition: color 0.4s ease, transform 0.4s ease;
}

.contact-data a:hover {
  color: #ba55d3;
  transform: translateX(8px);
}

.contact-data a::after {
  content: "➜";
  margin-left: 5px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-data a:hover::after {
  opacity: 1;
}

.contact-quote {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(to bottom, #1c2526, #2f4f4f);
  border-radius: 12px;
}

.contact-quote blockquote {
  font-size: 2rem;
  font-style: italic;
  color: #ba55d3;
  max-width: 800px;
  margin: 0 auto;
  border-left: 6px solid #6a5acd;
  padding-left: 20px;
  position: relative;
}

.contact-quote blockquote::before {
  content: "“";
  position: absolute;
  left: -25px;
  top: -10px;
  font-size: 3rem;
  color: #9370db;
  opacity: 0.7;
}

.contact-faq {
  padding: 50px 0;
  background: linear-gradient(to bottom, #191970, #483d8b);
}

.contact-faq details {
  margin-bottom: 15px;
  background: #1c2526;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.contact-faq details:hover {
  box-shadow: 0 8px 20px rgba(147, 112, 219, 0.4);
  transform: translateY(-6px);
}

.contact-faq summary {
  padding: 8px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  color: #ba55d3;
}

.contact-faq details[open] summary::after {
  transform: rotate(45deg);
}

.contact-faq p {
  padding: 0 15px 15px;
  color: #d3d3d3;
}

.contact-closing {
  background: linear-gradient(135deg, #6a5acd, #ba55d3);
  color: #e0e0e0;
  text-align: center;
  padding: 70px 0;
  border-radius: 12px;
}

.contact-closing h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.contact-closing p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.contact-closing form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-closing input,
.contact-closing textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  background: #2f4f4f;
  color: #e0e0e0;
}

.contact-closing button {
  background: #6a5acd;
  color: #e0e0e0;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-closing button:hover {
  background: #ba55d3;
  transform: scale(1.12) rotate(3deg);
  box-shadow: 0 8px 20px rgba(186, 85, 211, 0.5);
}

.contact-closing .privacy {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 10px;
}

.contact-closing .privacy label {
  margin-left: 10px;
  color: #d3d3d3;
}

.contact-closing .privacy a {
  color: #b0c4de;
  text-decoration: underline;
  transition: color 0.4s ease;
}

.contact-closing .privacy a:hover {
  color: #ff69b4;
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-facts {
    grid-template-columns: 1fr;
  }

  .contact-quote blockquote {
    font-size: 1.5rem;
  }

  .contact-closing h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 0 15px;
  }

  section {
    margin-bottom: 30px;
  }
}

.thanks-page {
  font-family: "Arial", sans-serif;
  background: linear-gradient(180deg, #483d8b, #6a5acd);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e0e0e0;
  padding: 10px;
}

.thanks-content {
  max-width: 700px;
  background: rgba(25, 25, 112, 0.2);
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  animation: fadeInUp 1.2s ease-out;
}

.thanks-content h1 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  color: #b0c4de;
}

.thanks-content p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  line-height: 1.8;
  color: #d3d3d3;
}

.thanks-home-button {
  background: linear-gradient(90deg, #6a5acd, #9370db);
  color: #e0e0e0;
  padding: 14px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: inline-block;
}

.thanks-home-button:hover {
  transform: scale(1.15) rotate(4deg);
  box-shadow: 0 8px 20px rgba(147, 112, 219, 0.5);
}

.thanks-content::before {
  content: "🌌";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.5rem;
  animation: bounce 2.2s infinite;
}

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

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -15px);
  }
}

@media (max-width: 480px) {
  .thanks-content h1 {
    font-size: 2rem;
  }

  .thanks-content p {
    font-size: 1.1rem;
  }

  .thanks-content {
    padding: 10px;
  }
}

.privacy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.privacy-header {
  margin-top: 50px;
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(135deg, #ff69b4, #c71585);
  color: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.privacy-header h1 {
  font-size: 2.8rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  position: relative;
}

.privacy-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #ff8c00, #ff4500);
  border-radius: 3px;
}

.privacy-section {
  margin-bottom: 15px;
}

.privacy-section h2 {
  font-size: 1.8rem;
  color: #ff1493;
  margin-bottom: 15px;
  position: relative;
}

.privacy-section h2::before {
  content: "🔒";
  margin-right: 10px;
  font-size: 1.5rem;
}

.privacy-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}

.privacy-section ul {
  list-style: none;
  padding-left: 20px;
}

.privacy-section li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 30px;
}

.privacy-section li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #ff4500;
  font-size: 1.2rem;
}

.privacy-section a {
  color: #c71585;
  text-decoration: none;
  transition: color 0.4s ease;
}

.privacy-section a:hover {
  color: #ff69b4;
  text-decoration: underline;
}

.privacy-section p strong {
  color: #2a2a2a;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .privacy-container {
    padding: 20px 15px;
  }

  .privacy-header h1 {
    font-size: 2.2rem;
  }

  .privacy-section h2 {
    font-size: 1.5rem;
  }

  .privacy-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .privacy-header {
    padding: 30px 0;
  }

  .privacy-header h1 {
    font-size: 1.8rem;
  }
}

.terms-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.terms-header {
  margin-top: 50px;
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(135deg, #ff69b4, #c71585);
  color: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.terms-header h1 {
  font-size: 2.8rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  position: relative;
}

.terms-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #ff8c00, #ff4500);
  border-radius: 3px;
}

.terms-section {
  margin-bottom: 15px;
}

.terms-section h2 {
  font-size: 1.8rem;
  color: #ff1493;
  margin-bottom: 15px;
  position: relative;
}

.terms-section h2::before {
  content: "📜";
  margin-right: 10px;
  font-size: 1.5rem;
}

.terms-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}

.terms-section ul {
  list-style: none;
  padding-left: 20px;
}

.terms-section li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 30px;
}

.terms-section li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #ff4500;
  font-size: 1.2rem;
}

.terms-section a {
  color: #c71585;
  text-decoration: none;
  transition: color 0.4s ease;
}

.terms-section a:hover {
  color: #ff69b4;
  text-decoration: underline;
}

.terms-section p strong {
  color: #2a2a2a;
}

.terms-section:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .terms-container {
    padding: 20px 15px;
  }

  .terms-header h1 {
    font-size: 2.2rem;
  }

  .terms-section h2 {
    font-size: 1.5rem;
  }

  .terms-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .terms-header {
    padding: 30px 0;
  }

  .terms-header h1 {
    font-size: 1.8rem;
  }
}

.index-commitment-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin-top: 25px;
}

.index-commitment-item {
  flex: 1;
  min-width: 220px;
  padding: 10px;
  background: rgba(255, 245, 238, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
  position: relative;
}

.index-commitment-item:hover {
  transform: scale(1.08) rotate(3deg);
  background: rgba(255, 182, 193, 0.5);
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4);
}

.index-commitment-item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: radial-gradient(circle, rgba(255, 182, 193, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  border-radius: 15px;
}

.index-commitment-item:hover::before {
  opacity: 1;
}

.index-commitment-item::after {
  content: "🌟";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.index-commitment-item:hover::after {
  opacity: 1;
  transform: rotate(20deg);
}

.index-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 45px;
  text-align: center;
  background: linear-gradient(to bottom, #fff0f5, #ffe4e1);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.index-why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,105,180,0.1)"/></svg>')
    repeat;
  opacity: 0.6;
}

.index-why-item {
  padding: 10px;
  background: #fff;
  border: 1px solid #ffb6c1;
  border-radius: 15px;
  transition: box-shadow 0.5s ease, transform 0.5s ease;
  position: relative;
}

.index-why-item:hover {
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
  transform: translateY(-10px) rotate(2deg);
}

.index-why-item::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: radial-gradient(circle, #ff69b4, #ff1493);
  border-radius: 50%;
  transition: background 0.5s ease, transform 0.5s ease;
}

.index-why-item:hover::before {
  background: radial-gradient(circle, #ff4500, #ff8c00);
  transform: rotate(360deg);
}

.index-why-item h3 {
  position: relative;
  z-index: 1;
  color: #c71585;
}

.index-testimonials {
  background: linear-gradient(to bottom, #ffe4e1, #fff0f5);
  padding: 70px 0;
  position: relative;
}

.index-testimonials::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff69b4, #ff4500);
}

.index-testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
}

.index-testimonial-card {
  background: #fff;
  padding: 10px;
  border-radius: 18px;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(255, 105, 180, 0.2);
  animation: fadeInLeft 1.2s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
}

.index-testimonial-card:hover {
  transform: translateY(-12px) rotate(2deg);
  box-shadow: 0 12px 30px rgba(255, 105, 180, 0.4);
}

.index-testimonial-card::before {
  content: "";
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  background: conic-gradient(#ff69b4, #ffb6c1, #ff69b4);
  border-radius: 50%;
  animation: spin 2.2s linear infinite;
  opacity: 0.9;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.index-testimonial-card p {
  margin-bottom: 15px;
  color: #fff;
}

.index-testimonial-stars {
  color: #ff8c00;
  margin-bottom: 15px;
  font-size: 1.2rem;
  animation: twinkle 1.8s infinite alternate;
}

@keyframes twinkle {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.index-testimonial-card h4 {
  font-style: italic;
  color: #c71585;
}

.index-spotlight {
  text-align: center;
  background: linear-gradient(to bottom, #fff0f5, #ffe4e1);
  padding: 60px 0;
  border-top: 4px solid #ff69b4;
  border-bottom: 4px solid #ff4500;
  position: relative;
}

.index-spotlight::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #ff1493, transparent);
  opacity: 0.5;
  border-radius: 50%;
  animation: pulseSpot 2.2s infinite;
}

@keyframes pulseSpot {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

.index-spotlight-image {
  max-width: 900px;
  margin: 25px auto;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 150px;
  background: linear-gradient(135deg, #ff69b4, #ffb6c1);
}

.index-spotlight-image::after {
  content: "Taj Mystery";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  background: rgba(199, 21, 133, 0.5);
  border-radius: 20px;
  transition: transform 0.5s ease, background 0.5s ease;
}

.index-spotlight-image:hover::after {
  transform: translateX(-50%) scale(1.15);
  background: rgba(199, 21, 133, 0.7);
}

.index-spotlight-quote {
  font-style: italic;
  font-size: 1.5rem;
  margin-top: 25px;
  padding: 0 50px;
  color: #c71585;
  border-left: 6px solid #ff4500;
  position: relative;
}

.index-spotlight-quote::before {
  content: "“";
  position: absolute;
  left: -20px;
  top: -10px;
  font-size: 3rem;
  color: #ff69b4;
  opacity: 0.8;
}

.index-spotlight-quote::after {
  content: "”";
  position: absolute;
  right: -20px;
  bottom: -10px;
  font-size: 3rem;
  color: #ff69b4;
  opacity: 0.8;
}

#privacy {
  width: 20px;
}

#carousel {
  overflow: auto;
  display: flex;
  transition: transform 0.5s ease;
}

.service-carousel-item {
  flex: 0 0 auto;
  width: 33.33%;
}

.about-why-progress-fill {
  transition: width 1.5s ease-in-out;
}

p {
  color: #fff;
}
