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: #f0f0f0;
  color: #333;
  line-height: 1.6;
}

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

.header {
  background: linear-gradient(135deg, #ff4500 0%, #228b22 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(255, 140, 0, 0.3);
  backdrop-filter: blur(12px);
}

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

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

.logo a::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.logo a:hover::before {
  opacity: 1;
}

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

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

.nav-menu a {
  color: #f0f8ff;
  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, #ff69b4, #20b2aa);
  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(32, 178, 170, 0.7);
}

.nav-menu a:hover {
  color: #ff69b4;
  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: #ff4500;
  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(255, 105, 180, 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, #ff4500, #228b22);
    flex-direction: column;
    padding: 12px;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
  }

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

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

  .burger {
    display: flex;
  }
}

.index-footer {
  background: linear-gradient(180deg, #556b2f 0%, #8b4513 100%);
  color: #fafad2;
  padding: 3.5rem 1.2rem;
  border-top: 4px solid #20b2aa;
  position: relative;
  overflow: hidden;
}

.index-footer::before {
  content: "";
  display: block;
  height: 5px;
  width: 60px;
  background: linear-gradient(90deg, #ff69b4, #20b2aa);
  margin: 0 auto 1.2rem auto;
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(32, 178, 170, 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: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 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, #20b2aa, 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: #fafad2;
  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: #20b2aa;
  text-shadow: 0 0 10px rgba(32, 178, 170, 0.8);
  transform: translateX(6px) scale(1.02);
}

.index-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.2rem;
  margin-bottom: 2.2rem;
}

.index-footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #eee8aa;
  font-style: italic;
  text-shadow: 0 0 8px rgba(32, 178, 170, 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, #ff69b4, #20b2aa, #ffd700);
  opacity: 0.8;
  box-shadow: 0 0 10px rgba(32, 178, 170, 0.6);
  animation: gradientFlow 5s linear infinite;
}

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

/* Header styles */
.index-header {
  background: linear-gradient(135deg, #ff9933, #138808);
  color: white;
  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: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Main sections */
main {
  padding: 40px 0;
}

section {
  margin-bottom: 15px;
}

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

/* Hero section */
.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: white;
  position: relative;
}

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

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

.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: #000080;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.index-hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

/* Intro section */
.index-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: linear-gradient(to right, #ffffff, #f0f0f0);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.index-intro-text {
  flex: 1;
  min-width: 300px;
}

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

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

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

.index-intro-icons {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  @media (max-width: 425px) {
    flex-direction: column;
  }
}

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

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

/* Featured section */
.index-featured {
  background: #000080;
  color: white;
  padding: 60px 0;
}

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

.index-featured-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease;
  animation: slideUp 0.8s ease;
}

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

.index-featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

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

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

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

/* Story section */
.index-story {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.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: #138808;
}

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

/* Why Choose Us section */
.index-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  background: linear-gradient(to bottom, #f0f0f0, #ffffff);
  padding: 40px 0;
}

.index-why-item {
  padding: 10px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
  margin-bottom: 5px;
}

.index-why-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.index-why-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

/* Seasonal Picks section */
.index-seasonal {
  background: linear-gradient(135deg, #ff9933, #138808);
  color: white;
  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.2);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.index-seasonal-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.index-seasonal-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

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

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

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

/* Spotlight section */
.index-spotlight {
  text-align: center;
  background: #f0f0f0;
  padding: 50px 0;
  border-top: 3px solid #138808;
  border-bottom: 3px solid #ff9933;
}

.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;
}

.index-spotlight-image img:hover {
  transform: scale(1.05);
}

.index-spotlight-quote {
  font-style: italic;
  font-size: 1.4rem;
  margin-top: 20px;
  padding: 0 40px;
  color: #000080;
  border-left: 5px solid #ff9933;
}

/* Testimonials section */
.index-testimonials {
  background: #ffffff;
  padding: 60px 0;
}

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

.index-testimonial-card {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 15px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  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;
}

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

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

/* Process section */
.index-process {
  background: linear-gradient(to bottom, #ffffff, #e0e0e0);
  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: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.index-process-step::before {
  content: attr(data-number);
  display: block;
  width: 40px;
  height: 40px;
  background: #000080;
  color: white;
  border-radius: 50%;
  line-height: 40px;
  margin: 0 auto 10px;
  font-weight: bold;
}

/* Impact section */
.index-impact {
  text-align: center;
  padding: 50px 0;
  background: #138808;
  color: white;
}

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

.index-impact-stat {
  background: rgba(255, 255, 255, 0.2);
  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;
}

/* Subscription section */
.index-subscription {
  background: #ff9933;
  color: #333;
  padding: 60px 0;
  text-align: center;
}

.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: white;
  padding: 10px;
  border-radius: 15px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

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

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

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

/* Guides section (adapted from Recipes) */
.index-guides {
  padding: 60px 0;
  background: #f0f0f0;
}

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

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

.index-guide-card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.index-guide-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.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: #000080;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
  transition: color 0.3s ease;
}

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

/* Commitment section */
.index-commitment {
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(to right, #138808, #ff9933);
  color: white;
}

.index-commitment img {
  width: 100%;
}

.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(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* Partners section */
.index-partners {
  padding: 60px 0;
  background: #ffffff;
}

.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;
}

.index-partner-logo:hover {
  transform: scale(1.1);
}

/* Additional News section */
.index-news {
  background: #000080;
  color: white;
  padding: 60px 0;
}

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

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

.index-news-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Additional Community section */
.index-community {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  padding: 10px;
  background: #f0f0f0;
  border-radius: 10px;
}

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

.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;
}

.index-community-gallery img:hover {
  opacity: 0.8;
}

/* CTA section */
.index-cta {
  background: #000080;
  color: white;
  text-align: center;
  padding: 60px 0;
  border-radius: 10px;
}

.index-cta-button {
  background: #ff9933;
  color: #333;
  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: #138808;
  transform: scale(1.1);
}

/* Footer styles */
.index-footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* Responsive media queries */
@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;
}

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

.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;
}

.service-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  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, #ff4500, #ffd700);
  color: #282828;
  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);
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.5);
}

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

/* Featured grid */
.service-featured {
  background: #ffefd5;
  padding: 70px 0;
}

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

.service-featured-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
  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(255, 140, 0, 0.3);
}

.service-featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #228b22, #ff4500);
  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;
}

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

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

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

/* Impact counters */
.service-impact {
  background: linear-gradient(135deg, #228b22, #556b2f);
  color: #fff;
  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);
  }
}

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

.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);
}

/* Process timeline */
.service-process {
  padding: 70px 0;
}

.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: #ff4500;
  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: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

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

.service-process-step-number {
  width: 50px;
  height: 50px;
  background: #228b22;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 20px;
  z-index: 1;
}

/* Seasonal offer */
.service-seasonal {
  background: linear-gradient(135deg, #ffd700, #ff4500);
  color: #282828;
  padding: 60px 0;
  text-align: center;
  border-radius: 15px;
}

.service-seasonal-button {
  background: #228b22;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 35px;
  transition: background 0.4s ease;
}

.service-seasonal-button:hover {
  background: #556b2f;
}

/* Testimonials carousel */
.service-testimonials {
  overflow: hidden;
  padding: 70px 0;
  background: #f0e68c;
}

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

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

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

/* Visual story */
.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);
}

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

.service-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  text-align: center;
  background: linear-gradient(to bottom, #f0e6ff, #ffffff);
  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(147, 112, 219, 0.2),
    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: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(147, 112, 219, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  margin-bottom: 10px;
}

.service-why-item:hover {
  background: #e6e6fa;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 8px 25px rgba(147, 112, 219, 0.3);
}

.service-why-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background: radial-gradient(circle, rgba(255, 105, 180, 0.15), 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(#ff69b4, #9370db, #ff69b4);
  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: #fff;
  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: #fff;
  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: #fff;
  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: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* CTA section */
.service-cta {
  background: linear-gradient(135deg, #228b22, #ff4500);
  color: #fff;
  text-align: center;
  padding: 70px 0;
  border-radius: 15px;
}

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

.service-cta-button:hover {
  background: #8b4513;
  transform: rotate(3deg);
}

/* Responsive media queries */
@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;
}

/* Story timeline */
.about-story {
  padding: 60px 0;
}

.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, #ff6347, #228b22);
  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: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

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

.about-story-event-marker {
  width: 50px;
  height: 50px;
  background: #ffd700;
  color: #2c2c2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 25px;
  z-index: 1;
}

.about-founder {
  background: linear-gradient(to bottom, #f0e68c, #fffacd);
  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(255, 215, 0, 0.2),
    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: #8b008b;
  border-left: 6px solid #ff8c00;
  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: #ff8c00;
  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(#ff8c00, #ffd700, #ff8c00);
  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: #fff;
  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(255, 140, 0, 0.4);
}

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

.about-commitment::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 5px;
  background: linear-gradient(90deg, #ff8c00, #8b008b);
  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: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(139, 0, 139, 0.1);
  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: #fff0f5;
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(255, 140, 0, 0.2);
}

.about-commitment-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background: radial-gradient(circle, rgba(255, 140, 0, 0.15), 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(#ff8c00, #ffd700, #8b008b);
  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: #fff;
}

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

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

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

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

/* Impact map */
.about-impact {
  text-align: center;
  padding: 60px 0;
}

.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(255, 99, 71, 0.2),
    rgba(34, 139, 34, 0.2)
  );
  pointer-events: none;
}

/* Team grid */
.about-team {
  background: #fffacd;
  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: #fff;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: transform 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, #f0f8ff, #e6e6fa);
  position: relative;
  overflow: hidden;
}

.about-why::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(186, 85, 211, 0.2), transparent);
  z-index: 0;
}

.about-why::after {
  content: "🌟";
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 3rem;
  opacity: 0.4;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}

.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: #4b0082;
  position: relative;
}

.about-why-item h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #ff69b4;
  transition: width 0.4s ease;
}

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

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

.about-why-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff69b4, #9370db);
  transition: width 1.8s 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: 20px;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3));
  animation: shimmer 2s infinite;
}

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

/* Partners wall */
.about-partners {
  background: #ffe4c4;
  padding: 60px 0;
}

.about-partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  justify-items: center;
  @media (max-width: 768px) {
    grid-template-columns: 1fr 1fr;
  }
  @media (max-width: 425px) {
    grid-template-columns: 1fr;
  }
}

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

.about-partner-logo:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}

/* Spotlight gallery */
.about-gallery {
  padding: 60px 0;
}

.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: 10px;
}

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

.about-gallery-item:hover img {
  transform: scale(1.1);
}

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

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

/* CTA banner */
.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(0, 0, 0, 0.5);
  z-index: 0;
}

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

.about-cta-button {
  background: linear-gradient(135deg, #228b22, #ffd700);
  color: #2c2c2c;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
}

/* Responsive media queries */
@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;
}

/* Hero image */
.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: #fff;
  text-align: center;
}

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

.contact-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

/* Map section */
.contact-map {
  text-align: center;
  background: #f0f8ff;
  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.1);
  transition: transform 0.4s ease;
}

.contact-map iframe:hover {
  transform: scale(1.02);
}

/* Quick facts */
.contact-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
  padding: 50px 0;
}

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

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

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

/* Contact data */
.contact-data {
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(to right, #f5f5f5, #e0e0e0);
  border-radius: 12px;
}

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

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

.contact-data a {
  color: #006400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-data a:hover {
  color: #ff4500;
}

/* Spotlight quote */
.contact-quote {
  text-align: center;
  padding: 60px 0;
  background: #fffaf0;
  border-radius: 12px;
}

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

/* FAQ accordion */
.contact-faq {
  padding: 50px 0;
}

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

.contact-faq details:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

/* Closing banner */
.contact-closing {
  background: linear-gradient(135deg, #006400, #ff4500);
  color: #fff;
  text-align: center;
  padding: 70px 0;
  border-radius: 12px;
}

.contact-closing h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.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;
  color: #000;
}

.contact-closing button {
  background: #fff;
  color: #006400;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-closing button:hover {
  background: #ff4500;
  color: #fff;
}

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

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

.contact-closing .privacy a {
  color: #fff;
  text-decoration: underline;
}

/* Responsive media queries */
@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, #1e90ff, #00b7eb);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 10px;
}

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

.thanks-content h1 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

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

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

.thanks-home-button:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 99, 71, 0.5);
}

.thanks-content::before {
  content: "🎮";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  animation: bounce 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%, -10px);
  }
}

@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, #87ceeb, #4682b4);
  color: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.privacy-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff6347, #ffd700);
  border-radius: 2px;
}

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

.privacy-section h2 {
  font-size: 1.8rem;
  color: #4682b4;
  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: #333;
}

.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: #ff6347;
  font-size: 1.2rem;
}

.privacy-section a {
  color: #4682b4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-section a:hover {
  color: #ff6347;
  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, #87ceeb, #4682b4);
  color: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.terms-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff6347, #ffd700);
  border-radius: 2px;
}

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

.terms-section h2 {
  font-size: 1.8rem;
  color: #4682b4;
  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: #333;
}

.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: #ff6347;
  font-size: 1.2rem;
}

.terms-section a {
  color: #4682b4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-section a:hover {
  color: #ff6347;
  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(240, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.index-commitment-item:hover {
  transform: scale(1.05) rotate(2deg);
  background: rgba(173, 216, 230, 0.5);
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.3);
}

.index-commitment-item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: radial-gradient(circle, rgba(135, 206, 235, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s 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.5rem;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

/* Why Choose Us section */
.index-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 45px;
  text-align: center;
  background: linear-gradient(to bottom, #e0ffff, #ffffff);
  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(0,191,255,0.05)"/></svg>')
    repeat;
  opacity: 0.5;
}

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

.index-why-item:hover {
  box-shadow: 0 6px 18px rgba(0, 191, 255, 0.25);
  transform: translateY(-8px);
}

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

.index-why-item:hover::before {
  background: radial-gradient(circle, #ff6347, #ff4500);
}

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

/* Testimonials section */
.index-testimonials {
  background: #e6f7ff;
  padding: 70px 0;
  position: relative;
}

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

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

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

.index-testimonial-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
}

.index-testimonial-card::before {
  content: "";
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  background: conic-gradient(#00bfff, #87cefa, #00bfff);
  border-radius: 50%;
  animation: spin 2s linear infinite;
  opacity: 0.8;
}

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

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

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

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

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

/* Spotlight section */
.index-spotlight {
  text-align: center;
  background: #e0ffff;
  padding: 60px 0;
  border-top: 4px solid #00bfff;
  border-bottom: 4px solid #ff4500;
  position: relative;
}

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

@keyframes pulseSpot {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}

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

.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 3px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.index-spotlight-image:hover::after {
  transform: translateX(-50%) scale(1.1);
}

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

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

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

#privacy {
  width: 20px;
}

#carousel {
  overflow: auto;
  display: flex;
  transition: transform 0.5s ease;
}
.service-carousel-item {
  flex: 0 0 auto;
  width: 33.33%; /* Adjust based on number of visible slides */
}

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