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: 0.67em 0;
  font-size: 2em;
}

h2 {
  margin-top: 10px;
}

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: #004d40;
  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;
}

.text-uppercase {
  text-transform: uppercase;
}

* {
  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;
}

:root {
  --peacock-blue: #001a33;
  --mango-yellow: #cc9900;
  --henna-red: #7a1f1f;
  --sandalwood-beige: #c8b08a;
  --lotus-pink: #cc8899;
  --emerald-green: #3a8c5a;
  --saffron-orange: #cc6600;
  --indigo-depth: #330055;
  --turmeric-gold: #b37a00;
  --banyan-brown: #44250f;
}

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

.header-container {
  background-color: var(--peacock-blue);
  padding: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.5s ease;
}

.header-container:hover {
  background-color: #000833; /* Darkened --peacock-blue by ~10% */
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 60px;
  height: auto;
  margin-right: 10px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.header-logo a {
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: var(--mango-yellow);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease, transform 0.3s ease;
}

.header-logo a:hover {
  color: var(--turmeric-gold);
  transform: rotate(5deg);
}

.header-nav {
  display: flex;
  align-items: center;
}

.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.header-nav a {
  text-decoration: none;
  color: var(--sandalwood-beige);
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--saffron-orange);
  transition: width 0.3s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-nav a:hover {
  color: var(--saffron-orange);
  transform: scale(1.1) translateY(-2px);
}

.header-toggler {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.header-toggler span {
  background-color: var(--mango-yellow);
  height: 3px;
  width: 100%;
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--peacock-blue);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  }

  .header-nav.active {
    display: block;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .header-nav a {
    font-size: 20px;
  }

  .header-toggler {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header-logo img {
    width: 40px;
  }

  .header-logo a {
    font-size: 20px;
  }

  .header-nav a {
    font-size: 18px;
  }
}

.index-footer {
  background: linear-gradient(
    to top,
    var(--indigo-depth),
    #fff /* Darkened --emerald-green by ~20% */
  );
  color: var(--sandalwood-beige);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.index-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top left,
    rgba(204, 102, 0, 0.4),
    transparent
  );
  animation: pulseGlow 5s infinite ease-in-out alternate;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.5;
    transform: scale(1) rotate(2deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2) rotate(-2deg);
  }
  100% {
    opacity: 0.5;
    transform: scale(1) rotate(2deg);
  }
}

.index-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.index-footer-section {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    background 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
  border: 1px solid transparent;
}

.index-footer-section:hover {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--lotus-pink);
  transform: scale(1.05);
}

.index-footer-section h3 {
  font-size: 1.5rem;
  color: #eee;
  margin-bottom: 1.5rem;
  position: relative;
  animation: textGlow 1.5s infinite alternate ease-in-out;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 8px var(--saffron-orange);
  }
  100% {
    text-shadow: 0 0 20px var(--saffron-orange);
  }
}

.index-footer-nav {
  list-style: none;
  padding: 0;
}

.index-footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 0.75rem;
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease, transform 0.3s ease;
}

.index-footer-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--henna-red);
  transition: width 0.3s ease;
}

.index-footer-link::before {
  content: "•";
  position: absolute;
  left: -15px;
  color: var(--emerald-green);
  opacity: 0;
  transition: opacity 0.3s ease, left 0.3s ease;
}

.index-footer-link:hover::before {
  opacity: 1;
  left: -10px;
}

.index-footer-link:hover {
  color: var(--mango-yellow);
  padding-left: 0.5rem;
  transform: skewX(-10deg) scale(1.1);
}

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

.index-footer-contacts {
  list-style: none;
  padding: 0;
}

.index-footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--sandalwood-beige);
  transition: color 0.3s ease, transform 0.3s ease;
}

.index-footer-contact-item:hover {
  color: var(--lotus-pink);
  transform: translateX(8px) scale(1.05);
}

.index-footer-contact-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: var(--turmeric-gold);
  animation: bounceIcon 1s infinite ease-in-out alternate;
}

@keyframes bounceIcon {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.15);
  }
}

.index-footer-policies {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 1.5rem 0;
  margin: 2rem 0 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.4);
}

.index-footer-policies li {
  position: relative;
}

.index-footer-policies .index-footer-link {
  font-size: 1rem;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.index-footer-policies .index-footer-link:hover {
  color: var(--emerald-green);
  transform: scale(1.2) rotate(10deg);
}

.index-footer-copyright {
  text-align: center;
  font-size: 0.95rem;
  color: var(--sandalwood-beige);
  padding: 1rem 0;
  position: relative;
  animation: fadeInUp 1s ease-out forwards;
}

.index-footer-copyright::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 120px;
  height: 2px;
  background: var(--mango-yellow);
  transform: translateX(-50%);
  animation: shimmerLine 2s infinite linear alternate;
}

@keyframes shimmerLine {
  0% {
    background: linear-gradient(
      to right,
      transparent,
      var(--mango-yellow),
      transparent
    );
  }
  100% {
    background: linear-gradient(
      to right,
      var(--mango-yellow),
      transparent,
      var(--mango-yellow)
    );
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px) skewY(3deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

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

  .index-footer-section {
    text-align: center;
  }

  .index-footer-contact-item {
    justify-content: center;
  }

  .index-footer-policies {
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }
}

.index-h1 {
  text-align: center;
  font-size: 48px;
  color: #fff; /* Darkened #228b22 by ~20% */
  padding: 40px 0;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(34, 139, 34, 0.5);
  animation: textPulse 2s infinite alternate;
  background-color: #000833;
}

@keyframes textPulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}

.index-hero-banner {
  position: relative;
  height: 600px;
  background-image: url("img/bg-rol1.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.index-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(204, 153, 0, 0.4),
    rgba(165, 15, 45, 0.6)
  );
  opacity: 0.8;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.index-hero-banner:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

.index-hero-content {
  text-align: center;
  color: #ddd;
  z-index: 1;
}

.index-hero-title {
  font-size: 60px;
  animation: index-fade-in 2s ease-out infinite alternate,
    colorShift 3s infinite alternate;
}

@keyframes colorShift {
  0% {
    color: #ddd;
  }
  100% {
    color: #bbb;
  }
}

.index-hero-subtitle {
  font-size: 24px;
  animation: index-slide-up 2s ease-out infinite alternate;
}

.index-hero-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background-color: #2d4b9e; /* Darkened #4169e1 by ~20% */
  color: #ddd;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    box-shadow 0.4s ease, background-color 0.4s ease;
}

.index-hero-cta:hover {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 8px 25px rgba(65, 105, 225, 0.7);
  background-color: #7a288a; /* Darkened #9932cc by ~20% */
}

@keyframes index-fade-in {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes index-slide-up {
  from {
    transform: translateY(40px);
    opacity: 0.4;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.index-quick-actions {
  background-color: #ccc7a4; /* Darkened #fffacd by ~20% */
  padding: 60px 0;
  text-align: center;
}

.index-quick-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .index-quick-actions-grid {
    grid-template-columns: 1fr;
  }
}

.index-action-item {
  padding: 20px;
  border: 2px dashed #cc3700; /* Darkened #ff4500 by ~20% */
  border-radius: 20px;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease,
    background 0.4s ease;
  background: linear-gradient(
    to bottom,
    #047e7e,
    #ccc7a4
  ); /* Darkened #ffd700 and #fffacd by ~20% */
}

.index-action-item:hover {
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.5);
  border-color: #b01030; /* Darkened #dc143c by ~20% */
  transform: translateY(-8px) rotate(3deg);
}

.index-action-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  filter: drop-shadow(3px 3px 6px rgba(34, 139, 34, 0.4));
  transition: filter 0.3s ease;
}

.index-action-item:hover .index-action-icon {
  filter: drop-shadow(5px 5px 10px rgba(34, 139, 34, 0.6)) brightness(1.1);
}

.index-action-title {
  font-size: 20px;
  color: #2d4b9e; /* Darkened #4169e1 by ~20% */
}

.index-action-desc {
  font-size: 16px;
  color: #7a288a; /* Darkened #9932cc by ~20% */
}

.index-project-gallery {
  padding: 60px 0;
  background-color: #b9b8c8; /* Darkened #e6e6fa by ~20% */
}

.index-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
}

.index-gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.index-gallery-img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(153, 50, 204, 0.4);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.5s ease, box-shadow 0.5s ease;
}

.index-gallery-img:hover {
  transform: scale(1.08) rotate(-3deg);
  filter: brightness(1.2) contrast(1.1);
  box-shadow: 0 6px 20px rgba(153, 50, 204, 0.6);
}

.index-live-stats {
  background-color: #000833; /* Darkened #228b22 by ~20% */
  color: #047e7e; /* Darkened #ffd700 by ~20% */
  padding: 60px 0;
  text-align: center;
}

.index-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

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

.index-stat-item {
  padding: 20px;
  background: radial-gradient(
    circle,
    #047e7e,
    #fff
  ); /* Darkened #ffd700 and #228b22 by ~20% */
  border-radius: 15px;
  transition: transform 0.3s ease;
}

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

.index-stat-number {
  color: #006786;
  font-size: 48px;
  font-weight: bold;
}

.index-stat-bar {
  background-color: #ccc7a4; /* Darkened #fffacd by ~20% */
  height: 10px;
  border-radius: 5px;
  margin: 10px 0;
  overflow: hidden;
}

.index-stat-progress {
  width: 0%;
  height: 100%;
  background-color: #b01030; /* Darkened #dc143c by ~20% */
  transition: width 2s ease-in-out;
}

.index-stat-desc {
  font-size: 18px;
  color: #004d64;
}

.index-quote-day {
  background-color: #cc3700; /* Darkened #ff4500 by ~20% */
  color: #ccc7a4; /* Darkened #fffacd by ~20% */
  padding: 40px 0;
  text-align: center;
  font-style: italic;
  font-size: 24px;
  box-shadow: inset 0 0 25px rgba(255, 215, 0, 0.6);
  animation: quoteGlow 3s infinite alternate;
}

@keyframes quoteGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.6);
  }
  100% {
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  }
}

.index-community {
  padding: 60px 0;
  background-color: #ccc7a4; /* Darkened #fffacd by ~20% */
  text-align: center;
}

.index-community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  @media (max-width: 768px) {
    grid-template-columns: 1fr 1fr;
  }
  @media (max-width: 550px) {
    grid-template-columns: 1fr;
  }
}

.index-community-item {
  padding: 10px;
  border-radius: 50%;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  background: radial-gradient(
    circle,
    #047e7e,
    #cc3700
  ); /* Darkened #ffd700 and #ff4500 by ~20% */
}

.index-community-item:hover {
  box-shadow: 0 10px 30px rgba(153, 50, 204, 0.5);
  transform: rotate(20deg) scale(1.1);
}

.index-community-avatar {
  width: 100%;
  height: 250px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid #2d4b9e; /* Darkened #4169e1 by ~20% */
  transition: border-color 0.3s ease;
}

.index-community-item:hover .index-community-avatar {
  border-color: var(--emerald-green);
}

.index-community-name {
  font-size: 16px;
  color: #fff; /* Darkened #228b22 by ~20% */
}

.index-seasonal-offers {
  padding: 60px 0;
  background-color: #b9b8c8; /* Darkened #e6e6fa by ~20% */
  overflow: hidden;
}

.index-carousel {
  display: flex;
  animation: index-scroll 20s linear infinite alternate;
}

.index-carousel-item {
  min-width: 300px;
  margin-right: 20px;
  padding: 20px;
  background-color: #ccc7a4; /* Darkened #fffacd by ~20% */
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.index-carousel-item:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

.index-carousel-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
  filter: sepia(0.4) contrast(1.1);
  transition: filter 0.4s ease;
}

.index-carousel-item:hover .index-carousel-img {
  filter: sepia(0) contrast(1.2);
}

.index-carousel-title {
  font-size: 18px;
  color: #cc3700; /* Darkened #ff4500 by ~20% */
}

.index-carousel-desc {
  font-size: 14px;
  color: #3c0066; /* Darkened #4b0082 by ~20% */
}

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

.index-final-accent {
  background-color: #2d4b9e; /* Darkened #4169e1 by ~20% */
  color: #047e7e; /* Darkened #ffd700 by ~20% */
  padding: 80px 0;
  text-align: center;
}

.index-final-text {
  font-size: 32px;
  max-width: 800px;
  margin: 0 auto 20px;
  animation: index-text-glow 1.5s ease-in-out infinite;
}

@keyframes index-text-glow {
  0% {
    text-shadow: 0 0 6px #047e7e; /* Darkened #ffd700 by ~20% */
  }
  50% {
    text-shadow: 0 0 18px #cc3700; /* Darkened #ff4500 by ~20% */
  }
  100% {
    text-shadow: 0 0 6px #047e7e; /* Darkened #ffd700 by ~20% */
  }
}

.index-final-visual {
  width: 300px;
  height: auto;
  border-radius: 30px;
  border: 5px solid #b01030; /* Darkened #dc143c by ~20% */
  transition: transform 0.3s ease;
}

.index-final-accent:hover .index-final-visual {
  transform: rotate(5deg);
}

.index-footer {
  background-color: #000833; /* Darkened #228b22 by ~20% */
  color: #ccc7a4; /* Darkened #fffacd by ~20% */
  padding: 40px 0;
  text-align: center;
}

.index-footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.index-footer-link {
  color: #fff; /* Darkened #ffd700 by ~20% */
  text-decoration: none;
  transition: color 0.4s ease, transform 0.4s ease;
}

.index-footer-link:hover {
  color: #b01030; /* Darkened #dc143c by ~20% */
  transform: scale(1.3) rotate(10deg);
}

.index-footer-copyright {
  font-size: 14px;
}

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

  .index-hero-title {
    font-size: 26px;
  }

  .index-hero-subtitle {
    font-size: 18px;
  }

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

  .index-gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .index-timeline::before {
    left: 25px;
  }

  .index-timeline-item {
    align-items: flex-start;
  }

  .index-timeline-icon {
    left: 25px;
    transform: none;
  }

  .index-timeline-content {
    width: 100%;
    margin-top: 20px;
    margin-left: 30px;
  }

  .index-influence-grid {
    flex-direction: column;
    align-items: center;
  }

  .index-carousel-item {
    min-width: 100%;
  }
}

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

  .index-nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .index-hero-banner {
    height: 400px;
  }
}

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

.service-h1 {
  text-align: center;
  font-size: 48px;
  color: #fff; /* Darkened --emerald-green by ~20% */
  padding: 40px 0;
  margin: 0;
  background-color: #000833;
  text-shadow: 2px 2px 5px rgba(80, 200, 120, 0.4);
  animation: service-text-pulse 1.5s infinite alternate;
}

@keyframes service-text-pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}

.service-hero {
  background-color: #2a0044; /* Darkened --indigo-depth by ~10% */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(204, 153, 166, 0.3), transparent);
  animation: service-hero-glow 4s infinite ease-in-out;
}

@keyframes service-hero-glow {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.4;
  }
}

.service-hero-title {
  font-size: 26px;
  color: #a38e6e; /* Darkened --sandalwood-beige by ~10% */
  margin-bottom: 30px;
}

.service-hero-cta {
  position: relative;
  z-index: 99;
  display: inline-block;
  padding: 15px 40px;
  background-color: #0799d3; /* Darkened --saffron-orange by ~20% */
  color: #fff; /* Darkened --peacock-blue by ~10% */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    box-shadow 0.4s ease;
}

.service-hero-cta:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255, 153, 51, 0.6);
}

.service-case-studies {
  padding: 60px 0;
  background-color: #002741; /* Darkened --mango-yellow by ~20% */
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.service-tab {
  padding: 10px 20px;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
  color: #621818; /* Darkened --henna-red by ~20% */
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-tab.active,
.service-tab:hover {
  background-color: #0799d3; /* Darkened --saffron-orange by ~20% */
  color: #fff; /* Darkened --peacock-blue by ~10% */
  transform: scale(1.15) translateY(-3px);
}

.service-tab-content {
  text-align: center;
  display: none;
  padding: 20px;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-tab-content.active {
  display: block;
  animation: service-tab-fade 0.4s ease;
}

@keyframes service-tab-fade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-tab-img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.service-tab-content.active .service-tab-img {
  transform: scale(1.05);
}

.service-comparison {
  padding: 60px 0;
  background-color: #000833; /* Darkened --peacock-blue by ~10% */
  color: #a38e6e; /* Darkened --sandalwood-beige by ~10% */
}

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

.service-comparison-item {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  text-align: center;
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.service-comparison-item:hover {
  transform: translateY(-8px) scale(1.05);
  background-color: rgba(255, 255, 255, 0.25);
}

.service-comparison-title {
  font-size: 22px;
  color: #fff; /* Darkened --mango-yellow by ~20% */
}

.service-comparison-desc {
  font-size: 16px;
  color: #a36e7a; /* Darkened --lotus-pink by ~20% */
}

.service-results-gallery {
  padding: 60px 0;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
}

.service-slider {
  position: relative;
  overflow: hidden;
}

.service-slider-item {
  display: none;
  text-align: center;
}

.service-slider-item.active {
  display: block;
  animation: service-slide-in 0.7s ease;
}

@keyframes service-slide-in {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-slider-img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  transition: filter 0.3s ease;
}

.service-slider-item.active .service-slider-img {
  filter: brightness(1.1);
}

.service-faq {
  padding: 60px 0;
  background-color: #002741; /* Darkened --mango-yellow by ~20% */
}

.service-faq-item {
  margin-bottom: 15px;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.service-faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-faq-question {
  padding: 15px;
  cursor: pointer;
  color: #621818; /* Darkened --henna-red by ~20% */
  font-weight: bold;
  position: relative;
  transition: background-color 0.3s ease;
}

.service-faq-question::after {
  content: "▼";
  position: absolute;
  right: 15px;
  transition: transform 0.3s ease;
}

.service-faq-item.active .service-faq-question::after {
  transform: rotate(180deg);
}

.service-faq-question:hover {
  background-color: #a36e7a; /* Darkened --lotus-pink by ~20% */
  color: #fff; /* Darkened --peacock-blue by ~10% */
}

.service-faq-answer {
  display: none;
  padding: 15px;
  color: #fff; /* Darkened --banyan-brown by ~10% */
}

.service-faq-item.active .service-faq-answer {
  display: block;
  animation: service-faq-expand 0.3s ease;
}

@keyframes service-faq-expand {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 250px;
    opacity: 1;
  }
}

.service-guarantees {
  padding: 60px 0;
  background-color: #621818; /* Darkened --henna-red by ~20% */
}

.service-guarantees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.service-guarantee-item {
  text-align: center;
  padding: 20px;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
  border-radius: 15px;
  animation: service-guarantee-appear 0.4s ease forwards;
  opacity: 0;
  transition: transform 0.3s ease;
}

.service-guarantee-item:hover {
  transform: scale(1.05);
}

.service-guarantee-item:nth-child(1) {
  animation-delay: 0.1s;
}
.service-guarantee-item:nth-child(2) {
  animation-delay: 0.2s;
}
.service-guarantee-item:nth-child(3) {
  animation-delay: 0.3s;
}
.service-guarantee-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes service-guarantee-appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-guarantee-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
  transition: filter 0.3s ease;
}

.service-guarantee-item:hover .service-guarantee-img {
  filter: brightness(1.1);
}

.service-guarantee-title {
  font-size: 18px;
  color: #fff; /* Darkened --emerald-green by ~20% */
}

.service-final-call {
  padding: 80px 0;
  background-color: #0799d3; /* Darkened --saffron-orange by ~20% */
  text-align: center;
  position: relative;
}

.service-final-call::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(204, 153, 166, 0.3), transparent);
  animation: service-final-glow 3s infinite ease-in-out;
}

@keyframes service-final-glow {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.4;
  }
}

.service-final-text {
  font-size: 32px;
  color: #fff; /* Darkened --peacock-blue by ~10% */
  max-width: 800px;
  margin: 0 auto 20px;
  text-shadow: 0 0 12px #002741; /* Darkened --mango-yellow by ~20% */
}

.service-final-cta {
  position: relative;
  z-index: 99;
  display: inline-block;
  padding: 15px 40px;
  background-color: #a36e7a; /* Darkened --lotus-pink by ~20% */
  color: #fff; /* Darkened --banyan-brown by ~10% */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-final-cta:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 182, 193, 0.6);
}

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

  .service-hero-title {
    font-size: 28px;
  }

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

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

  .service-timeline {
    flex-direction: column;
    align-items: center;
  }

  .service-timeline-item {
    flex: 0 0 auto;
    width: 100%;
  }

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

@media (max-width: 480px) {
  .service-tabs {
    flex-direction: column;
  }

  .service-final-text {
    font-size: 24px;
  }
}

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

.about-h1 {
  text-align: center;
  font-size: 48px;
  color: #fff; /* Darkened --emerald-green by ~20% */
  padding: 40px 0;
  margin: 0;
  background-color: #000833;
  text-shadow: 2px 2px 5px rgba(80, 200, 120, 0.4);
  animation: about-text-pulse 1.5s infinite alternate;
}

@keyframes about-text-pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}

.about-hero {
  position: relative;
  height: 500px;
  background-image: url("img/bg-rol2.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(60, 150, 90, 0.5),
    rgba(204, 153, 166, 0.5)
  );
  animation: about-hero-glow 5s infinite ease-in-out;
}

@keyframes about-hero-glow {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.5;
  }
}

.about-hero-content {
  z-index: 1;
  color: #a38e6e; /* Darkened --sandalwood-beige by ~10% */
}

.about-hero-title {
  color: #0799d3;
  font-size: 26px;
  margin-bottom: 20px;
}

.about-hero-text {
  color: #0799d3;
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.about-team {
  padding: 60px 0;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
}

.about-team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.about-team-item {
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: #a36e7a; /* Darkened --lotus-pink by ~20% */
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-team-item:hover {
  transform: translateY(-10px) rotate(3deg);
  box-shadow: 0 10px 30px rgba(255, 182, 193, 0.5);
}

.about-team-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #fff; /* Darkened --emerald-green by ~20% */
  transition: border-color 0.3s ease;
}

.about-team-item:hover .about-team-img {
  border-color: var(--mango-yellow);
}

.about-team-name {
  font-size: 18px;
  color: #fff; /* Darkened --banyan-brown by ~10% */
}

.about-mission {
  padding: 60px 0;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
  text-align: center;
}

.about-mission-text {
  font-size: 32px;
  color: #fff; /* Darkened --peacock-blue by ~10% */
  max-width: 800px;
  margin: 0 auto;
}

.about-mission-text strong {
  color: #0799d3; /* Darkened --saffron-orange by ~20% */
  text-shadow: 0 0 6px #002741; /* Darkened --mango-yellow by ~20% */
}

.about-office-gallery {
  padding: 60px 0;
  background-color: #002741; /* Darkened --mango-yellow by ~20% */
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  column-gap: 20px;
}

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

.about-gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

.about-gallery-img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.about-gallery-img:hover {
  transform: scale(1.08) translateY(-5px);
  filter: brightness(1.2);
}

.about-growth {
  padding: 60px 0;
  background-color: #000833; /* Darkened --peacock-blue by ~10% */
  color: #a38e6e; /* Darkened --sandalwood-beige by ~10% */
}

.about-growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.about-growth-item {
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  transition: background-color 0.3s ease;
}

.about-growth-item:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.about-growth-bar {
  height: 10px;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
}

.about-growth-progress {
  width: 0%;
  height: 100%;
  background-color: #fff; /* Darkened --emerald-green by ~20% */
  transition: width 1.5s ease-in-out;
}

.about-growth-number {
  font-size: 24px;
  color: #fff; /* Darkened --mango-yellow by ~20% */
}

.about-final-word {
  padding: 80px 0;
  background-color: #0799d3; /* Darkened --saffron-orange by ~20% */
  text-align: center;
}

.about-final-text {
  font-size: 32px;
  color: #fff; /* Darkened --peacock-blue by ~10% */
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 0 12px #002741; /* Darkened --mango-yellow by ~20% */
}

@media (max-width: 768px) {
  .about-h1 {
    font-size: 26px;
  }

  .about-hero {
    height: 400px;
  }

  .about-hero-title {
    font-size: 32px;
  }

  .about-hero-text {
    font-size: 18px;
  }

  .about-timeline::before {
    left: 25px;
  }

  .about-timeline-item {
    align-items: flex-start;
  }

  .about-timeline-icon {
    left: 25px;
    transform: none;
  }

  .about-timeline-content {
    width: 100%;
    margin-top: 20px;
    margin-left: 30px;
  }

  .about-gallery-grid {
    column-count: 2;
  }

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

@media (max-width: 480px) {
  .about-gallery-grid {
    column-count: 1;
  }

  .about-final-text {
    font-size: 24px;
  }
}

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

.contact-h1 {
  text-align: center;
  font-size: 48px;
  color: #fff; /* Darkened --emerald-green by ~20% */
  padding: 40px 0;
  margin: 0;
  background-color: #000833;
  text-shadow: 2px 2px 5px rgba(80, 200, 120, 0.4);
  animation: contact-text-pulse 1.5s infinite alternate;
}

@keyframes contact-text-pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}

.contact-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-hero-content {
  z-index: 2;
  background: rgba(0, 51, 102, 0.8);
  padding: 20px 40px;
  border-radius: 15px;
  color: #a38e6e; /* Darkened --sandalwood-beige by ~10% */
  transition: background 0.3s ease;
}

.contact-hero-content:hover {
  background: rgba(0, 51, 102, 0.9);
}

.contact-hero-title {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-form-section {
  padding: 60px 0;
  background-color: #000833; /* Darkened --peacock-blue by ~10% */
  color: #a38e6e; /* Darkened --sandalwood-beige by ~10% */
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  transition: box-shadow 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  background-color: #a36e7a; /* Darkened --lotus-pink by ~20% */
  color: #000; /* Darkened --banyan-brown by ~10% */
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.contact-form input::placeholder {
  color: #fff;
}

.contact-form textarea::placeholder {
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #8c5c68; /* Darkened --lotus-pink by ~15% */
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form input[type="submit"] {
  background-color: #0799d3; /* Darkened --saffron-orange by ~20% */
  color: #fff; /* Darkened --peacock-blue by ~10% */
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
  background-color: #8f6200; /* Darkened --turmeric-gold by ~20% */
  transform: scale(1.08);
}

.contact-form-checkbox {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-form-checkbox input {
  width: 15px;
  height: 15px;
}

.contact-form-checkbox a {
  color: #fff; /* Darkened --mango-yellow by ~20% */
  text-decoration: none;
}

.contact-form-checkbox a:hover {
  text-decoration: underline;
}

.contact-branches {
  padding: 60px 0;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
}

.contact-branch-item {
  margin-bottom: 15px;
  background-color: #a36e7a; /* Darkened --lotus-pink by ~20% */
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.contact-branch-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-branch-title {
  padding: 15px;
  cursor: pointer;
  color: #621818; /* Darkened --henna-red by ~20% */
  font-weight: bold;
  position: relative;
  transition: background-color 0.3s ease;
}

.contact-branch-title::after {
  content: "▼";
  position: absolute;
  right: 15px;
  transition: transform 0.3s ease;
}

.contact-branch-item.active .contact-branch-title::after {
  transform: rotate(180deg);
}

.contact-branch-title:hover {
  background-color: #0799d3; /* Darkened --saffron-orange by ~20% */
  color: #fff; /* Darkened --peacock-blue by ~10% */
}

.contact-branch-content {
  display: none;
  padding: 15px;
  color: #fff; /* Darkened --banyan-brown by ~10% */
}

.contact-branch-item.active .contact-branch-content {
  display: block;
  animation: contact-branch-expand 0.3s ease;
}

@keyframes contact-branch-expand {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 250px;
    opacity: 1;
  }
}

.contact-hours {
  padding: 60px 0;
  background-color: #002741; /* Darkened --mango-yellow by ~20% */
  text-align: center;
}

.contact-hours-status {
  font-size: 24px;
  color: #fff; /* Darkened --emerald-green by ~20% */
  margin-bottom: 20px;
}

.contact-hours-table {
  max-width: 600px;
  margin: 0 auto;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
  padding: 20px;
  border-radius: 15px;
  transition: box-shadow 0.3s ease;
}

.contact-hours-table:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-hours-row {
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.contact-emergency {
  padding: 60px 0;
  background-color: #621818; /* Darkened --henna-red by ~20% */
  text-align: center;
  color: #a38e6e; /* Darkened --sandalwood-beige by ~10% */
}

.contact-emergency-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-emergency-link {
  color: #fff; /* Darkened --mango-yellow by ~20% */
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-emergency-link:hover {
  color: #8f6200; /* Darkened --turmeric-gold by ~20% */
  transform: scale(1.08);
}

.contact-proof {
  padding: 60px 0;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
}

.contact-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.contact-proof-item {
  padding: 20px;
  background-color: #a36e7a; /* Darkened --lotus-pink by ~20% */
  border-radius: 15px;
  text-align: center;
  transition: transform 0.4s ease;
}

.contact-proof-item p {
  margin-bottom: 0;
  color: #fff;
}

.contact-proof-item:hover {
  transform: translateY(-8px) scale(1.05);
}

.contact-achievements {
  padding: 60px 0;
  background-color: #000833; /* Darkened --peacock-blue by ~10% */
  color: #a38e6e; /* Darkened --sandalwood-beige by ~10% */
}

.contact-achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.contact-achievement-item {
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  transition: background-color 0.3s ease;
}

.contact-achievement-item:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.contact-achievement-number {
  font-size: 28px;
  color: #fff; /* Darkened --mango-yellow by ~20% */
}

.contact-gallery {
  padding: 60px 0;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
}

.contact-gallery-slider {
  position: relative;
  overflow: hidden;
}

.contact-gallery-item {
  display: none;
  text-align: center;
}

.contact-gallery-item.active {
  display: block;
  animation: contact-slide-in 0.7s ease;
}

@keyframes contact-slide-in {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-gallery-img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  transition: filter 0.3s ease;
}

.contact-gallery-item.active .contact-gallery-img {
  filter: brightness(1.1);
}

.contact-final {
  padding: 80px 0;
  background-color: #0799d3; /* Darkened --saffron-orange by ~20% */
  text-align: center;
}

.contact-final-text {
  font-size: 32px;
  color: #fff; /* Darkened --peacock-blue by ~10% */
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 0 12px #002741; /* Darkened --mango-yellow by ~20% */
}

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

  .contact-hero {
    height: 400px;
  }

  .contact-hero-title {
    font-size: 28px;
  }

  .contact-methods-grid,
  .contact-proof-grid,
  .contact-achievements-grid {
    grid-template-columns: 1fr;
  }

  .contact-final-text {
    font-size: 24px;
  }
}

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

  .contact-hero-title {
    font-size: 24px;
  }
}

.privacy-policy-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: linear-gradient(
    135deg,
    #a36e7a,
    /* Darkened --lotus-pink by ~20% */ #a38e6e
      /* Darkened --sandalwood-beige by ~20% */
  );
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.privacy-policy-h1 {
  text-align: center;
  font-size: 42px;
  color: #fff; /* Darkened --peacock-blue by ~10% */
  margin-bottom: 40px;
  text-shadow: 2px 2px 5px rgba(0, 51, 102, 0.4);
  animation: privacy-title-pulse 1.5s infinite alternate ease-in-out;
}

@keyframes privacy-title-pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}

.privacy-policy-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.privacy-policy-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4);
}

.privacy-policy-section h2 {
  font-size: 28px;
  color: #0799d3; /* Darkened --saffron-orange by ~20% */
  margin-bottom: 15px;
  position: relative;
}

.privacy-policy-section h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #fff; /* Darkened --emerald-green by ~20% */
  transition: width 0.3s ease;
}

.privacy-policy-section:hover h2::after {
  width: 120px;
}

.privacy-policy-section p {
  font-size: 16px;
  color: #fff; /* Darkened --banyan-brown by ~10% */
  margin: 0;
}

.privacy-policy-link {
  color: #ddd;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.privacy-policy-link:hover {
  color: #8f6200; /* Darkened --turmeric-gold by ~20% */
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-policy-container {
    margin: 10px;
    padding: 10px;
  }

  .privacy-policy-h1 {
    font-size: 32px;
  }

  .privacy-policy-section h2 {
    font-size: 24px;
  }

  .privacy-policy-section p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .privacy-policy-h1 {
    font-size: 28px;
  }

  .privacy-policy-section {
    padding: 15px;
  }
}

.terms-conditions-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: linear-gradient(
    135deg,
    #a36e7a,
    /* Darkened --lotus-pink by ~20% */ #a38e6e
      /* Darkened --sandalwood-beige by ~20% */
  );
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.terms-conditions-h1 {
  text-align: center;
  font-size: 42px;
  color: #fff; /* Darkened --peacock-blue by ~10% */
  margin-bottom: 40px;
  text-shadow: 2px 2px 5px rgba(0, 51, 102, 0.4);
  animation: terms-title-pulse 1.5s infinite alternate ease-in-out;
}

@keyframes terms-title-pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}

.terms-conditions-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.terms-conditions-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4);
}

.terms-conditions-section h2 {
  font-size: 28px;
  color: #0799d3; /* Darkened --saffron-orange by ~20% */
  margin-bottom: 15px;
  position: relative;
}

.terms-conditions-section h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #fff; /* Darkened --emerald-green by ~20% */
  transition: width 0.3s ease;
}

.terms-conditions-section:hover h2::after {
  width: 120px;
}

.terms-conditions-section p {
  font-size: 16px;
  color: #fff; /* Darkened --banyan-brown by ~10% */
  margin: 0;
}

.terms-conditions-link {
  color: #ddd;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.terms-conditions-link:hover {
  color: #8f6200; /* Darkened --turmeric-gold by ~20% */
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-conditions-container {
    margin: 10px;
    padding: 10px;
  }

  .terms-conditions-h1 {
    font-size: 32px;
  }

  .terms-conditions-section h2 {
    font-size: 24px;
  }

  .terms-conditions-section p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .terms-conditions-h1 {
    font-size: 28px;
  }

  .terms-conditions-section {
    padding: 15px;
  }
}

.thanks-page-container {
  margin: 30px auto;
  max-width: 700px;
  padding: 40px;
  background-color: rgba(204, 153, 166, 0.95);
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(165, 42, 42, 0.4);
  position: relative;
  z-index: 2;
  animation: thanks-container-slide 0.8s ease-out;
  text-align: center;
}

@keyframes thanks-container-slide {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.thanks-page-title {
  font-size: 26px;
  color: #fff; /* Darkened --peacock-blue by ~10% */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 5px rgba(0, 51, 102, 0.4);
}

.thanks-page-text {
  font-size: 20px;
  color: #fff; /* Darkened --banyan-brown by ~10% */
  margin-bottom: 30px;
  line-height: 1.7;
}

.thanks-page-cta {
  display: inline-block;
  padding: 15px 50px;
  background-color: #fff; /* Darkened --emerald-green by ~20% */
  color: #a38e6e; /* Darkened --sandalwood-beige by ~10% */
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.thanks-page-cta:hover {
  background-color: #8f6200; /* Darkened --turmeric-gold by ~20% */
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(230, 155, 0, 0.5);
}

.thanks-page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(204, 102, 51, 0.3),
    transparent
  );
  z-index: 1;
  animation: thanks-bg-pulse 7s infinite ease-in-out;
}

@keyframes thanks-bg-pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.4;
  }
}

@media (max-width: 768px) {
  .thanks-page-container {
    padding: 30px;
    margin: 20px;
  }

  .thanks-page-title {
    font-size: 32px;
  }

  .thanks-page-text {
    font-size: 18px;
  }

  .thanks-page-cta {
    padding: 12px 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .thanks-page-title {
    font-size: 28px;
  }

  .thanks-page-text {
    font-size: 16px;
  }

  .thanks-page-cta {
    padding: 10px 30px;
  }
}

.index-sphere-influence {
  padding: 60px 0;
  background-color: #a38e6e; /* Darkened --sandalwood-beige by ~20% */
}

.index-influence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: center;
}

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

.index-influence-item {
  padding: 20px;
  background-color: #a36e7a; /* Darkened --lotus-pink by ~20% */
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.index-influence-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
}

:root {
  --peacock-blue: #001a33;
  --mango-yellow: #cc9900;
  --henna-red: #7a1f1f;
  --sandalwood-beige: #c8b08a;
  --lotus-pink: #cc8899;
  --emerald-green: #3a8c5a;
  --saffron-orange: #cc6600;
  --indigo-depth: #330055;
  --turmeric-gold: #b37a00;
  --banyan-brown: #44250f;
}

.index-influence-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.index-influence-item:hover .index-influence-icon {
  transform: rotate(360deg);
}

.index-influence-icon.north::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 30px;
  background: linear-gradient(
    180deg,
    #fff,
    /* --emerald-green darkened by ~20% */ #fff
      /* --peacock-blue darkened by ~10% */
  );
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  border: 2px solid #002741; /* --mango-yellow darkened by ~20% */
  border-radius: 5px;
}

.index-influence-icon.south::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    180deg,
    #0799d3,
    /* --saffron-orange darkened by ~20% */ #621818
      /* --henna-red darkened by ~20% */
  );
  clip-path: polygon(20% 100%, 50% 20%, 80% 100%, 70% 100%, 50% 40%, 30% 100%);
  border: 2px solid #002741; /* --mango-yellow darkened by ~20% */
}

.index-influence-icon.entertainment::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 30px;
  background: linear-gradient(
    45deg,
    #a36e7a,
    /* --lotus-pink darkened by ~20% */ #0799d3
      /* --saffron-orange darkened by ~20% */
  );
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
  border: 2px solid #fff; /* --banyan-brown darkened by ~10% */
}

.index-influence-icon.entertainment::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 5px;
  background: #fff; /* --banyan-brown darkened by ~10% */
  top: 10px;
  left: 10px;
  transform: rotate(45deg);
}

.index-influence-icon.sports::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 35px;
  background: #fff; /* --emerald-green darkened by ~20% */
  border-radius: 10px 10px 0 0;
  border: 2px solid #002741; /* --mango-yellow darkened by ~20% */
}

.index-influence-icon.sports::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #621818; /* --henna-red darkened by ~20% */
  border-radius: 50%;
  top: 40px;
  left: 22px;
  border: 2px solid #002741; /* --mango-yellow darkened by ~20% */
}

.index-influence-title {
  font-size: 22px;
  color: #fff; /* --peacock-blue darkened by ~10% */
  margin: 0;
}

.index-how-works {
  padding: 60px 0;
  background-color: #002741; /* --mango-yellow darkened by ~20% */
}

.index-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 50px;
}

.index-timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0799d3; /* --saffron-orange darkened by ~20% */
}

.index-timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.index-timeline-item:hover {
  transform: translateX(10px);
}

.index-timeline-icon {
  width: 30px;
  height: 30px;
  position: relative;
  background: #fff; /* --peacock-blue darkened by ~10% */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.index-timeline-item:hover .index-timeline-icon {
  background: #cc6600; /* --saffron-orange */
}

.index-timeline-icon.search::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid #002741; /* --mango-yellow darkened by ~20% */
  border-radius: 50%;
}

.index-timeline-icon.search::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  background: #002741; /* --mango-yellow darkened by ~20% */
  transform: rotate(45deg);
  bottom: 5px;
  right: 5px;
}

.index-timeline-icon.review::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #0799d3; /* --saffron-orange darkened by ~20% */
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.index-timeline-icon.download::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid #fff; /* --emerald-green darkened by ~20% */
  border-radius: 2px;
}

.index-timeline-icon.download::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff; /* --emerald-green darkened by ~20% */
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 8px;
  left: 8px;
}

.index-timeline-icon.enjoy::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 18px;
  background: #a36e7a; /* --lotus-pink darkened by ~20% */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  border: 2px solid #fff; /* --banyan-brown darkened by ~10% */
}

.index-timeline-title {
  font-size: 20px;
  color: #fff; /* --banyan-brown darkened by ~10% */
  margin: 0;
}

.index-timeline-desc {
  font-size: 16px;
  color: #fff; /* --banyan-brown darkened by ~10% */
  margin: 5px 0 0;
}

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

  .index-influence-icon {
    width: 50px;
    height: 50px;
  }

  .index-influence-icon.north::before,
  .index-influence-icon.south::before,
  .index-influence-icon.entertainment::before,
  .index-influence-icon.sports::before {
    transform: scale(0.8);
  }

  .index-influence-icon.sports::after {
    transform: scale(0.8);
    top: 35px;
    left: 20px;
  }

  .index-timeline {
    padding-left: 20px;
  }

  .index-timeline::before {
    left: 15px;
  }

  .index-timeline-icon {
    width: 25px;
    height: 25px;
  }

  .index-timeline-icon.search::before,
  .index-timeline-icon.review::before,
  .index-timeline-icon.download::before,
  .index-timeline-icon.enjoy::before {
    transform: scale(0.8);
  }
}

@media (max-width: 480px) {
  .index-influence-title {
    font-size: 18px;
  }

  .index-timeline-title {
    font-size: 18px;
  }

  .index-timeline-desc {
    font-size: 14px;
  }
}

.about-timeline {
  padding: 60px 0;
  background-color: #a38e6e; /* --sandalwood-beige darkened by ~20% */
}

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

.about-timeline-container {
  position: relative;
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  padding-left: 50px;
}

.about-timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.about-timeline-item:hover {
  transform: translateX(10px);
}

.about-timeline-icon {
  width: 30px;
  height: 30px;
  position: relative;
  background: #fff; /* --peacock-blue darkened by ~10% */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.about-timeline-item:hover .about-timeline-icon {
  background: #cc6600; /* --saffron-orange */
}

.about-timeline-icon.founded::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(
    45deg,
    #0799d3,
    /* --saffron-orange darkened by ~20% */ #002741
      /* --mango-yellow darkened by ~20% */
  );
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  border: 2px solid #fff; /* --banyan-brown darkened by ~10% */
}

.about-timeline-icon.expansion::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 20px;
  background: linear-gradient(
    180deg,
    #fff,
    /* --emerald-green darkened by ~20% */ #fff
      /* --peacock-blue darkened by ~10% */
  );
  clip-path: polygon(
    50% 0%,
    100% 50%,
    75% 50%,
    75% 100%,
    25% 100%,
    25% 50%,
    0% 50%
  );
  border: 2px solid #002741; /* --mango-yellow darkened by ~20% */
}

.about-timeline-icon.milestone::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #621818; /* --henna-red darkened by ~20% */
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  border: 2px solid #002741; /* --mango-yellow darkened by ~20% */
}

.about-timeline-title {
  font-size: 20px;
  color: #fff; /* --banyan-brown darkened by ~10% */
  margin: 0;
}

.about-timeline-content p {
  font-size: 16px;
  color: #fff; /* --banyan-brown darkened by ~10% */
  margin: 5px 0 0;
}

.about-values {
  padding: 60px 0;
  background-color: #002741; /* --mango-yellow darkened by ~20% */
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: center;
}

.about-value-item {
  padding: 20px;
  background-color: #a36e7a; /* --lotus-pink darkened by ~20% */
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
}

.about-value-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: conic-gradient(
    #fff calc(var(--value) * 1%),
    /* --emerald-green darkened by ~20% */ #fff 0
      /* --peacock-blue darkened by ~10% */
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s ease;
}

.about-value-item:hover .about-value-circle {
  transform: rotate(360deg);
}

.about-value-circle1 {
  --value: 90;
}
.about-value-circle2 {
  --value: 85;
}
.about-value-circle3 {
  --value: 95;
}

.about-value-circle::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: #a36e7a; /* --lotus-pink darkened by ~20% */
  border-radius: 50%;
}

.about-value-circle span {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #fff; /* --banyan-brown darkened by ~10% */
}

.about-value-text {
  font-size: 18px;
  color: #fff; /* --peacock-blue darkened by ~10% */
  margin: 0;
}

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

  .about-timeline {
    padding-left: 20px;
  }

  .about-timeline::before {
    left: 15px;
  }

  .about-timeline-icon {
    width: 25px;
    height: 25px;
  }

  .about-timeline-icon.founded::before,
  .about-timeline-icon.expansion::before,
  .about-timeline-icon.milestone::before {
    transform: scale(0.8);
  }

  .about-value-circle {
    width: 80px;
    height: 80px;
  }

  .about-value-circle::before {
    width: 60px;
    height: 60px;
  }

  .about-value-circle span {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .about-timeline-title {
    font-size: 18px;
  }

  .about-timeline-content p {
    font-size: 14px;
  }

  .about-value-text {
    font-size: 16px;
  }
}

.about-awards {
  padding: 60px 0;
  background-color: #a38e6e; /* --sandalwood-beige darkened by ~20% */
}

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

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

.about-award-item {
  padding: 20px;
  background-color: #a36e7a; /* --lotus-pink darkened by ~20% */
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-award-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
}

.about-award-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin: 0 auto 10px;
  display: block;
  border-radius: 10px;
  transition: filter 0.3s ease;
}

.about-award-item:hover .about-award-img {
  filter: brightness(1.1);
}

.about-award-item p {
  font-size: 16px;
  color: #fff; /* --banyan-brown darkened by ~10% */
  margin: 10px 0 0;
  line-height: 1.6;
}

.about-ecosystem {
  padding: 60px 0;
  background-color: #002741; /* --mango-yellow darkened by ~20% */
}

.about-ecosystem-diagram {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  padding: 20px;
}

.about-ecosystem-node {
  width: 150px;
  height: 150px;
  background: #fff; /* --peacock-blue darkened by ~10% */
  color: #a38e6e; /* --sandalwood-beige darkened by ~20% */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
}

.about-ecosystem-node:hover {
  transform: scale(1.15) rotate(10deg);
  background: #0799d3; /* --saffron-orange darkened by ~20% */
}

.about-ecosystem-node::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 2px solid #fff; /* --emerald-green darkened by ~20% */
  border-radius: 50%;
  transition: border-color 0.3s ease;
}

.about-ecosystem-node:hover::before {
  border-color: #cc9900; /* --mango-yellow */
}

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

  .about-award-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .about-ecosystem-node {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }

  .about-ecosystem-node::before {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .about-award-item p {
    font-size: 14px;
  }

  .about-ecosystem-node {
    width: 80px;
    height: 80px;
    font-size: 12px;
  }

  .about-ecosystem-node::before {
    width: 80px;
    height: 80px;
  }
}

.service-matrix {
  padding: 60px 0;
  background-color: #a38e6e; /* --sandalwood-beige darkened by ~20% */
}

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

.service-matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: center;
}

.service-matrix-item {
  padding: 20px;
  background-color: #a36e7a; /* --lotus-pink darkened by ~20% */
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-matrix-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
}

.service-matrix-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.service-matrix-item:hover .service-matrix-img {
  transform: rotate(360deg);
}

.service-matrix-img.discovery::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid #0799d3; /* --saffron-orange darkened by ~20% */
  border-radius: 50%;
}

.service-matrix-img.discovery::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #002741; /* --mango-yellow darkened by ~20% */
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  top: 10px;
  left: 30px;
}

.service-matrix-img.personalization::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fff; /* --emerald-green darkened by ~20% */
  clip-path: polygon(50% 0%, 80% 20%, 100% 60%, 50% 100%, 0% 60%, 20% 20%);
}

.service-matrix-img.personalization::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 18px;
  background: #a36e7a; /* --lotus-pink darkened by ~20% */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  top: 40px;
  left: 30px;
}

.service-matrix-img.security::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 50px;
  background: #621818; /* --henna-red darkened by ~20% */
  clip-path: polygon(
    20% 0%,
    80% 0%,
    100% 20%,
    100% 80%,
    80% 100%,
    20% 100%,
    0% 80%,
    0% 20%
  );
  border: 2px solid #002741; /* --mango-yellow darkened by ~20% */
}

.service-matrix-img.localization::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 40px;
  background: #002741; /* --mango-yellow darkened by ~20% */
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  border: 2px solid #fff; /* --peacock-blue darkened by ~10% */
}

.service-matrix-img.localization::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 10px;
  background: #fff; /* --peacock-blue darkened by ~10% */
  border-radius: 5px;
  top: 45px;
  left: 20px;
}

.service-matrix-img.support::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 20px;
  background: #8f6200; /* --turmeric-gold darkened by ~20% */
  border-radius: 20px 20px 0 0;
  border: 2px solid #fff; /* --banyan-brown darkened by ~10% */
}

.service-matrix-img.support::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 5px;
  background: #fff; /* --banyan-brown darkened by ~10% */
  top: 25px;
  left: 32px;
  transform: rotate(45deg);
}

.service-matrix-img.updates::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid #290044; /* --indigo-depth darkened by ~10% */
  border-radius: 50%;
  border-top-color: transparent;
  transform: rotate(45deg);
}

.service-matrix-img.updates::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 20px;
  background: #290044; /* --indigo-depth darkened by ~10% */
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 10px;
  left: 32px;
}

.service-matrix-title {
  font-size: 22px;
  color: #fff; /* --peacock-blue darkened by ~10% */
  margin: 0;
}

.service-matrix-desc {
  font-size: 16px;
  color: #fff; /* --banyan-brown darkened by ~10% */
  margin: 10px 0 0;
}

.service-process {
  padding: 60px 0;
  background-color: #002741; /* --mango-yellow darkened by ~20% */
}

.service-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  padding-left: 50px;
}

.service-timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0799d3; /* --saffron-orange darkened by ~20% */
}

.service-timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.service-timeline-item:hover {
  transform: translateX(10px);
}

.service-timeline-img {
  width: 60px;
  height: 60px;
  position: relative;
  background: #15bbee; /* --peacock-blue darkened by ~10% */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.service-timeline-item:hover .service-timeline-img {
  background: #cc6600; /* --saffron-orange */
}

.service-timeline-img.discovery::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #0799d3; /* --saffron-orange darkened by ~20% */
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.service-timeline-img.discovery::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #002741; /* --mango-yellow darkened by ~20% */
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  top: 10px;
  left: 25px;
}

.service-timeline-img.vetting::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #fff; /* --emerald-green darkened by ~20% */
  border-radius: 50%;
  border: 3px solid #fff; /* --banyan-brown darkened by ~10% */
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 50% 100%, 0% 75%);
}

.service-timeline-img.vetting::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 10px;
  background: #fff; /* --banyan-brown darkened by ~10% */
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  top: 25px;
  left: 22px;
}

.service-timeline-img.localization::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #621818; /* --henna-red darkened by ~20% */
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  border: 2px solid #002741; /* --mango-yellow darkened by ~20% */
}

.service-timeline-img.localization::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 10px;
  background: #002741; /* --mango-yellow darkened by ~20% */
  border-radius: 5px;
  top: 35px;
  left: 22px;
}

.service-timeline-img.launch::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 30px;
  background: #002741; /* --mango-yellow darkened by ~20% */
  clip-path: polygon(50% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
  border: 2px solid #fff; /* --peacock-blue darkened by ~10% */
}

.service-timeline-img.launch::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 10px;
  background: #fff; /* --peacock-blue darkened by ~10% */
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  top: 35px;
  left: 22px;
}

.service-timeline-img.support::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 15px;
  background: #8f6200; /* --turmeric-gold darkened by ~20% */
  border-radius: 15px 15px 0 0;
  border: 2px solid #fff; /* --banyan-brown darkened by ~10% */
}

.service-timeline-img.support::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 5px;
  background: #fff; /* --banyan-brown darkened by ~10% */
  top: 20px;
  left: 25px;
  transform: rotate(45deg);
}

.service-timeline-img.updates::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid #290044; /* --indigo-depth darkened by ~10% */
  border-radius: 50%;
  border-top-color: transparent;
  transform: rotate(45deg);
}

.service-timeline-img.updates::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 10px;
  background: #290044; /* --indigo-depth darkened by ~10% */
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  top: 25px;
  left: 22px;
}

.service-timeline-title {
  font-size: 20px;
  color: #fff; /* --banyan-brown darkened by ~10% */
  margin: 0;
}

.service-reviews {
  padding: 60px 0;
  background-color: #a36e7a; /* --lotus-pink darkened by ~20% */
}

.service-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: center;
}

.service-review-item {
  padding: 20px;
  background-color: #a38e6e; /* --sandalwood-beige darkened by ~20% */
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-review-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
}

.service-review-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff; /* --peacock-blue darkened by ~10% */
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.service-review-item:hover .service-review-img {
  transform: rotate(360deg);
}

.service-review-img.raj::before,
.service-review-img.priya::before,
.service-review-img.arjun::before,
.service-review-img.meera::before,
.service-review-img.vikram::before,
.service-review-img.sanya::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: #a38e6e; /* --sandalwood-beige darkened by ~20% */
  clip-path: polygon(50% 0%, 80% 20%, 100% 60%, 50% 100%, 0% 60%, 20% 20%);
  border: 2px solid #002741; /* --mango-yellow darkened by ~20% */
}

.service-review-img.raj::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 10px;
  background: #0799d3; /* --saffron-orange darkened by ~20% */
  top: 55px;
  left: 30px;
  border-radius: 5px;
}

.service-review-img.priya::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #a36e7a; /* --lotus-pink darkened by ~20% */
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 55px;
  left: 32px;
}

.service-review-img.arjun::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 10px;
  background: #fff; /* --emerald-green darkened by ~20% */
  border-radius: 0 0 10px 10px;
  top: 10px;
  left: 30px;
}

.service-review-img.meera::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #621818; /* --henna-red darkened by ~20% */
  border-radius: 50%;
  top: 55px;
  left: 32px;
}

.service-review-img.vikram::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 8px;
  background: #8f6200; /* --turmeric-gold darkened by ~20% */
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 55px;
  left: 30px;
}

.service-review-img.sanya::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 15px;
  background: #290044; /* --indigo-depth darkened by ~10% */
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 55px;
  left: 35px;
}

.service-review-text {
  font-size: 16px;
  color: #fff; /* --banyan-brown darkened by ~10% */
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  .service-matrix-grid,
  .service-reviews-grid {
    grid-template-columns: 1fr;
  }

  .service-matrix-img {
    width: 60px;
    height: 60px;
  }

  .service-matrix-img.discovery::before,
  .service-matrix-img.personalization::before,
  .service-matrix-img.security::before,
  .service-matrix-img.localization::before,
  .service-matrix-img.support::before,
  .service-matrix-img.updates::before {
    transform: scale(0.8);
  }

  .service-matrix-img.discovery::after,
  .service-matrix-img.personalization::after,
  .service-matrix-img.localization::after,
  .service-matrix-img.support::after,
  .service-matrix-img.updates::after {
    transform: scale(0.8);
  }

  .service-timeline {
    padding-left: 20px;
  }

  .service-timeline::before {
    left: 15px;
  }

  .service-timeline-img {
    width: 50px;
    height: 50px;
  }

  .service-timeline-img.discovery::before,
  .service-timeline-img.vetting::before,
  .service-timeline-img.localization::before,
  .service-timeline-img.launch::before,
  .service-timeline-img.support::before,
  .service-timeline-img.updates::before {
    transform: scale(0.8);
  }

  .service-review-img {
    width: 60px;
    height: 60px;
  }

  .service-review-img.raj::before,
  .service-review-img.priya::before,
  .service-review-img.arjun::before,
  .service-review-img.meera::before,
  .service-review-img.vikram::before,
  .service-review-img.sanya::before {
    transform: scale(0.8);
  }
}

@media (max-width: 480px) {
  .service-matrix-title,
  .service-timeline-title {
    font-size: 18px;
  }

  .service-matrix-desc,
  .service-review-text {
    font-size: 14px;
  }
}

.contact-methods {
  padding: 60px 0;
  background-color: #a38e6e; /* --sandalwood-beige darkened by ~20% */
}

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

.contact-methods-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.contact-method-item {
  padding: 20px;
  background-color: #a36e7a; /* --lotus-pink darkened by ~20% */
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.contact-method-item:hover .contact-method-icon {
  transform: rotate(360deg);
}

.contact-method-icon.phone::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #0799d3; /* --saffron-orange darkened by ~20% */
  clip-path: polygon(
    20% 0%,
    0% 20%,
    30% 50%,
    0% 80%,
    20% 100%,
    80% 100%,
    100% 80%,
    70% 50%,
    100% 20%,
    80% 0%
  );
  border: 2px solid #002741; /* --mango-yellow darkened by ~20% */
}

.contact-method-icon.email::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 30px;
  background: #fff; /* --emerald-green darkened by ~20% */
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  border: 2px solid #fff; /* --banyan-brown darkened by ~10% */
}

.contact-method-icon.email::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 10px;
  background: #a38e6e; /* --sandalwood-beige darkened by ~20% */
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 10px;
  left: 10px;
}

.contact-method-icon.address::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 40px;
  background: #621818; /* --henna-red darkened by ~20% */
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  border: 2px solid #002741; /* --mango-yellow darkened by ~20% */
}

.contact-method-icon.address::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #002741; /* --mango-yellow darkened by ~20% */
  border-radius: 50%;
  top: 10px;
  left: 20px;
}

.contact-method-icon.whatsapp::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fff; /* --emerald-green darkened by ~20% */
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
  border: 2px solid #a38e6e; /* --sandalwood-beige darkened by ~20% */
}

.contact-method-icon.whatsapp::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #a38e6e; /* --sandalwood-beige darkened by ~20% */
  clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
  top: 10px;
  left: 10px;
}

.contact-method-icon.telegram::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: #8f6200; /* --turmeric-gold darkened by ~20% */
  border-radius: 50%;
  border: 2px solid #fff; /* --peacock-blue darkened by ~10% */
}

.contact-method-icon.telegram::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff; /* --peacock-blue darkened by ~10% */
  clip-path: polygon(20% 0%, 80% 40%, 60% 100%, 40% 100%, 0% 40%);
  top: 10px;
  left: 10px;
}

.contact-method-link {
  font-size: 18px;
  color: #fff; /* --peacock-blue darkened by ~10% */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-method-link:hover {
  color: #0799d3; /* --saffron-orange darkened by ~20% */
}

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

  .contact-method-icon {
    width: 40px;
    height: 40px;
  }

  .contact-method-icon.phone::before,
  .contact-method-icon.email::before,
  .contact-method-icon.address::before,
  .contact-method-icon.whatsapp::before,
  .contact-method-icon.telegram::before {
    transform: scale(0.8);
  }

  .contact-method-icon.email::after,
  .contact-method-icon.address::after,
  .contact-method-icon.whatsapp::after,
  .contact-method-icon.telegram::after {
    transform: scale(0.8);
  }
}

@media (max-width: 480px) {
  .contact-method-link {
    font-size: 16px;
  }
}
