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-deep-blue: #003c8f;
  --spice-vibrant-orange: #ff5722;
  --heritage-gold: #ffd700;
  --lush-green: #4caf50;
  --pure-white: #ffffff;
  --deep-text: #333333;
}

.ganga-index-header {
  background-color: var(--ganga-deep-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;
}

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

.ganga-index-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--spice-vibrant-orange);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.ganga-index-logo:hover {
  color: var(--heritage-gold);
  transform: scale(1.05);
}

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

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

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

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

.ganga-index-menu-link:hover {
  color: var(--heritage-gold);
  padding-left: 0.5rem;
}

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

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

@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-deep-blue);
    padding: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease;
  }

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

  .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-white);
  @media (max-width: 550px) {
    height: 100vh;
  }
}

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

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

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

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

.ganga-index-hero-content:hover {
  background: rgba(30, 64, 175, 0.8);
}

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

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

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

.ganga-index-hero-cta {
  display: inline-block;
  background-color: var(--spice-vibrant-orange);
  color: var(--pure-white);
  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;
}

.ganga-index-hero-cta:hover {
  background-color: var(--heritage-gold);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

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

.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.1), transparent);
  pointer-events: none;
}

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

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

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

@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-white),
    rgba(76, 175, 80, 0.1)
  );
}

.ganga-index-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1.5rem;
}

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

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

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

.ganga-index-gallery-item:hover .ganga-index-gallery-img {
  transform: scale(1.15);
  filter: brightness(1.1) contrast(1.1);
}

.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-white);
  padding: 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.ganga-index-gallery-item:hover .ganga-index-gallery-caption {
  transform: translateY(0);
}

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

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

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

.ganga-index-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

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

.ganga-index-stat-item:hover {
  border-color: var(--spice-vibrant-orange);
}

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

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

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

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

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

.ganga-index-influence-container {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

@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-text);
  background: var(--pure-white);
  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;
}

.ganga-index-influence-area:hover {
  transform: scale(1.1) rotate(5deg);
  background: var(--lush-green);
  color: var(--pure-white);
}

.ganga-index-influence-area:nth-child(1) {
  top: -60px;
  left: 120px;
}
.ganga-index-influence-area:nth-child(2) {
  bottom: -60px;
  left: 220px;
}
.ganga-index-influence-area:nth-child(3) {
  left: 60px;
  top: 120px;
}
.ganga-index-influence-area:nth-child(4) {
  right: 160px;
  top: 120px;
}
.ganga-index-influence-area:nth-child(5) {
  top: 0;
  left: 150px;
}
.ganga-index-influence-area:nth-child(6) {
  bottom: 50px;
  right: 250px;
}
.ganga-index-influence-area:nth-child(7) {
  bottom: 400px;
  right: 200px;
}

.ganga-index-quote {
  padding: 3rem 0;
  background-color: var(--lush-green);
  color: var(--pure-white);
  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);
}

.ganga-index-quote::after {
  content: "”";
  position: absolute;
  bottom: 20%;
  right: 10%;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.2);
}

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

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

.ganga-index-how-it-works {
  padding: 3rem 0;
  background: repeating-linear-gradient(
    45deg,
    #ffffff,
    #ffffff 10px,
    rgba(139, 69, 19, 0.1) 10px,
    rgba(139, 69, 19, 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, 69, 0, 0.1), transparent);
  pointer-events: none;
  animation: pulseBg 10s infinite ease-in-out;
}

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

.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, #ff4500, #ffa500);
  box-shadow: 0 0 12px #ffa500;
}

.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(255, 245, 238, 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(255, 245, 238, 1);
  transform: translateY(-5px);
  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: #ff4500;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 2rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.ganga-index-timeline-icon:hover {
  background: #ffa500;
  transform: scale(1.1);
}

.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: #8b4513;
  transition: color 0.3s ease;
}

.ganga-index-timeline-title:hover {
  color: #ff4500;
}

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

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

.ganga-index-community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

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

.ganga-index-member:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

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

.ganga-index-member:hover .ganga-index-member-avatar {
  border-color: var(--spice-vibrant-orange);
}

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

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

.ganga-index-carousel-item {
  text-align: center;
  padding: 1rem;
  background: var(--pure-white);
  border: 2px solid var(--heritage-gold);
  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;
}

.ganga-index-carousel-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.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(--spice-vibrant-orange);
  color: var(--pure-white);
  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;
}

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

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

.ganga-index-footer {
  background-color: var(--ganga-deep-blue);
  padding: 4rem 0 2rem;
  color: var(--pure-white);
  position: relative;
}

.ganga-index-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--spice-vibrant-orange),
    var(--heritage-gold)
  );
}

.ganga-index-footer-grid {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  @media (max-width: 550px) {
    grid-template-columns: 1fr;
  }
}

.ganga-index-footer-section {
  padding: 1rem;
  transition: transform 0.3s ease;
}

.ganga-index-footer-section:hover {
  transform: translateY(-5px);
}

.ganga-index-footer-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ganga-index-footer-link {
  color: var(--pure-white);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.ganga-index-footer-link:hover {
  color: var(--heritage-gold);
  padding-left: 0.5rem;
}

.ganga-index-footer-contacts {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ganga-index-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.3s ease;
}

.ganga-index-footer-contact-item:hover {
  color: var(--spice-vibrant-orange);
}

.ganga-index-footer-contact-icon {
  font-size: 1.25rem;
}

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

.ganga-index-footer-newsletter-input {
  padding: 0.75rem;
  border: 1px solid var(--heritage-gold);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--pure-white);
  transition: border-color 0.3s ease;
}

.ganga-index-footer-newsletter-input:focus {
  border-color: var(--spice-vibrant-orange);
}

.ganga-index-footer-newsletter-button {
  background-color: var(--spice-vibrant-orange);
  color: var(--pure-white);
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.ganga-index-footer-newsletter-button:hover {
  background-color: var(--heritage-gold);
  transform: scale(1.05);
}

.ganga-index-footer-map {
  height: 200px;
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.ganga-index-footer-map:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.ganga-index-footer-policies {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.ganga-index-footer-copyright {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid var(--heritage-gold);
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .ganga-index-hero-title {
    font-size: 2rem;
  }
  .ganga-index-hero-subtitle {
    font-size: 1.5rem;
  }
  .ganga-index-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .ganga-index-gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .ganga-index-gallery-item:nth-child(3) {
    grid-row: span 1;
  }
  .ganga-index-timeline::before {
    left: 2rem;
  }
  .ganga-index-timeline-item {
    padding-left: 5rem;
    text-align: left;
  }
  .ganga-index-timeline-item:nth-child(even) {
    padding-right: 0;
  }
  .ganga-index-timeline-icon {
    left: 0;
  }
  .ganga-index-timeline-item:nth-child(even) .ganga-index-timeline-icon {
    right: auto;
  }
  .ganga-index-influence-container {
    height: auto;
    flex-direction: column;
    padding: 2rem 0;
  }
  .ganga-index-influence-area {
    position: static;
    margin: 0.5rem auto;
    width: 100%;
  }
  .ganga-index-community-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ganga-index-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ganga-index-quick-grid {
    grid-template-columns: 1fr;
  }
  .ganga-index-stats-grid {
    grid-template-columns: 1fr;
  }
  .ganga-index-community-grid {
    grid-template-columns: 1fr;
  }
  .ganga-index-footer-policies {
    flex-direction: column;
    gap: 1rem;
  }
}

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

/* Minimalist Hero */
.ganga-service-hero {
  background: linear-gradient(to bottom, var(--ganga-deep-blue), #001f5f);
  padding: 3rem 0;
  text-align: center;
  color: var(--pure-white);
  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;
}

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

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

.ganga-service-hero-cta {
  display: inline-block;
  background-color: var(--spice-vibrant-orange);
  color: var(--pure-white);
  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(--heritage-gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.5);
}

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

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

.ganga-service-matrix-item:nth-child(1) {
  background-color: #ff63471a;
}
.ganga-service-matrix-item:nth-child(2) {
  background-color: #4caf501a;
}
.ganga-service-matrix-item:nth-child(3) {
  background-color: #ffa5001a;
}
.ganga-service-matrix-item:nth-child(4) {
  background-color: #003c8f1a;
}
.ganga-service-matrix-item:nth-child(5) {
  background-color: #ff45001a;
}
.ganga-service-matrix-item:nth-child(6) {
  background-color: #ffc1071a;
}
.ganga-service-matrix-item:nth-child(7) {
  background-color: #8b45131a;
}
.ganga-service-matrix-item:nth-child(8) {
  background-color: #6a5acd1a;
}
.ganga-service-matrix-item:nth-child(9) {
  background-color: #ff69b41a;
}

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

.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-white), var(--lush-green));
}

.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-deep-blue);
  color: var(--pure-white);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.ganga-service-tab.active,
.ganga-service-tab:hover {
  background-color: var(--heritage-gold);
  transform: scale(1.05);
}

.ganga-service-tab-content {
  display: none;
  padding: 1rem;
  background-color: var(--cardamom-cream);
  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;
}

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

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

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

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

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

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

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

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

@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-white),
    var(--turmeric-yellow)
  );
}

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

.ganga-service-faq-question {
  padding: 0.5rem;
  background-color: var(--ganga-deep-blue);
  color: var(--pure-white);
  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(--heritage-gold);
}

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

.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-green);
  color: var(--pure-white);
}

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

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

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

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

.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-deep-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-white);
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.ganga-service-testimonial:hover {
  transform: translateY(-5px);
}

.ganga-service-testimonial-stars {
  color: var(--heritage-gold);
  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-deep-blue),
    var(--saffron-red)
  );
  color: var(--pure-white);
}

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

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

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

@keyframes pulseIcon {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

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

/* Final Call to Action */
.ganga-service-final {
  padding: 3rem 0;
  background-color: var(--spice-vibrant-orange);
  color: var(--pure-white);
  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(--heritage-gold);
  color: var(--deep-text);
  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-green);
  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: #00a896;
  --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-food3.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;
}

@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.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;
}

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

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

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

.ganga-about-timeline-item:hover {
  transform: translateY(-5px);
  background: var(--sandalwood-cream);
}

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

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

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

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

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

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

.ganga-about-award:hover {
  transform: translateY(-5px);
}

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

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

.ganga-about-ecosystem-node:hover {
  transform: scale(1.1);
  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);
}

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

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--pure-lotus-white);
  color: var(--deep-clove-brown);
  line-height: 1.6;
}

.ganga-contact-hero {
  position: relative;
  height: 60vh;
  background-image: url("img/bg-food4.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;
}

.ganga-contact-hero:hover::before {
  opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

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

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

.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-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

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

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

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

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

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

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

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

.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-deep-blue: #1e3a8a; /* Rich Ganges-inspired blue */
  --saffron-glow: #f59e0b; /* Warm saffron hue */
  --lotus-blush: #f9a8d4; /* Gentle lotus pink */
  --teal-flow: #06b6d4; /* Vibrant river teal */
  --sandal-cream: #fef3c7; /* Soft sandalwood cream */
  --clove-rich: #2a160e; /* Deep clove brown */
}

.ganga-privacy-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--sandal-cream);
  border-radius: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ganga-privacy-title {
  font-size: 1.5rem;
  color: var(--ganga-deep-blue);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  animation: fadeInTitle 1s ease-out;
}

.ganga-privacy-section-title {
  font-size: 1rem;
  color: var(--saffron-glow);
  margin: 2rem 0 1.2rem;
  position: relative;
  padding-left: 1.2rem;
  font-weight: 600;
}

.ganga-privacy-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--lotus-blush);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.ganga-privacy-section-title:hover::before {
  transform: scaleY(1.2);
}

.ganga-privacy-content {
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  color: var(--clove-rich);
}

.ganga-privacy-block {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 1rem;
  border: 1px solid var(--teal-flow);
  transition: background 0.3s ease, transform 0.3s ease;
}

.ganga-privacy-block:hover {
  background: rgba(6, 182, 212, 0.1);
  transform: translateX(10px);
}

.ganga-privacy-contact {
  color: var(--saffron-glow);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease, color 0.3s ease;
}

.ganga-privacy-contact:hover {
  color: var(--lotus-blush);
  border-bottom: 1px solid var(--lotus-blush);
}

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

@media (max-width: 768px) {
  .ganga-privacy-title {
    font-size: 1.5rem;
  }
  .ganga-privacy-section-title {
    font-size: 1.5rem;
  }
  .ganga-privacy-wrapper {
    padding: 1.5rem;
  }
  .ganga-privacy-block {
    padding: 1.5rem;
  }
}

:root {
  --ganga-deep-blue: #1e3a8a; /* Rich Ganges-inspired blue */
  --saffron-glow: #f59e0b; /* Warm saffron hue */
  --lotus-blush: #f9a8d4; /* Gentle lotus pink */
  --teal-flow: #06b6d4; /* Vibrant river teal */
  --sandal-cream: #fef3c7; /* Soft sandalwood cream */
  --clove-rich: #2a160e; /* Deep clove brown */
}

.ganga-terms-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--sandal-cream);
  border-radius: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ganga-terms-title {
  font-size: 1.5rem;
  color: var(--ganga-deep-blue);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  animation: fadeInTitle 1s ease-out;
}

.ganga-terms-section-title {
  font-size: 1rem;
  color: var(--saffron-glow);
  margin: 2rem 0 1.2rem;
  position: relative;
  padding-left: 1.2rem;
  font-weight: 600;
}

.ganga-terms-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--lotus-blush);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.ganga-terms-section-title:hover::before {
  transform: scaleY(1.2);
}

.ganga-terms-content {
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  color: var(--clove-rich);
}

.ganga-terms-block {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 1rem;
  border: 1px solid var(--teal-flow);
  transition: background 0.3s ease, transform 0.3s ease;
}

.ganga-terms-block:hover {
  background: rgba(6, 182, 212, 0.1);
  transform: translateX(10px);
}

.ganga-terms-contact {
  color: var(--saffron-glow);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease, color 0.3s ease;
}

.ganga-terms-contact:hover {
  color: var(--lotus-blush);
  border-bottom: 1px solid var(--lotus-blush);
}

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

@media (max-width: 768px) {
  .ganga-terms-title {
    font-size: 1.5rem;
  }
  .ganga-terms-section-title {
    font-size: 1.5rem;
  }
  .ganga-terms-wrapper {
    padding: 1.5rem;
  }
  .ganga-terms-block {
    padding: 1.5rem;
  }
}

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

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