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

/* Global styles for IndWin site - Indian-inspired color scheme: saffron orange (#FF9933), green (#138808), blue (#000080), gold (#FFD700) */
body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Limiting container for all sections */
.index-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Updated Header - With adaptive burger menu and animation */
.index-header {
  background-color: #000080; /* Navy blue for depth */
  color: #ffd700; /* Gold text */
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.index-header-logo {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  animation: index-glow 2s infinite alternate;
}

.index-header-logo a {
  color: #ffd700;
  text-decoration: none;
}

@keyframes index-glow {
  from {
    text-shadow: 0 0 5px #ff9933;
  }
  to {
    text-shadow: 0 0 15px #ff9933;
  }
}

.index-header-nav {
  display: flex;
}

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

.index-header-nav li {
  margin: 0 15px;
}

.index-header-nav a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.index-header-nav a:hover {
  color: #ff9933; /* Saffron hover */
}

.index-header-toggler {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.index-header-toggler-line {
  width: 100%;
  height: 3px;
  background-color: #ffd700;
  transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
  .index-header-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #000080;
    padding: 20px 0;
  }

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

  .index-header-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .index-header-nav li {
    margin: 10px 0;
  }

  .index-header-toggler {
    display: flex;
  }
}

/* Hero Banner - Parallax effect with CSS, animated text */
.index-hero-banner {
  position: relative;
  height: 80vh;
  background: url("img/bg-app6.jpg") no-repeat center center/cover; /* Placeholder for Indian temple/jungle background */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.index-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 128, 0.5),
    rgba(255, 153, 51, 0.5)
  ); /* Blue to saffron overlay */
  z-index: 1;
}

.index-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

.index-hero-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  animation: index-fade-in 1.5s ease-out;
}

@keyframes index-fade-in {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.index-hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  animation: index-fade-in 2s ease-out;
}

.index-hero-cta {
  background-color: #138808; /* Green button */
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.index-hero-cta:hover {
  transform: scale(1.05);
  background-color: #ff9933;
}

/* Parallax effect - Using CSS perspective */
.index-hero-banner {
  perspective: 1px;
  transform-style: preserve-3d;
}

.index-hero-content {
  transform: translateZ(0.5px) scale(0.5);
}

/* Quick Actions Section - 4 icons with descriptions, grid layout */
.index-quick-actions {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

.index-quick-actions h2 {
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

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

.index-action-item {
  background-color: #f0f0f0;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

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

.index-action-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 20px;
}

.index-action-item h3 {
  font-size: 1.8rem;
  color: #138808;
}

.index-action-item p {
  font-size: 1.2rem;
}

/* Asymmetric Gallery - Masonry-like grid with different sizes */
.index-gallery {
  padding: 60px 0;
  background-color: #ff9933; /* Saffron background for vibrancy */
  color: #fff;
}

.index-gallery h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #000080;
}

.index-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
}

.index-gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.index-gallery-item:nth-child(3) {
  grid-column: span 2;
}

.index-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* Live Stats - Animated counters with CSS (using keyframes for progress) */
.index-stats {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

.index-stats h2 {
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

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

.index-stat-item {
  padding: 10px;
}

.index-stat-number {
  font-size: 2rem;
  color: #138808;
  font-weight: bold;
  display: block;
  animation: index-count-up 2s ease-out forwards;
}

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

.index-stat-bar {
  background-color: #f0f0f0;
  height: 10px;
  border-radius: 5px;
  margin: 10px 0;
  overflow: hidden;
}

.index-stat-progress {
  height: 100%;
  background-color: #ff9933;
  animation: index-progress 2s ease-out forwards;
}

@keyframes index-progress {
  from {
    width: 0;
  }
  to {
    width: 80%;
  } /* Example progress */
}

/* Sphere of Influence - Infographic with circles */
.index-influence {
  padding: 60px 0;
  background-color: #000080;
  color: #fff;
  text-align: center;
}

.index-influence h2 {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

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

.index-influence-item {
  width: 200px;
  height: 200px;
  background-color: #ff9933;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.index-influence-item:hover {
  transform: scale(1.1);
}

/* Quote Block - Static quote inspired by Indian wisdom */
.index-quote {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
  font-style: italic;
}

.index-quote blockquote {
  font-size: 2rem;
  color: #138808;
  max-width: 800px;
  margin: 0 auto;
  border-left: 5px solid #ff9933;
  padding-left: 20px;
}

.index-quote cite {
  display: block;
  margin-top: 20px;
  font-size: 1.2rem;
  color: #000080;
}

/* How It Works - Vertical timeline with CSS lines */
.index-how-works {
  padding: 60px 0;
  background: linear-gradient(to bottom, #ffe4b5, #f0e68c);
}

.index-how-works h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #4b0082;
  margin-bottom: 40px;
}

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

.index-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(#228b22, #006400);
  transform: translateX(-50%);
}

.index-timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  animation: timeline-item-appear 1s ease-out forwards;
  animation-delay: calc(0.2s * var(--item-index, 1));
}

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

.index-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.index-timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #ffd700;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #ffd700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

.index-timeline-content {
  width: 45%;
  background: linear-gradient(#fffaf0, #fffacd);
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(255, 165, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.index-timeline-content:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
}

.index-timeline-content h3 {
  color: #8b4513;
}

.index-timeline-content p {
  color: #556b2f;
}

.index-timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(#ff4500, #ff8c00);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}

.index-timeline-icon:hover {
  transform: translateX(-50%) rotate(360deg);
  background: radial-gradient(#ff8c00, #ff4500);
}

.css-icon {
  width: 35px;
  height: 35px;
  position: relative;
  filter: drop-shadow(0 0 5px #ffd700);
}

.css-icon-lotus::before,
.css-icon-lotus::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 30px;
  background: #ff69b4;
  border-radius: 50% 50% 0 0;
  top: 50%;
  left: 50%;
  transform-origin: bottom center;
}

.css-icon-lotus::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.css-icon-lotus::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.css-icon-lotus {
  background: radial-gradient(circle, #ffb6c1 10%, transparent 20%);
  border: 3px solid #ffd700;
  border-radius: 50%;
}

.css-icon-map::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 30px;
  background: #4682b4;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.css-icon-map::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #ffd700;
  border-radius: 50%;
  top: 20%;
  left: 60%;
  transform: translate(-50%, -50%);
}

.css-icon-map {
  border: 2px dashed #228b22;
  background: #f0fff0;
}

.css-icon-fireworks::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 3px solid #ff4500;
  border-radius: 50%;
  animation: fireworks-burst 1.5s infinite;
}

.css-icon-fireworks::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffd700;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fireworks-spark 1.5s infinite;
}

@keyframes fireworks-burst {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes fireworks-spark {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
}

.css-icon-mandala::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, #ffd700 20%, transparent 30%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.css-icon-mandala::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px dotted #ff69b4;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: mandala-spin 4s linear infinite;
}

.css-icon-mandala {
  background: #fff5ee;
  border: 3px solid #ff4500;
  border-radius: 50%;
}

@keyframes mandala-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Community - Grid of avatars */
.index-community {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.index-community h2 {
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

.index-community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.index-community-item {
  text-align: center;
}

.index-community-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #138808;
  transition: border-color 0.3s ease;
}

.index-community-item img:hover {
  border-color: #ff9933;
}

.index-community-item p {
  margin-top: 10px;
  font-weight: bold;
}

/* Seasonal Offers - CSS carousel with auto-scroll using keyframes */
.index-offers {
  padding: 60px 0;
  background-color: #138808; /* Green for festivals */
  color: #fff;
}

.index-offers h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.index-carousel {
  overflow: hidden;
  position: relative;
}

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

.index-carousel-item {
  min-width: 300px;
  margin: 0 10px;
  background-color: #000080;
  padding: 10px;
  border-radius: 15px;
  text-align: center;
}

@keyframes index-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* Assuming duplicate items for seamless loop */
}

/* Final Accent - Motivational text with visual */
.index-final-accent {
  background-color: #ff9933;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.index-final-accent h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.index-final-accent p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 70px;
}

.index-final-visual {
  width: 200px;
  height: auto;
  animation: index-rotate 10s linear infinite;
}

@keyframes index-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}

/* Updated Footer - Unique with columns, map integration (placeholder), no forms/social icons */
.index-footer {
  background-color: #000080;
  color: #ffd700;
  padding: 60px 0 20px;
  border-top: 1px solid #fff;
}

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

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

.index-footer-nav li {
  margin-bottom: 10px;
}

.index-footer-nav a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.index-footer-nav a:hover {
  color: #ff9933;
}

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

.index-footer-contacts li {
  margin-bottom: 10px;
}

.index-footer-contacts a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.index-footer-contacts a:hover {
  color: #ff9933;
}

.index-footer-map {
  height: 200px;
  background: url("img/bg-app1.jpg") no-repeat center/cover; /* Placeholder for embedded map image or iframe, but static for no JS extra */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.index-footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.index-footer-policies a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.index-footer-policies a:hover {
  color: #ff9933;
}

.index-footer-copyright {
  text-align: center;
  border-top: 1px solid #ffd700;
  padding-top: 20px;
  font-size: 0.9rem;
}

/* Media queries for adaptive design */
@media (max-width: 768px) {
  .index-header-logo {
    font-size: 1.5rem;
  }

  .index-hero-content h2 {
    font-size: 1.5rem;
  }

  .index-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .index-timeline-item:nth-child(even) {
    flex-direction: column;
  }

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

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

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

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

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

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

/* Limiting container */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Hero Banner - Fullscreen with video background */
.services-hero-banner {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #000080; /* Fallback */
}

.services-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

.services-hero-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ff9933;
  animation: services-slide-up 1.5s ease-out;
}

@keyframes services-slide-up {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.services-hero-cta {
  background-color: #138808;
  color: #fff;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.services-hero-cta:hover {
  transform: scale(1.1);
  background-color: #ff9933;
}

/* Featured Grid - 6 service cards with varied sizes */
.services-featured-grid {
  padding: 60px 0;
  background-color: #fff;
}

.services-featured-grid h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
}

.services-grid-item:nth-child(1),
.services-grid-item:nth-child(4) {
  grid-column: span 2;
  grid-row: span 2;
}

.services-grid-item {
  background-color: #f0f0f0;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.services-grid-item:hover {
  transform: translateY(-10px);
}

.services-grid-item img {
  width: 100%;
  height: 60%;
  object-fit: cover;
}

.services-grid-content {
  padding: 10px;
  text-align: center;
}

.services-grid-content h3 {
  font-size: 1.8rem;
  color: #138808;
  margin-bottom: 10px;
}

.services-grid-content p {
  font-size: 1.2rem;
}

/* Impact Counters - Animated counters */
.services-impact {
  padding: 60px 0;
  background-color: #ff9933;
  color: #fff;
  text-align: center;
}

.services-impact h2 {
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

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

.services-impact-item {
  padding: 10px;
}

.services-impact-number {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  animation: services-count-up 2s ease-out forwards;
}

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

.services-impact-bar {
  background-color: rgba(255, 255, 255, 0.2);
  height: 8px;
  border-radius: 4px;
  margin: 10px 0;
  overflow: hidden;
}

.services-impact-progress {
  height: 100%;
  background-color: #138808;
  animation: services-progress 2s ease-out forwards;
}

@keyframes services-progress {
  from {
    width: 0;
  }
  to {
    width: 85%;
  }
}

/* Spotlight Case - Success story */
.services-spotlight {
  padding: 60px 0;
  background-color: #fff;
}

.services-spotlight-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.services-spotlight-image {
  flex: 1;
}

.services-spotlight-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.services-spotlight-text {
  flex: 1;
}

.services-spotlight-text h2 {
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 20px;
}

.services-spotlight-text p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.services-spotlight-cta {
  background-color: #ff9933;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.services-spotlight-cta:hover {
  background-color: #138808;
}

.services-process {
  padding: 60px 0;
  background: radial-gradient(circle, #e6e6fa 0%, #dda0dd 100%);
}

.services-process h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #800080;
  margin-bottom: 40px;
}

.services-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.services-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ff00ff;
}

.services-timeline-item {
  position: relative;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(128, 0, 128, 0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  animation: fade-slide 1.2s ease forwards;
  animation-delay: calc(0.3s * var(--step-index, 0));
}

@keyframes fade-slide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.services-timeline-item:nth-child(even) {
  grid-template-columns: 1fr;
}

.services-timeline-item::after {
  content: attr(data-step);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4b0082;
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 1rem;
  box-shadow: 0 0 10px #ff00ff;
  animation: bounce 1s infinite;
}

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

.services-timeline-content {
  margin-top: 0;
  width: 100%;
  padding: 8px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.services-timeline-content:hover {
  background-color: #f0fff0;
}

.services-timeline-icon {
  background-color: #9932cc;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 15px rgba(153, 50, 204, 0.5);
  transition: transform 0.3s ease;
}

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

.css-icon {
  width: 35px;
  height: 35px;
  position: relative;
  filter: drop-shadow(0 0 5px #ff00ff);
}

.css-icon-discovery::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #da70d6;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.css-icon-discovery::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 30px;
  background: #ffb6c1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.css-icon-design::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: conic-gradient(
    #ff69b4 0% 25%,
    #ffc0cb 25% 50%,
    #ff69b4 50% 75%,
    #ffc0cb 75% 100%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.css-icon-design::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px #ff69b4;
}

.css-icon-development::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #4b0082;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.css-icon-development::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #9370db;
  border-radius: 50%;
  top: 30%;
  left: 50%;
  transform: translate(-50%, 0);
  animation: gear-spin 2s linear infinite;
}

@keyframes gear-spin {
  from {
    transform: translate(-50%, 0) rotate(0deg);
  }
  to {
    transform: translate(-50%, 0) rotate(360deg);
  }
}

.css-icon-testing::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 5px;
  background: #ff00ff;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 0 #ff00ff, 0 20px 0 #ff00ff;
}

.css-icon-testing::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #00ff00;
  border-radius: 50%;
  top: 20%;
  left: 20%;
  animation: check-blink 1s alternate infinite;
}

@keyframes check-blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}

.css-icon-launch::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 30px;
  background: #ff4500;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.css-icon-launch::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: transparent;
  border: 3px solid #ffd700;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: launch-burst 1.5s infinite;
}

@keyframes launch-burst {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Seasonal Offer - Gradient banner */
.services-seasonal-offer {
  padding: 60px 0;
  background: linear-gradient(135deg, #ff9933, #138808);
  color: #fff;
  text-align: center;
}

.services-seasonal-offer h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.services-seasonal-offer p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.services-seasonal-cta {
  background-color: #000080;
  color: #ffd700;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.services-seasonal-cta:hover {
  transform: scale(1.05);
}

/* Testimonials Carousel - CSS-based */
.services-testimonials {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.services-testimonials h2 {
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

.services-testimonials-carousel {
  overflow: hidden;
  position: relative;
  height: 300px;
}

.services-testimonials-track {
  display: flex;
  animation: services-scroll 15s linear infinite;
}

.services-testimonials-item {
  min-width: 300px;
  margin: 0 10px;
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 15px;
  text-align: center;
}

.services-testimonials-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

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

/* Visual Story - Asymmetric photo + text */
.services-visual-story {
  padding: 60px 0;
  background-color: #000080;
  color: #fff;
}

.services-visual-story-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.services-visual-story-image {
  flex: 2;
}

.services-visual-story-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.services-visual-story-text {
  flex: 1;
}

.services-visual-story-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Why Choose Us - Icon-based advantages */
.services-why-choose {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.services-why-choose h2 {
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

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

.services-why-choose-item {
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.services-why-choose-item:hover {
  transform: translateY(-10px);
}

.services-why-choose-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.services-why-choose-item h3 {
  font-size: 1.8rem;
  color: #138808;
}

/* CTA Section - Final call to action */
.services-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #138808, #ff9933);
  color: #fff;
  text-align: center;
}

.services-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.services-cta p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.services-cta-button {
  display: inline-block;
  background-color: #000080;
  color: #ffd700;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.services-cta-button:hover {
  transform: scale(1.1);
  background-color: #ffd700;
  color: #000080;
}

/* Media queries for adaptive design */
@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid-item:nth-child(1),
  .services-grid-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .services-spotlight-content,
  .services-visual-story-content {
    flex-direction: column;
  }

  .services-timeline::before {
    left: 20px;
    content: none;
  }

  .services-timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-timeline-item:nth-child(even) {
    flex-direction: column;
  }

  .services-timeline-content {
    width: 100%;
  }

  .services-timeline-icon {
    left: 20px;
  }

  .services-testimonials-item {
    min-width: 100%;
  }
}

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

  .services-impact-grid,
  .services-why-choose-grid {
    grid-template-columns: 1fr;
  }
}

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

/* Hero Banner - Static image with text overlay */
.about-hero-banner {
  position: relative;
  height: 80vh;
  background: url("img/bg-app2.jpg") no-repeat center center/cover; /* Indian cultural scene */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 128, 0.6),
    rgba(255, 153, 51, 0.6)
  );
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

.about-hero-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ffd700;
  animation: about-slide-in 1.5s ease-out;
}

@keyframes about-slide-in {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.about-hero-cta {
  background-color: #138808;
  color: #fff;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.about-hero-cta:hover {
  transform: scale(1.1);
  background-color: #ff9933;
}

.about-timeline {
  padding: 60px 0;
  background: radial-gradient(circle, #ffefd5 0%, #faebd7 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 165, 0, 0.05) 10px,
    rgba(255, 165, 0, 0.05) 20px
  );
  z-index: 0;
}

.about-timeline h2 {
  font-size: 1.5rem;
  color: #9932cc;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  animation: glow-text 2s infinite alternate;
}

@keyframes glow-text {
  from {
    text-shadow: 0 0 5px #da70d6;
  }
  to {
    text-shadow: 0 0 15px #da70d6;
  }
}

.about-timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.about-timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #ff4500, #ff1493);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(255, 69, 0, 0.5);
  animation: line-flow 3s linear infinite;
}

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

.about-timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: translateY(50px);
}

.about-timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.about-timeline-item::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ff1493;
  opacity: 0.7;
}

.about-timeline-content {
  width: 50%;
  background: linear-gradient(135deg, #fff5ee, #ffe4e1);
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(255, 20, 147, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-timeline-content:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 12px 30px rgba(255, 20, 147, 0.4);
  background: linear-gradient(135deg, #ffe4e1, #fff5ee);
}

.about-timeline-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 182, 193, 0.3) 0%,
    transparent 70%
  );
  transform: rotate(30deg);
  transition: opacity 0.4s ease;
  opacity: 0;
}

.about-timeline-content:hover::before {
  opacity: 1;
}

.about-timeline-content h3 {
  color: #c71585;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.about-timeline-content p {
  color: #4b0082;
  font-size: 1.1rem;
}

.about-timeline-icon {
  position: relative;
  background-color: #ff69b4;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
}

.about-timeline-icon:hover {
  transform: scale(1.2) rotate(15deg);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.8);
}

.css-icon {
  width: 35px;
  height: 35px;
  position: relative;
  filter: drop-shadow(0 0 5px #ffd700);
}

.css-icon-founding::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #ff4500;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #ff4500;
}

.css-icon-founding::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 30px;
  background: #ffd700;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.css-icon-first-app::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 30px;
  background: #ffa500;
  border-radius: 50% 50% 0 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.css-icon-first-app::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 15px;
  background: #ffff00;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50%;
  animation: flicker 0.5s infinite alternate;
}

@keyframes flicker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.7;
  }
}

.css-icon-expansion::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 25px;
  background: #4169e1;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.css-icon-expansion::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffd700;
  border-radius: 50%;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px #ffd700;
}

.css-icon-global::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: conic-gradient(#ff9933 0% 33%, #ffffff 33% 66%, #138808 66% 100%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.css-icon-global::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #000080;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-global 5s linear infinite;
}

@keyframes rotate-global {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Dream Team - Employee profiles with hover effects */
.about-team {
  padding: 60px 0;
  background-color: #ff9933;
  color: #fff;
}

.about-team h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

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

.about-team-item {
  background-color: #000080;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.about-team-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.about-team-content {
  padding: 10px;
}

.about-team-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.about-team-content p {
  font-size: 1.2rem;
}

/* Company Values - Circular progress-like visuals */
.about-values {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.about-values h2 {
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

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

.about-values-item {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.about-values-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#138808 0% 80%, #f0f0f0 80% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-values-circle:hover {
  transform: scale(1.1);
}

.about-values-circle span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000080;
}

.about-awards {
  padding: 60px 0;
  background: linear-gradient(135deg, #ff7f50, #ff4500);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-awards::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  animation: float-bubble 10s infinite ease-in-out;
}

@keyframes float-bubble {
  0% {
    transform: translate(0, 0);
    opacity: 0.5;
  }
  50% {
    transform: translate(100px, 100px);
    opacity: 1;
  }
  100% {
    transform: translate(200px, 200px);
    opacity: 0.5;
  }
}

.about-awards::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  animation: float-bubble-reverse 12s infinite ease-in-out;
}

@keyframes float-bubble-reverse {
  0% {
    transform: translate(0, 0);
    opacity: 0.5;
  }
  50% {
    transform: translate(-100px, -100px);
    opacity: 1;
  }
  100% {
    transform: translate(-200px, -200px);
    opacity: 0.5;
  }
}

.about-awards h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #ffd700;
  text-shadow: 0 0 10px #ff4500;
  animation: award-glow 2s infinite alternate;
}

@keyframes award-glow {
  from {
    text-shadow: 0 0 5px #ffd700;
  }
  to {
    text-shadow: 0 0 15px #ffd700;
  }
}

.about-awards-shelf {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  perspective: 1000px;
}

.about-awards-item {
  background: linear-gradient(#ffd700, #daa520);
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  width: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.about-awards-item:hover {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.about-awards-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

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

.about-awards-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px #ff4500);
  transition: filter 0.3s ease;
}

.about-awards-item:hover img {
  filter: drop-shadow(0 0 15px #ffd700);
}

.about-awards-item p {
  font-size: 1.1rem;
  color: #8b4513;
  font-weight: bold;
}

/* Project Ecosystem - Connection diagram */
.about-ecosystem {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.about-ecosystem h2 {
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

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

.about-ecosystem-item {
  width: 200px;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-ecosystem-item:hover {
  transform: scale(1.05);
}

.about-ecosystem-item h3 {
  font-size: 1.5rem;
  color: #138808;
}

/* Mission Block - Highlighted text */
.about-mission {
  padding: 60px 0;
  background: linear-gradient(135deg, #ff9933, #138808);
  color: #fff;
  text-align: center;
}

.about-mission h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.about-mission p {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-mission p strong {
  color: #ffd700;
  text-shadow: 0 0 5px #000080;
}

/* Office Gallery - Masonry grid */
.about-office-gallery {
  padding: 60px 0;
  background-color: #fff;
}

.about-office-gallery h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
}

.about-gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  @media (max-width: 768px) {
    grid-column: auto;
    grid-row: auto;
  }
}

.about-gallery-item:nth-child(3) {
  grid-column: span 2;
  @media (max-width: 768px) {
    grid-column: auto;
  }
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* Growth Numbers - Animated infographics */
.about-growth {
  padding: 60px 0;
  background-color: #ff9933;
  color: #fff;
  text-align: center;
}

.about-growth h2 {
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

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

.about-growth-item {
  padding: 10px;
}

.about-growth-number {
  font-size: 2rem;
  font-weight: bold;
  animation: about-count-up 2s ease-out forwards;
}

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

.about-growth-bar {
  background-color: rgba(255, 255, 255, 0.2);
  height: 8px;
  border-radius: 4px;
  margin: 10px 0;
  overflow: hidden;
}

.about-growth-progress {
  height: 100%;
  background-color: #138808;
  animation: about-progress 2s ease-out forwards;
}

@keyframes about-progress {
  from {
    width: 0;
  }
  to {
    width: 90%;
  }
}

/* Final Word - Closing appeal */
.about-final-word {
  padding: 80px 0;
  background-color: #000080;
  color: #fff;
  text-align: center;
}

.about-final-word h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-final-word p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.about-final-cta {
  background-color: #ff9933;
  color: #fff;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.about-final-cta:hover {
  transform: scale(1.1);
  background-color: #138808;
}

/* Media queries for adaptive design */
@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 1.5rem;
  }

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

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

  .about-timeline-item:nth-child(even) {
    flex-direction: column;
  }

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

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

  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values-item,
  .about-team-grid,
  .about-growth-grid {
    grid-template-columns: 1fr;
  }
}

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

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

/* Hero Image - Large office photo with H1 */
.contact-hero {
  position: relative;
  height: 70vh;
  background: url("img/bg-app3.jpg") no-repeat center center/cover; /* Mumbai office or Indian landmark */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.contact-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.contact-hero-content h1 {
  font-size: 2rem;
  text-shadow: 0 0 10px #ff9933;
  animation: contact-fade-in 1.5s ease-out;
}

@keyframes contact-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Map Section - Google Maps iframe */
.contact-map {
  padding: 60px 0;
  background-color: #fff;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Quick Facts - Stats block */
.contact-facts {
  padding: 60px 0;
  background-color: #ff9933;
  color: #fff;
  text-align: center;
}

.contact-facts h2 {
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

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

.contact-facts-item {
  padding: 10px;
}

.contact-facts-number {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  display: block;
  animation: contact-count-up 2s ease-out forwards;
}

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

.contact-facts-item p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Contact Details Block */
.contact-details {
  padding: 80px 0;
  background: linear-gradient(45deg, #ff6347, #ffb6c1);
  position: relative;
  overflow: hidden;
}

.contact-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  animation: ripple 15s infinite ease-in-out;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

.contact-details h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #4b0082;
  margin-bottom: 50px;
  text-shadow: 0 0 10px #ffd700;
  animation: text-glow 2s infinite alternate;
}

@keyframes text-glow {
  from {
    text-shadow: 0 0 5px #ffd700;
  }
  to {
    text-shadow: 0 0 15px #ffd700;
  }
}

.contact-details-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-details-item {
  text-align: center;
  padding: 15px;
  background: linear-gradient(#fff5ee, #ffe4e1);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(75, 0, 130, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 300px;
  position: relative;
  transform-style: preserve-3d;
}

.contact-details-item:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 12px 30px rgba(75, 0, 130, 0.4);
}

.contact-details-item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: #ff4500;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.contact-details-item a {
  color: #8b008b;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.contact-details-item a:hover {
  color: #ff69b4;
}

.contact-details-item p {
  margin: 15px 0 0;
  color: #4b0082;
  font-size: 1.1rem;
}

.css-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  position: relative;
  filter: drop-shadow(0 0 5px #ffd700);
}

.css-icon-location::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 40px;
  background: #ff4500;
  border-radius: 50% 50% 0 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.css-icon-location::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #ffffff;
  border-radius: 50%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #ffd700;
}

.css-icon-phone::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background: #da70d6;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.css-icon-phone::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffd700;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: phone-pulse 2s infinite;
}

@keyframes phone-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.css-icon-email::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 30px;
  background: #ff69b4;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.css-icon-email::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: envelope-flip 3s infinite;
}

@keyframes envelope-flip {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}

/* Spotlight Quote */
.contact-quote {
  padding: 60px 0;
  background-color: #000080;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-style: italic;
}

.contact-quote q {
  quotes: "“" "”";
  color: #ffd700;
}

/* FAQ Accordion - CSS-based */
.contact-faq {
  padding: 60px 0;
  background-color: #fff;
}

.contact-faq h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

.contact-faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.contact-faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  background-color: #f0f0f0;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.contact-faq-question:hover {
  background-color: #e0e0e0;
}

.contact-faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: #138808;
}

.contact-faq-answer {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.contact-faq-item input[type="checkbox"] {
  display: none;
}

.contact-faq-item input[type="checkbox"]:checked ~ .contact-faq-answer {
  max-height: 200px;
  padding: 15px;
}

.contact-faq-item
  input[type="checkbox"]:checked
  ~ .contact-faq-question::after {
  content: "-";
}

/* Contact Form */
.contact-form {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.contact-form h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #000080;
  margin-bottom: 40px;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #000080;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

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

.contact-privacy {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-privacy input {
  margin-right: 10px;
}

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

.contact-form-submit {
  background-color: #138808;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form-submit:hover {
  background-color: #ff9933;
  transform: scale(1.05);
}

/* Closing Banner */
.contact-closing {
  padding: 80px 0;
  background: linear-gradient(135deg, #000080, #ff9933);
  color: #fff;
  text-align: center;
}

.contact-closing h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

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

.contact-closing-cta {
  background-color: #ffd700;
  color: #000080;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-closing-cta:hover {
  transform: scale(1.1);
  background-color: #fff;
}

/* Media queries for adaptive design */
@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 1.5rem;
  }

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

  .contact-form-container {
    padding: 10px;
  }
}

/* Limiting container */
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Main heading */
.privacy-heading {
  text-align: center;
  font-size: 2rem;
  color: #000080;
  margin-bottom: 40px;
  text-shadow: 0 0 5px #ff9933;
  animation: privacy-fade-in 1.5s ease-out;
}

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

/* Section styles */
.privacy-section {
  margin-bottom: 40px;
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.privacy-section h2 {
  font-size: 2rem;
  color: #138808;
  margin-bottom: 15px;
  border-bottom: 2px solid #ff9933;
  padding-bottom: 10px;
}

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

.privacy-section a {
  color: #138808;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.privacy-section a:hover {
  color: #ff9933;
}

/* Highlighted compliance sections */
.privacy-section {
  background-color: #f0f0f0;
  border-left: 5px solid #000080;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .privacy-heading {
    font-size: 1.5rem;
  }

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

  .privacy-container {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .privacy-heading {
    font-size: 2rem;
  }

  .privacy-section {
    padding: 10px;
  }
}

/* Limiting container */
.terms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Main heading */
.terms-heading {
  text-align: center;
  font-size: 2rem;
  color: #000080;
  margin-bottom: 40px;
  text-shadow: 0 0 5px #ff9933;
  animation: terms-fade-in 1.5s ease-out;
}

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

/* Section styles */
.terms-section {
  margin-bottom: 40px;
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.terms-section h2 {
  font-size: 2rem;
  color: #138808;
  margin-bottom: 15px;
  border-bottom: 2px solid #ff9933;
  padding-bottom: 10px;
}

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

.terms-section a {
  color: #138808;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.terms-section a:hover {
  color: #ff9933;
}

/* Highlighted compliance sections */
.terms-section {
  background-color: #f0f0f0;
  border-left: 5px solid #000080;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .terms-heading {
    font-size: 1.5rem;
  }

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

  .terms-container {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .terms-heading {
    font-size: 2rem;
  }

  .terms-section {
    padding: 10px;
  }
}

.thanks-wrapper {
  position: relative;
  text-align: center;
  background: linear-gradient(45deg, #138808, #000080);
  max-width: 700px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  margin: 30px auto;
  animation: thanks-slide-up 1s ease-out;
}

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

.thanks-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 0 0 8px #ff9933;
}

.thanks-message {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.8;
}

.thanks-home-link {
  display: inline-block;
  background-color: #ff9933;
  color: #000080;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.thanks-home-link:hover {
  background-color: #ffd700;
  transform: scale(1.1);
}

/* Decorative element - Indian-inspired pattern */
.thanks-wrapper::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: url("img/bg-app4.jpg") no-repeat center/cover; /* Indian mandala pattern */
  opacity: 0.2;
  border-radius: 50%;
}

.thanks-wrapper::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: url("img/bg-app5.jpg") no-repeat center/cover; /* Indian lotus motif */
  opacity: 0.2;
  border-radius: 50%;
}

/* Responsive design */
@media (max-width: 600px) {
  .thanks-wrapper {
    padding: 15px;
    margin: 15px;
  }

  .thanks-title {
    font-size: 1.5rem;
  }

  .thanks-message {
    font-size: 1.1rem;
  }

  .thanks-home-link {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
