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 {
  --ganga-river-blue: #005f73; /* Deep, flowing river blue for serenity */
  --golden-heritage: #d4af37; /* Luxurious gold evoking Indian royalty */
  --spice-red: #c94c4c; /* Vibrant red inspired by Indian spices */
  --lush-jungle: #2a9d8f; /* Rich green for natural, tropical vibes */
  --pure-snow: #f0f4f8; /* Soft white for clean, elegant backdrops */
  --deep-earth: #4a2c2a; /* Earthy brown for grounded heritage feel */
  --sunset-orange: #ff6f61; /* Warm orange like a Ganges sunset */
  --lotus-pink: #ffafcc; /* Gentle pink for lotus flower subtlety */
  --teal-depth: #0a9396; /* Teal for river depths and tranquility */
  --amber-glow: #ffb703; /* Glowing amber for warm accents */
}

.ganga-index-header {
  background-color: var(--ganga-river-blue);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.ganga-index-header:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

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

.ganga-index-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.ganga-index-logo:hover {
  color: var(--golden-heritage);
  transform: scale(1.05) rotate(3deg);
  text-shadow: 0 0 10px var(--amber-glow);
}

.ganga-index-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ganga-index-menu-link {
  color: var(--pure-snow);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease, transform 0.3s ease;
}

.ganga-index-menu-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--lotus-pink);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.ganga-index-menu-link:hover::after {
  width: 100%;
  background-color: var(--teal-depth);
}

.ganga-index-menu-link:hover {
  color: var(--lotus-pink);
  padding-left: 0.5rem;
  transform: skewX(-5deg);
}

.ganga-index-burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.ganga-index-burger-line {
  width: 2rem;
  height: 0.25rem;
  background: var(--sunset-orange);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.ganga-index-burger.active .ganga-index-burger-line:nth-child(1) {
  transform: rotate(45deg);
  background: var(--spice-red);
}

.ganga-index-burger.active .ganga-index-burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.ganga-index-burger.active .ganga-index-burger-line:nth-child(3) {
  transform: rotate(-45deg);
  background: var(--spice-red);
}

@media (max-width: 768px) {
  .ganga-index-menu {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--ganga-river-blue);
    padding: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease, colorPulse 2s infinite alternate;
  }

  @keyframes colorPulse {
    0% {
      background-color: var(--ganga-river-blue);
    }
    100% {
      background-color: var(--teal-depth);
    }
  }

  .ganga-index-menu.active {
    display: flex;
  }

  .ganga-index-burger {
    display: flex;
  }
}

.ganga-index-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--pure-snow);
  @media (max-width: 550px) {
    height: 100%;
  }
}

.ganga-index-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/bg-hot1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: subtleZoom 20s infinite alternate,
    colorShift 10s infinite alternate, rippleEffect 5s infinite ease-in-out;
}

@keyframes rippleEffect {
  0% {
    filter: brightness(1) contrast(1);
  }
  50% {
    filter: brightness(1.1) contrast(1.05) blur(1px);
  }
  100% {
    filter: brightness(1) contrast(1);
  }
}

@keyframes colorShift {
  0% {
    filter: brightness(1) hue-rotate(0deg);
  }
  50% {
    filter: brightness(1.2) hue-rotate(20deg);
  }
  100% {
    filter: brightness(1) hue-rotate(0deg);
  }
}

@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.ganga-index-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 1rem;
  background: rgba(0, 95, 115, 0.7);
  border-radius: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.5s ease, transform 0.5s ease;
}

.ganga-index-hero-content:hover {
  background: rgba(0, 95, 115, 0.85);
  transform: scale(1.02);
}

.ganga-index-hero-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.2s ease-out, glowText 2s infinite alternate,
    textWave 3s infinite ease-in-out;
}

@keyframes textWave {
  0% {
    letter-spacing: 0.05rem;
  }
  50% {
    letter-spacing: 0.1rem;
  }
  100% {
    letter-spacing: 0.05rem;
  }
}

@keyframes glowText {
  0% {
    text-shadow: 0 0 5px var(--lotus-pink);
  }
  100% {
    text-shadow: 0 0 15px var(--lotus-pink);
  }
}

.ganga-index-hero-subtitle {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.7s ease-out, subtleGlow 3s infinite alternate;
}

@keyframes subtleGlow {
  0% {
    text-shadow: 0 0 2px var(--amber-glow);
  }
  100% {
    text-shadow: 0 0 8px var(--amber-glow);
  }
}

.ganga-index-hero-cta {
  display: inline-block;
  background-color: var(--sunset-orange);
  color: var(--pure-snow);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease, filter 0.3s ease;
}

.ganga-index-hero-cta:hover {
  background-color: var(--golden-heritage);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
  filter: brightness(1.1);
}

.ganga-index-quick-actions {
  padding: 3rem 0;
  background-color: var(--lush-jungle);
  color: var(--pure-snow);
  position: relative;
}

.ganga-index-quick-actions h2 {
  margin-bottom: 15px;
}
.ganga-index-quick-actions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  pointer-events: none;
  animation: gradientShift 15s infinite alternate;
}

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

.ganga-index-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.ganga-index-action-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease,
    border 0.4s ease;
  border: 1px solid transparent;
}

.ganga-index-action-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid var(--teal-depth);
}

.ganga-index-action-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  animation: bounceIcon 1.5s infinite, colorRotate 5s infinite linear;
}

@keyframes colorRotate {
  0% {
    color: var(--sunset-orange);
  }
  50% {
    color: var(--lotus-pink);
  }
  100% {
    color: var(--sunset-orange);
  }
}

@keyframes bounceIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.ganga-index-action-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.ganga-index-action-desc {
  font-size: 1rem;
}

.ganga-index-gallery {
  padding: 3rem 0;
  background: linear-gradient(
    to bottom,
    var(--pure-snow),
    rgba(42, 157, 143, 0.15)
  );
}

.ganga-index-gallery h2 {
  margin-bottom: 15px;
}

.ganga-index-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1.5rem;
  @media (max-width: 1024px) {
    grid-template-columns: 1fr 1fr 1fr;
  }
  @media (max-width: 768px) {
    grid-template-columns: 1fr 1fr;
  }
  @media (max-width: 425px) {
    grid-template-columns: 1fr;
  }
}

.ganga-index-gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.ganga-index-gallery-item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 2;
}
.ganga-index-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ganga-index-gallery-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: rotate(1deg);
}

.ganga-index-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
}

.ganga-index-gallery-item:hover .ganga-index-gallery-img {
  transform: scale(1.15) rotate(-2deg);
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
  opacity: 0.9;
}

.ganga-index-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--pure-snow);
  padding: 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.5s ease, background 0.5s ease;
}

.ganga-index-gallery-item:hover .ganga-index-gallery-caption {
  transform: translateY(0);
  background: linear-gradient(to top, rgba(212, 175, 55, 0.8), transparent);
}

.ganga-index-stats {
  padding: 3rem 0;
  background-color: var(--ganga-river-blue);
  color: var(--pure-snow);
  position: relative;
  overflow: hidden;
}

.ganga-index-stats h2 {
  margin-bottom: 10px;
}

.ganga-index-stats::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: rotateBg 30s linear infinite, colorPulseStats 5s infinite alternate;
}

@keyframes colorPulseStats {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(30deg);
  }
}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ganga-index-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  @media (max-width: 550px) {
    grid-template-columns: 1fr;
  }
}

.ganga-index-stat-item {
  text-align: center;
  padding: 0.5rem;
  border: 2px dashed var(--golden-heritage);
  border-radius: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.ganga-index-stat-item:hover {
  border-color: var(--lotus-pink);
  transform: skewY(2deg);
}

.ganga-index-stat-number {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  animation: countUp 2.5s ease-out forwards, pulseNumber 1s infinite alternate,
    colorShiftNumber 3s infinite linear;
}

@keyframes colorShiftNumber {
  0% {
    color: var(--sunset-orange);
  }
  50% {
    color: var(--lotus-pink);
  }
  100% {
    color: var(--sunset-orange);
  }
}

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

.ganga-index-stat-bar {
  height: 10px;
  background: linear-gradient(
    to right,
    var(--sunset-orange),
    var(--golden-heritage)
  );
  margin: 1.5rem 0;
  width: 0;
  animation: barFill 2.5s ease-out forwards, shimmerBar 2s infinite linear;
}

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

.ganga-index-stat-desc {
  font-size: 1.1rem;
}

.ganga-index-influence {
  padding: 3rem 0;
  background: linear-gradient(to bottom, var(--pure-snow), var(--lush-jungle));
}

.ganga-index-influence h2 {
  margin-bottom: 30px;
}

.ganga-index-influence-container {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  @media (max-width: 768px) {
    height: 100%;
    flex-direction: column;
    gap: 10px;
  }
}

.ganga-index-influence-circle {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--sunset-orange),
    var(--golden-heritage)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--pure-snow);
  text-align: center;
  position: relative;
  animation: pulse 2s infinite, rotateCircle 15s linear infinite,
    colorGradientCircle 5s infinite alternate;
  @media (max-width: 550px) {
    width: 100%;
    max-width: 100%;
    height: 250px;
    margin-bottom: 50px;
  }
}

@keyframes colorGradientCircle {
  0% {
    background: radial-gradient(
      circle,
      var(--sunset-orange),
      var(--golden-heritage)
    );
  }
  100% {
    background: radial-gradient(circle, var(--lotus-pink), var(--teal-depth));
  }
}

@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ganga-index-influence-area {
  position: absolute;
  width: 120px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--deep-earth);
  background: var(--pure-snow);
  padding: 0.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  @media (max-width: 768px) {
    position: relative;
    display: flex;
    flex-direction: column;
  }
}

.ganga-index-influence-area:hover {
  transform: scale(1.1) rotate(5deg);
  background: var(--lush-jungle);
  color: var(--pure-snow);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.ganga-index-influence-area:nth-child(1) {
  top: -60px;
  left: 120px;
  @media (max-width: 768px) {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
}
.ganga-index-influence-area:nth-child(2) {
  bottom: -60px;
  left: 220px;
  @media (max-width: 768px) {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
  }
}
.ganga-index-influence-area:nth-child(3) {
  left: 60px;
  top: 120px;
  @media (max-width: 768px) {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }
}
.ganga-index-influence-area:nth-child(4) {
  right: 160px;
  top: 120px;
  @media (max-width: 768px) {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }
}
.ganga-index-influence-area:nth-child(5) {
  top: 0;
  left: 150px;
  @media (max-width: 768px) {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
}
.ganga-index-influence-area:nth-child(6) {
  bottom: 50px;
  right: 250px;
  @media (max-width: 768px) {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
  }
}
.ganga-index-influence-area:nth-child(7) {
  bottom: 400px;
  right: 200px;
  @media (max-width: 768px) {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
  }
}

.ganga-index-quote {
  padding: 3rem 0;
  background-color: var(--lush-jungle);
  color: var(--pure-snow);
  text-align: center;
  position: relative;
}

.ganga-index-quote::before {
  content: "“";
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.2);
  animation: floatQuote 3s infinite ease-in-out;
}

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

.ganga-index-quote::after {
  content: "”";
  position: absolute;
  bottom: 20%;
  right: 10%;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.2);
  animation: floatQuote 3s infinite ease-in-out reverse;
}

.ganga-index-quote-text {
  font-size: 2rem;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  border-left: 5px solid var(--golden-heritage);
  animation: fadeInQuote 2s ease, textGlowQuote 2s infinite alternate;
}

@keyframes textGlowQuote {
  0% {
    text-shadow: 0 0 5px var(--lotus-pink);
  }
  100% {
    text-shadow: 0 0 15px var(--lotus-pink);
  }
}

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

.ganga-index-how-it-works {
  padding: 3rem 0;
  background: repeating-linear-gradient(
    45deg,
    var(--pure-snow),
    var(--pure-snow) 10px,
    rgba(255, 111, 97, 0.1) 10px,
    rgba(255, 111, 97, 0.1) 20px
  );
  position: relative;
  overflow: hidden;
}

.ganga-index-how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 111, 97, 0.15), transparent);
  pointer-events: none;
  animation: pulseBg 10s infinite ease-in-out,
    colorShiftBg 5s infinite alternate;
}

@keyframes colorShiftBg {
  0% {
    background: radial-gradient(circle, rgba(255, 111, 97, 0.15), transparent);
  }
  100% {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  }
}

.ganga-index-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.ganga-index-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--sunset-orange),
    var(--golden-heritage)
  );
  box-shadow: 0 0 12px var(--golden-heritage);
}

.ganga-index-timeline-item {
  position: relative;
  margin: 3rem 0;
  padding-left: 4rem;
  text-align: left;
  opacity: 1;
  animation: fadeInLeft 1s ease-out forwards;
  border-radius: 1rem;
  background: rgba(240, 244, 248, 0.9);
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ganga-index-timeline-item:hover {
  background: rgba(240, 244, 248, 1);
  transform: translateY(-5px) skewX(2deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ganga-index-timeline-item:nth-child(even) {
  padding-left: 0;
  padding-right: 4rem;
  text-align: right;
  animation: fadeInRight 1s ease-out forwards;
}

.ganga-index-timeline-icon {
  top: -25px;
  position: absolute;
  left: calc(50% - 2rem);
  width: 4rem;
  height: 4rem;
  background: var(--sunset-orange);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pure-snow);
  font-size: 2rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
  @media (max-width: 550px) {
    top: -35px;
  }
}

.ganga-index-timeline-icon:hover {
  background: var(--lotus-pink);
  transform: scale(1.1) rotate(10deg);
}

.ganga-index-timeline-item:nth-child(even) .ganga-index-timeline-icon {
  left: auto;
  right: calc(50% - 2rem);
}

.ganga-index-timeline-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--deep-earth);
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.ganga-index-timeline-title:hover {
  color: var(--teal-depth);
  letter-spacing: 0.1rem;
}

.ganga-index-timeline-desc {
  font-size: 1.1rem;
  color: #333333;
}

.ganga-index-community {
  padding: 3rem 0;
  background-color: var(--ganga-river-blue);
  color: var(--pure-snow);
}

.ganga-index-community h2 {
  margin-bottom: 15px;
}

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

  @media (max-width: 550px) {
    grid-template-columns: 1fr;
  }
}

.ganga-index-member {
  text-align: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
  border: 1px solid transparent;
}

.ganga-index-member:hover {
  transform: translateY(-5px) scale(1.05) rotate(-1deg);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--lotus-pink);
}

.ganga-index-member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--golden-heritage);
  margin-bottom: 1rem;
  transition: border-color 0.3s ease, filter 0.3s ease;
}

.ganga-index-member:hover .ganga-index-member-avatar {
  border-color: var(--sunset-orange);
  filter: brightness(1.1);
}

.ganga-index-member-name {
  font-size: 1.25rem;
  font-weight: bold;
}

.ganga-index-member-bio {
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.ganga-index-seasonal {
  padding: 3rem 0;
  overflow: hidden;
  background: var(--pure-snow);
}

.ganga-index-seasonal h2 {
  margin-bottom: 15px;
}

.ganga-index-carousel {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  animation: slide 25s infinite linear, colorCarousel 4s infinite alternate;
  width: 100%;
}

@keyframes colorCarousel {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(15deg);
  }
}

.ganga-index-carousel-item {
  text-align: center;
  padding: 1rem;
  background: var(--pure-snow);
  border: 2px solid var(--golden-heritage);
  border-radius: 1rem;
  margin: 0 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.ganga-index-carousel-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05) rotate(3deg);
  border-color: var(--lotus-pink);
}

.ganga-index-carousel-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ganga-index-carousel-desc {
  font-size: 1rem;
}

.ganga-index-final {
  padding: 3rem 0;
  background-color: var(--sunset-orange);
  color: var(--pure-snow);
  text-align: center;
  position: relative;
}

.ganga-index-final::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 10"><path d="M0 5 Q 25 0, 50 5 T 100 5" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2"/></svg>')
    repeat-x;
  animation: waveMove 10s linear infinite, opacityWave 2s infinite alternate;
}

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

@keyframes waveMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 0;
  }
}

.ganga-index-final-text {
  font-size: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ganga-index-final-subtext {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.ganga-index-final-visual {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  background: url("img/bg-hot2.jpg") center/cover;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  animation: rotateVisual 20s linear infinite, pulseVisual 2s infinite,
    hueRotateVisual 10s infinite linear;
}

@keyframes hueRotateVisual {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@keyframes pulseVisual {
  0% {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 50px rgba(255, 175, 204, 0.5);
  }
  100% {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  }
}

.ganga-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Minimalist Hero */
.ganga-service-hero {
  background: linear-gradient(to bottom, var(--ganga-river-blue), #001f5f);
  padding: 3rem 0;
  text-align: center;
  color: var(--pure-snow);
  position: relative;
  overflow: hidden;
}

.ganga-service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: pulseBg 10s infinite ease-in-out, rippleHero 4s infinite ease;
}

@keyframes rippleHero {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.ganga-service-hero-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out, textWave 3s infinite ease-in-out;
}

.ganga-service-hero-cta {
  display: inline-block;
  background-color: var(--sunset-orange);
  color: var(--pure-snow);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ganga-service-hero-cta:hover {
  background-color: var(--golden-heritage);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* Services Matrix */
.ganga-service-matrix {
  padding: 3rem 0;
  background-color: var(--pure-snow);
}

.ganga-service-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ganga-service-matrix-item {
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.ganga-service-matrix-item:nth-child(1) {
  background-color: rgba(212, 175, 55, 0.1);
}
.ganga-service-matrix-item:nth-child(2) {
  background-color: rgba(42, 157, 143, 0.1);
}
.ganga-service-matrix-item:nth-child(3) {
  background-color: rgba(255, 111, 97, 0.1);
}
.ganga-service-matrix-item:nth-child(4) {
  background-color: rgba(0, 95, 115, 0.1);
}
.ganga-service-matrix-item:nth-child(5) {
  background-color: rgba(255, 175, 204, 0.1);
}
.ganga-service-matrix-item:nth-child(6) {
  background-color: rgba(10, 147, 150, 0.1);
}
.ganga-service-matrix-item:nth-child(7) {
  background-color: rgba(74, 44, 42, 0.1);
}
.ganga-service-matrix-item:nth-child(8) {
  background-color: rgba(255, 167, 7, 0.1);
}
.ganga-service-matrix-item:nth-child(9) {
  background-color: rgba(255, 175, 204, 0.1);
}

.ganga-service-matrix-item:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.25);
}

.ganga-service-matrix-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.ganga-service-matrix-desc {
  font-size: 1rem;
}

/* Case Studies with Tabs */
.ganga-service-case-studies {
  padding: 3rem 0;
  background: linear-gradient(to bottom, var(--pure-snow), var(--lush-jungle));
}

.ganga-service-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ganga-service-tab {
  padding: 0.75rem 1.5rem;
  background-color: var(--ganga-river-blue);
  color: var(--pure-snow);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ganga-service-tab.active,
.ganga-service-tab:hover {
  background-color: var(--golden-heritage);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.ganga-service-tab-content {
  display: none;
  padding: 1rem;
  background-color: var(--pure-snow);
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ganga-service-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease, scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
  }
  to {
    transform: scale(1);
  }
}

/* Comparison Table */
.ganga-service-comparison {
  padding: 3rem 0;
  background-color: var(--ganga-river-blue);
  color: var(--pure-snow);
}

.ganga-service-comparison-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ganga-service-package {
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.ganga-service-package:hover {
  transform: translateY(-10px) skewX(3deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.ganga-service-package.popular {
  background: linear-gradient(
    to bottom,
    var(--sunset-orange),
    var(--golden-heritage)
  );
}

.ganga-service-package-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.ganga-service-package-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.ganga-service-package-item {
  margin-bottom: 0.75rem;
}

/* Results Gallery with Slider */
.ganga-service-results {
  padding: 3rem 0;
  background-color: var(--pure-snow);
  overflow: hidden;
}

.ganga-service-slider {
  display: flex;
  animation: slideResults 20s infinite linear;
  width: 200%;
}

.ganga-service-slider-item {
  flex: 0 0 50%;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.ganga-service-before-after {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.ganga-service-before-after img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ganga-service-before-after:hover img {
  transform: scale(1.1) rotate(2deg);
}

.ganga-service-before-after::before {
  content: "Before";
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--sunset-orange);
  color: var(--pure-snow);
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.ganga-service-before-after.after::before {
  content: "After";
  background: var(--lush-jungle);
}

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

/* FAQ Accordion */
.ganga-service-faq {
  padding: 3rem 0;
  background: linear-gradient(to bottom, var(--pure-snow), var(--teal-depth));
}

.ganga-service-faq-item {
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ganga-service-faq-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateX(5px);
}

.ganga-service-faq-question {
  padding: 0.5rem;
  background-color: var(--ganga-river-blue);
  color: var(--pure-snow);
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.ganga-service-faq-question:hover {
  background-color: var(--sunset-orange);
}

.ganga-service-faq-answer {
  display: none;
  padding: 0.5rem;
  background-color: var(--pure-snow);
}

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

@keyframes slideDown {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: auto;
    opacity: 1;
  }
}

/* Work Process Timeline */
.ganga-service-process {
  padding: 3rem 0;
  background-color: var(--lush-jungle);
  color: var(--pure-snow);
}

.ganga-service-process-timeline {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding-bottom: 1rem;
}

.ganga-service-process-item {
  flex: 0 0 200px;
  text-align: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.ganga-service-process-item:hover {
  transform: translateY(-10px) skewY(2deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.ganga-service-process-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  animation: bounceIcon 1.5s infinite, spinIcon 2s infinite linear;
}

@keyframes spinIcon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ganga-service-process-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Testimonials Grid */
.ganga-service-testimonials {
  padding: 3rem 0;
  background-color: var(--ganga-river-blue);
}

.ganga-service-testimonials h2 {
  color: #fff;
}

.ganga-service-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.ganga-service-testimonial {
  padding: 1rem;
  background: var(--pure-snow);
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ganga-service-testimonial:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.ganga-service-testimonial-stars {
  color: var(--golden-heritage);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ganga-service-testimonial-text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.ganga-service-testimonial-author {
  font-weight: bold;
}

/* Guarantees Section */
.ganga-service-guarantees {
  padding: 3rem 0;
  background: linear-gradient(
    to bottom,
    var(--ganga-river-blue),
    var(--sunset-orange)
  );
  color: var(--pure-snow);
}

.ganga-service-guarantees h2 {
  color: #fff;
}

.ganga-service-guarantees p {
  color: #fff;
}

.ganga-service-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.ganga-service-guarantee {
  text-align: center;
  padding: 1rem;
  opacity: 1;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: calc(0.2s * var(--i));
}

.ganga-service-guarantee1 {
  --i: 1;
}
.ganga-service-guarantee2 {
  --i: 2;
}
.ganga-service-guarantee3 {
  --i: 3;
}
.ganga-service-guarantee4 {
  --i: 4;
}

.ganga-service-guarantee-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: pulseIcon 2s infinite, colorShiftIcon 4s infinite alternate;
}

@keyframes colorShiftIcon {
  0% {
    color: var(--lotus-pink);
  }
  100% {
    color: var(--teal-depth);
  }
}

.ganga-service-guarantee-title {
  font-size: 1.25rem;
  color: #fff;
  font-weight: bold;
}

/* Final Call to Action */
.ganga-service-final {
  padding: 3rem 0;
  background-color: var(--sunset-orange);
  color: var(--pure-snow);
  text-align: center;
  position: relative;
}

.ganga-service-final::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 10"><path d="M0 5 Q 25 0, 50 5 T 100 5" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2"/></svg>')
    repeat-x;
  animation: waveMove 10s linear infinite;
}

@keyframes waveMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 0;
  }
}

.ganga-service-final-text {
  font-size: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ganga-service-final-cta {
  display: inline-block;
  background-color: var(--golden-heritage);
  color: var(--deep-earth);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.ganga-service-final-cta:hover {
  background-color: var(--lush-jungle);
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ganga-service-hero-title {
    font-size: 1.5rem;
  }
  .ganga-service-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ganga-service-comparison-table {
    grid-template-columns: 1fr;
  }
  .ganga-service-slider-item {
    flex-direction: column;
  }
  .ganga-service-before-after img {
    height: 200px;
  }
  .ganga-service-tabs {
    flex-wrap: wrap;
  }
  .ganga-service-process-timeline {
    flex-direction: column;
    align-items: center;
  }
  .ganga-service-process-item {
    flex: 0 0 auto;
    width: 80%;
  }
  .ganga-service-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .ganga-service-guarantees-grid {
    grid-template-columns: 1fr;
  }
}

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

:root {
  --ganga-indigo: #2c3e50;
  --saffron-flame: #f39c12;
  --lotus-blush: #ff85a2;
  --river-teal: #00b6b6;
  --sandalwood-cream: #fdf6e3;
  --cardamom-brown: #4a2c2a;
  --mango-sunset: #e67e22;
  --cinnamon-glow: #d35400;
}

.ganga-about-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--sandalwood-cream);
  overflow: hidden;
  background-image: url("img/bg-hot3.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.ganga-about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.7);
  animation: subtleZoom 20s infinite alternate, rippleAbout 6s infinite ease;
}

@keyframes rippleAbout {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2) blur(2px);
  }
  100% {
    filter: brightness(1);
  }
}

.ganga-about-hero-content {
  position: relative;
  z-index: 1;
  padding: 1rem;
  background: rgba(44, 62, 80, 0.7);
  border-radius: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.ganga-about-hero-content:hover {
  background: rgba(44, 62, 80, 0.85);
  transform: scale(1.02);
}

.ganga-about-hero-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: glowText 2s infinite alternate, waveTextAbout 4s infinite ease;
}

@keyframes waveTextAbout {
  0% {
    letter-spacing: 0;
  }
  50% {
    letter-spacing: 0.1rem;
  }
  100% {
    letter-spacing: 0;
  }
}

@keyframes glowText {
  0% {
    text-shadow: 0 0 5px var(--lotus-blush);
  }
  100% {
    text-shadow: 0 0 15px var(--lotus-blush);
  }
}

.ganga-about-hero-subtitle {
  font-size: 1.75rem;
}

.ganga-about-history {
  padding: 3rem 0;
  background: linear-gradient(
    to bottom,
    var(--sandalwood-cream),
    var(--river-teal)
  );
}

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

.ganga-about-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--saffron-flame),
    var(--mango-sunset)
  );
  box-shadow: 0 0 12px var(--mango-sunset);
}

.ganga-about-timeline-item {
  position: relative;
  margin: 3rem 0;
  padding-left: 4rem;
  text-align: left;
  opacity: 1;
  animation: fadeInLeft 1s ease-out forwards;
  background: rgba(253, 246, 227, 0.9);
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.ganga-about-timeline-item:hover {
  transform: translateY(-5px) skewX(3deg);
  background: var(--sandalwood-cream);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ganga-about-timeline-item:nth-child(even) {
  padding-left: 0;
  padding-right: 4rem;
  text-align: right;
  animation: fadeInRight 1s ease-out forwards;
}

.ganga-about-timeline-icon {
  top: -25px;
  position: absolute;
  left: calc(50% - 2rem);
  width: 4rem;
  height: 4rem;
  background: var(--saffron-flame);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--sandalwood-cream);
  font-size: 1.5rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.ganga-about-timeline-icon:hover {
  background: var(--mango-sunset);
  transform: scale(1.1) rotate(8deg);
}

.ganga-about-timeline-item:nth-child(even) .ganga-about-timeline-icon {
  left: auto;
  right: calc(50% - 2rem);
}

.ganga-about-timeline-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--cardamom-brown);
}

.ganga-about-timeline-desc {
  font-size: 1.1rem;
}

.ganga-about-team {
  padding: 3rem 0;
  background-color: var(--mango-sunset);
  color: var(--cardamom-brown);
}

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

.ganga-about-team-member {
  text-align: center;
  padding: 1rem;
  background: rgba(253, 246, 227, 0.9);
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.ganga-about-team-member:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: rgba(253, 246, 227, 1);
}

.ganga-about-team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--lotus-blush);
  margin-bottom: 1rem;
  transition: border-color 0.3s ease, filter 0.3s ease;
}

.ganga-about-team-member:hover .ganga-about-team-avatar {
  border-color: var(--saffron-flame);
  filter: sepia(0.3);
}

.ganga-about-team-name {
  font-size: 1.25rem;
  font-weight: bold;
}

.ganga-about-team-role {
  font-size: 1rem;
  color: var(--cardamom-brown);
}

.ganga-about-values {
  padding: 3rem 0;
  background: linear-gradient(
    to bottom,
    var(--river-teal),
    var(--sandalwood-cream)
  );
}

.ganga-about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.ganga-about-value {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.ganga-about-value1 {
  --percentage: 90%;
}
.ganga-about-value2 {
  --percentage: 85%;
}
.ganga-about-value3 {
  --percentage: 95%;
}
.ganga-about-value4 {
  --percentage: 80%;
}

.ganga-about-value-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  background: conic-gradient(
    var(--saffron-flame) var(--percentage),
    var(--ganga-indigo) 0
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sandalwood-cream);
  font-size: 1.5rem;
  font-weight: bold;
}

.ganga-about-value-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.ganga-about-awards {
  padding: 3rem 0;
  background-color: var(--ganga-indigo);
  color: var(--sandalwood-cream);
}

.ganga-about-awards-shelf {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.ganga-about-award {
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  background: rgba(243, 156, 18, 0.1);
  border-radius: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.ganga-about-award:hover {
  transform: translateY(-5px) skewY(1deg);
  background: rgba(243, 156, 18, 0.2);
}

.ganga-about-award-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 1rem;
  animation: pulseAward 2s infinite, hueShiftAward 5s infinite alternate;
}

@keyframes hueShiftAward {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(20deg);
  }
}

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

.ganga-about-award-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.ganga-about-ecosystem {
  padding: 3rem 0;
  background: linear-gradient(
    to bottom,
    var(--sandalwood-cream),
    var(--mango-sunset)
  );
}

.ganga-about-ecosystem-diagram {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ganga-about-ecosystem-node {
  position: absolute;
  width: 120px;
  text-align: center;
  padding: 1rem;
  background: var(--saffron-flame);
  color: var(--sandalwood-cream);
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  @media (max-width: 768px) {
    width: 100%;
  }
}

.ganga-about-ecosystem-node:hover {
  transform: scale(1.1) rotate(-3deg);
  background: var(--mango-sunset);
}

.ganga-about-ecosystem-node:nth-child(1) {
  top: 50px;
}
.ganga-about-ecosystem-node:nth-child(2) {
  bottom: 50px;
}
.ganga-about-ecosystem-node:nth-child(3) {
  left: 50px;
}
.ganga-about-ecosystem-node:nth-child(4) {
  right: 50px;
}

.ganga-about-mission {
  padding: 3rem 0;
  background-color: var(--lotus-blush);
  color: var(--sandalwood-cream);
  text-align: center;
}

.ganga-about-mission-text {
  font-size: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
}

.ganga-about-mission-text span {
  color: var(--saffron-flame);
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ganga-about-gallery {
  padding: 3rem 0;
  background-color: var(--river-teal);
}

.ganga-about-gallery-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.ganga-about-gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
}

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

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

.ganga-about-metrics {
  padding: 3rem 0;
  background: linear-gradient(
    to bottom,
    var(--ganga-indigo),
    var(--saffron-flame)
  );
  color: var(--sandalwood-cream);
}

.ganga-about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.ganga-about-metric {
  text-align: center;
  padding: 1rem;
}

.ganga-about-metric-number {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  animation: countUp 2.5s ease-out forwards;
}

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

.ganga-about-metric-bar {
  height: 8px;
  background: linear-gradient(
    to right,
    var(--lotus-blush),
    var(--mango-sunset)
  );
  margin: 1rem 0;
  width: 0;
  animation: barFill 2.5s ease-out forwards;
}

@keyframes barFill {
  to {
    width: 100%;
  }
}

.ganga-about-metric-desc {
  font-size: 1.1rem;
}

.ganga-about-final {
  padding: 3rem 0;
  background-color: var(--cinnamon-glow);
  color: var(--sandalwood-cream);
  text-align: center;
  position: relative;
}

.ganga-about-final::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 10"><path d="M0 5 Q 25 0, 50 5 T 100 5" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2"/></svg>')
    repeat-x;
  animation: waveMove 10s linear infinite;
}

@keyframes waveMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 0;
  }
}

.ganga-about-final-text {
  font-size: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .ganga-about-hero-title {
    font-size: 1.5rem;
  }
  .ganga-about-hero-subtitle {
    font-size: 1.5rem;
  }
  .ganga-about-timeline::before {
    left: 2rem;
  }
  .ganga-about-timeline-item {
    padding-left: 5rem;
    text-align: left;
  }
  .ganga-about-timeline-item:nth-child(even) {
    padding-right: 0;
  }
  .ganga-about-timeline-icon {
    left: 0;
  }
  .ganga-about-timeline-item:nth-child(even) .ganga-about-timeline-icon {
    right: auto;
  }
  .ganga-about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ganga-about-values-grid {
    grid-template-columns: 1fr;
  }
  .ganga-about-gallery-grid {
    column-count: 2;
  }
  .ganga-about-metrics-grid {
    grid-template-columns: 1fr;
  }
  .ganga-about-ecosystem-diagram {
    height: auto;
    flex-direction: column;
    padding: 2rem 0;
  }
  .ganga-about-ecosystem-node {
    position: static;
    margin: 1rem auto;
  }
}

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

:root {
  --ganga-river-blue: #0a4d68;
  --spice-curry-orange: #f94c10;
  --heritage-saffron: #ff9100;
  --lush-mint-green: #4caf50;
  --pure-lotus-white: #ffffff;
  --deep-clove-brown: #3e2723;
}

.ganga-contact-hero {
  position: relative;
  height: 60vh;
  background-image: url("img/bg-hot4.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--pure-lotus-white);
  overflow: hidden;
}

.ganga-contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 77, 104, 0.6);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.ganga-contact-hero:hover::before {
  opacity: 0.8;
  filter: brightness(1.1);
}

.ganga-contact-hero-title {
  font-size: 2rem;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1.2s ease-out, glowHero 2s infinite alternate;
}

@keyframes glowHero {
  0% {
    text-shadow: 0 0 5px var(--heritage-saffron);
  }
  100% {
    text-shadow: 0 0 15px var(--heritage-saffron);
  }
}

.ganga-contact-map {
  padding: 3rem 0;
  background-color: var(--lush-mint-green);
  text-align: center;
}

.ganga-contact-map h2 {
  margin-bottom: 15px;
  margin-top: 0;
}

.ganga-contact-map-iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  margin-bottom: 10px;
}

.ganga-contact-map-iframe:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transform: scale(1.02);
}

.ganga-contact-facts {
  padding: 3rem 0;
  background: linear-gradient(
    to bottom,
    var(--pure-lotus-white),
    var(--lush-mint-green)
  );
}

.ganga-contact-facts h2 {
  margin-bottom: 10px;
}

.ganga-contact-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 20px;
}

.ganga-contact-fact-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.ganga-contact-fact-item:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1);
}

.ganga-contact-fact-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--spice-curry-orange);
  margin-bottom: 1rem;
  animation: pulseNumber 2s infinite ease-in-out,
    colorShiftFact 4s infinite alternate;
}

@keyframes colorShiftFact {
  0% {
    color: var(--spice-curry-orange);
  }
  100% {
    color: var(--heritage-saffron);
  }
}

.ganga-contact-fact-desc {
  font-size: 1.1rem;
}

.ganga-contact-details {
  padding: 3rem 0;
  background-color: var(--ganga-river-blue);
  color: var(--pure-lotus-white);
  text-align: center;
}

.ganga-contact-details h2 {
  margin-bottom: 10px;
}

.ganga-contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 15px;
}

.ganga-contact-detail-item {
  padding: 0.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.ganga-contact-detail-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.ganga-contact-detail-link {
  color: var(--heritage-saffron);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.ganga-contact-detail-link:hover {
  color: var(--spice-curry-orange);
}

.ganga-contact-quote {
  padding: 3rem 0;
  background: linear-gradient(
    to bottom,
    var(--lush-mint-green),
    var(--pure-lotus-white)
  );
  text-align: center;
}

.ganga-contact-quote-text {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  color: var(--deep-clove-brown);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  animation: fadeInQuote 1.5s ease-out, waveQuote 3s infinite ease-in-out;
}

@keyframes waveQuote {
  0% {
    transform: skewX(0deg);
  }
  50% {
    transform: skewX(-2deg);
  }
  100% {
    transform: skewX(0deg);
  }
}

.ganga-contact-faq {
  padding: 3rem 0;
  background-color: var(--pure-lotus-white);
}

.ganga-contact-faq h2 {
  margin-bottom: 10px;
}

.ganga-contact-faq-item {
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ganga-contact-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.ganga-contact-faq-question {
  padding: 0.5rem;
  background-color: var(--ganga-river-blue);
  color: var(--pure-lotus-white);
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.ganga-contact-faq-question:hover {
  background-color: var(--spice-curry-orange);
}

.ganga-contact-faq-answer {
  display: none;
  padding: 0.5rem;
  background-color: var(--pure-lotus-white);
}

.ganga-contact-faq-answer.active {
  display: block;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: auto;
    opacity: 1;
  }
}

.ganga-contact-closing {
  position: relative;
  padding: 3rem 0;
  background-image: url("img/bg-hot5.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--pure-lotus-white);
  overflow: hidden;
}

.ganga-contact-closing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 77, 104, 0.7);
}

.ganga-contact-closing-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.ganga-contact-closing-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out, pulseTitle 2s infinite alternate;
}

@keyframes pulseTitle {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.02);
  }
}

.ganga-contact-closing-cta {
  display: inline-block;
  background-color: var(--spice-curry-orange);
  color: var(--pure-lotus-white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.ganga-contact-closing-cta:hover {
  background-color: var(--heritage-saffron);
  transform: scale(1.05);
}

.ganga-contact-form {
  max-width: 600px;
  margin: 0 auto 2rem;
  padding: 1rem;
  background: var(--pure-lotus-white);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ganga-contact-form-field {
  margin-bottom: 1.5rem;
}

.ganga-contact-form-label {
  color: #001f5f;
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.ganga-contact-form-input,
.ganga-contact-form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--lush-mint-green);
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
  color: #000;
}

.ganga-contact-form-input:focus,
.ganga-contact-form-textarea:focus {
  border-color: var(--spice-curry-orange);
}

.ganga-contact-form-checkbox {
  color: #000;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.ganga-contact-form-checkbox-input {
  margin-right: 0.75rem;
}

.ganga-contact-form-checkbox-label {
  font-size: 0.9rem;
}

.ganga-contact-form-checkbox-link {
  color: var(--spice-curry-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ganga-contact-form-checkbox-link:hover {
  color: var(--heritage-saffron);
}

.ganga-contact-form-button {
  background-color: var(--spice-curry-orange);
  color: var(--pure-lotus-white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: block;
  width: 100%;
}

.ganga-contact-form-button:hover {
  background-color: var(--heritage-saffron);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .ganga-contact-hero-title {
    font-size: 1.5rem;
  }
  .ganga-contact-map-iframe {
    height: 300px;
  }
  .ganga-contact-facts-grid {
    grid-template-columns: 1fr;
  }
  .ganga-contact-details-grid {
    grid-template-columns: 1fr;
  }
  .ganga-contact-quote-text {
    font-size: 2rem;
  }
  .ganga-contact-closing-title {
    font-size: 2rem;
  }
}

:root {
  --ganga-thanks-turmeric: #f4d03f; /* Vibrant turmeric yellow */
  --ganga-thanks-crimson: #c0392b; /* Deep crimson spice */
  --ganga-thanks-mint: #2ecc71; /* Fresh mint green */
  --ganga-thanks-amber: #e67e22; /* Warm amber glow */
  --ganga-thanks-cream: #fff5e6; /* Soft cream backdrop */
  --ganga-thanks-charcoal: #2d1b12; /* Rich charcoal brown */
}

.ganga-thanks-container {
  margin: 30px auto;
  max-width: 700px;
  text-align: center;
  padding: 3rem;
  background: var(--ganga-thanks-cream);
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: popIn 0.8s ease-out, colorShiftThanks 5s infinite alternate;
}

@keyframes colorShiftThanks {
  0% {
    background: var(--ganga-thanks-cream);
  }
  100% {
    background: linear-gradient(
      to bottom,
      var(--ganga-thanks-cream),
      var(--ganga-thanks-mint)
    );
  }
}

.ganga-thanks-heading {
  font-size: 1.5rem;
  color: var(--ganga-thanks-crimson);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ganga-thanks-message {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.ganga-thanks-home-btn {
  display: inline-block;
  background: var(--ganga-thanks-turmeric);
  color: var(--ganga-thanks-charcoal);
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ganga-thanks-home-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.4s ease;
}

.ganga-thanks-home-btn:hover::before {
  left: 100%;
}

.ganga-thanks-home-btn:hover {
  background: var(--ganga-thanks-amber);
  transform: translateY(-5px) rotate(2deg);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 768px) {
  .ganga-thanks-heading {
    font-size: 1.5rem;
  }
  .ganga-thanks-message {
    font-size: 1.1rem;
  }
  .ganga-thanks-container {
    padding: 2rem;
  }
}

.ganga-privacy-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3c5e;
  text-align: center;
  margin: 2rem 0;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.ganga-privacy-content {
  background: linear-gradient(180deg, #f4f7fa 0%, #ffffff 100%);
  padding: 3rem 0;
}

.ganga-privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ganga-privacy-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2a4d7a;
  margin: 2rem 0 1rem;
  border-left: 4px solid #4a90e2;
  padding-left: 1rem;
}

.ganga-privacy-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.ganga-privacy-text a {
  color: #4a90e2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ganga-privacy-text a:hover {
  color: #2a4d7a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ganga-privacy-hero-title {
    font-size: 2rem;
  }

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

  .ganga-privacy-text {
    font-size: 1rem;
  }
}

.ganga-terms-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3c5e;
  text-align: center;
  margin: 2rem 0;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.ganga-terms-content {
  background: linear-gradient(180deg, #f4f7fa 0%, #ffffff 100%);
  padding: 3rem 0;
}

.ganga-terms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ganga-terms-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2a4d7a;
  margin: 2rem 0 1rem;
  border-left: 4px solid #4a90e2;
  padding-left: 1rem;
}

.ganga-terms-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.ganga-terms-text a {
  color: #4a90e2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ganga-terms-text a:hover {
  color: #2a4d7a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ganga-terms-hero-title {
    font-size: 2rem;
  }

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

  .ganga-terms-text {
    font-size: 1rem;
  }
}

:root {
  --ganga-deep-teal: #0d4d4a; /* Rich, flowing teal for depth and heritage */
  --saffron-spark: #ff8c00; /* Vibrant saffron for warmth and energy */
  --lotus-blush: #ff9999; /* Soft lotus pink for elegance and charm */
  --emerald-glow: #2ecc71; /* Lush emerald for freshness and vitality */
  --ivory-dawn: #f8edeb; /* Subtle ivory for a clean, refined backdrop */
  --clove-shadow: #3c2005; /* Deep clove for grounded sophistication */
}

.ganga-index-footer {
  background: linear-gradient(
    to top,
    var(--ganga-deep-teal),
    var(--emerald-glow)
  );
  color: var(--ivory-dawn);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.ganga-index-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top left,
    rgba(255, 140, 0, 0.2),
    transparent
  );
  animation: pulseGlow 8s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

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

.ganga-index-footer-section {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.ganga-index-footer-section:hover {
  transform: translateY(-8px) rotate(1deg);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ganga-index-footer-section h3 {
  font-size: 1.5rem;
  color: var(--saffron-spark);
  margin-bottom: 1.5rem;
  position: relative;
  animation: textGlow 2s infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 5px var(--lotus-blush);
  }
  100% {
    text-shadow: 0 0 15px var(--lotus-blush);
  }
}

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

.ganga-index-footer-link {
  color: var(--ivory-dawn);
  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;
}

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

.ganga-index-footer-link:hover {
  color: var(--saffron-spark);
  padding-left: 0.5rem;
  transform: skewX(-5deg);
}

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

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

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

.ganga-index-footer-contact-item:hover {
  color: var(--lotus-blush);
}

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

@keyframes bounceIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

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

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

.ganga-index-footer-policies .ganga-index-footer-link {
  font-size: 1rem;
  color: var(--lotus-blush);
  transition: color 0.3s ease, transform 0.3s ease;
}

.ganga-index-footer-policies .ganga-index-footer-link:hover {
  color: var(--emerald-glow);
  transform: scale(1.1);
}

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

.ganga-index-footer-copyright::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 100px;
  height: 2px;
  background: var(--saffron-spark);
  transform: translateX(-50%);
  animation: shimmerLine 3s infinite linear;
}

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

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

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

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

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

  .ganga-index-footer-policies {
    flex-direction: column;
    gap: 1rem;
  }
}
