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 */
body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  background-color: #fff5e1;
  color: #2c1a4d;
  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: linear-gradient(135deg, #6a1b9a, #ba68c8);
  color: #ffe082;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.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: #ffe082;
  text-decoration: none;
}

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

.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: #ffe082;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.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: #ffe082;
  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: linear-gradient(135deg, #6a1b9a, #ba68c8);
    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: linear-gradient(45deg, #d81b60, #f06292);
  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: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  z-index: 1;
  animation: shimmer 8s infinite ease-in-out;
}

@keyframes shimmer {
  0% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(50px, 50px);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
}

.index-hero-content {
  position: relative;
  z-index: 2;
  color: #fce4ec;
  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: #7b1fa2;
  color: #fce4ec;
  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: #f06292;
}

/* 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: linear-gradient(#fff3e0, #ffe0b2);
  padding: 60px 0;
  text-align: center;
}

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

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

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

.index-action-item {
  background: linear-gradient(135deg, #e1bee7, #f3e5f5);
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.index-action-item:hover {
  box-shadow: 0 8px 20px rgba(74, 20, 140, 0.3);
  transform: translateY(-5px);
}

.index-action-item .css-icon {
  width: 100%;
  height: 350px;
  position: relative;
  margin-bottom: 20px;
}

.index-action-item h3 {
  font-size: 1.5rem;
  color: #7b1fa2;
}

.index-action-item p {
  font-size: 1.2rem;
  color: #4a148c;
}

/* Asymmetric Gallery - Masonry-like grid with different sizes */
.index-gallery {
  padding: 60px 0;
  background: linear-gradient(135deg, #f06292, #ec407a);
  color: #fce4ec;
}

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

.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 .css-icon {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* Live Stats - Animated counters with CSS */
.index-stats {
  background: linear-gradient(#fce4ec, #fff3e0);
  padding: 60px 0;
  text-align: center;
}

.index-stats h2 {
  font-size: 1.5rem;
  color: #4a148c;
  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: #7b1fa2;
  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: #e1bee7;
  height: 10px;
  border-radius: 5px;
  margin: 10px 0;
  overflow: hidden;
}

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

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

/* Sphere of Influence - Infographic with circles */
.index-influence {
  padding: 60px 0;
  background: linear-gradient(135deg, #4a148c, #6a1b9a);
  color: #fce4ec;
  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: radial-gradient(#f06292, #ec407a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 0 20px rgba(255, 224, 130, 0.4);
  transition: transform 0.3s ease;
}

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

/* Quote Block - Static quote inspired by Indian wisdom */
.index-quote {
  background: linear-gradient(#fff3e0, #ffe0b2);
  padding: 60px 0;
  text-align: center;
  font-style: italic;
}

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

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

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

.index-how-works h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #4a148c;
  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(#7b1fa2, #4a148c);
  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: #ffe082;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #ffe082;
  animation: pulse 2s infinite;
}

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

.index-timeline-content {
  width: 45%;
  background: linear-gradient(#fce4ec, #f3e5f5);
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(186, 104, 200, 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(186, 104, 200, 0.3);
}

.index-timeline-content h3 {
  color: #6a1b9a;
}

.index-timeline-content p {
  color: #4a148c;
}

.index-timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(#f06292, #d81b60);
  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(#d81b60, #f06292);
}

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

.css-icon-lotus::before,
.css-icon-lotus::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 30px;
  background: #f06292;
  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, #fce4ec 10%, transparent 20%);
  border: 3px solid #ffe082;
  border-radius: 50%;
}

.css-icon-map::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 30px;
  background: #ba68c8;
  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: #ffe082;
  border-radius: 50%;
  top: 20%;
  left: 60%;
  transform: translate(-50%, -50%);
}

.css-icon-map {
  border: 2px dashed #7b1fa2;
  background: #f3e5f5;
}

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

.css-icon-fireworks::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffe082;
  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, #ffe082 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 #f06292;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: mandala-spin 4s linear infinite;
}

.css-icon-mandala {
  background: #fff3e0;
  border: 3px solid #ff4081;
  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: linear-gradient(#f3e5f5, #e1bee7);
  text-align: center;
}

.index-community h2 {
  font-size: 1.5rem;
  color: #4a148c;
  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 .css-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #7b1fa2;
  transition: border-color 0.3s ease;
}

.index-community-item .css-icon:hover {
  border-color: #f06292;
}

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

/* Seasonal Offers - CSS carousel with auto-scroll using keyframes */
.index-offers {
  padding: 60px 0;
  background: linear-gradient(135deg, #7b1fa2, #4a148c);
  color: #fce4ec;
}

.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: linear-gradient(#ba68c8, #8e24aa);
  padding: 10px;
  border-radius: 15px;
  text-align: center;
}

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

/* Final Accent - Motivational text with visual */
.index-final-accent {
  background: linear-gradient(135deg, #f06292, #ff4081);
  padding: 80px 0;
  text-align: center;
  color: #fce4ec;
}

.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: 100%;
  height: 400px;
  object-fit: cover;
}

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

/* Updated Footer - Unique with columns, map integration (placeholder) */
.index-footer {
  background: linear-gradient(135deg, #4a148c, #6a1b9a);
  color: #ffe082;
  padding: 60px 0 20px;
  border-top: 1px solid #fce4ec;
}

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

.index-footer-nav h4 {
  margin-bottom: 25px;
}

.index-footer-contacts h4 {
  margin-bottom: 25px;
}

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

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

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

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

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

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

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

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

.index-footer-map {
  height: 200px;
  background: linear-gradient(#f3e5f5, #e1bee7);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 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: #ffe082;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

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

.index-footer-copyright {
  text-align: center;
  border-top: 1px solid #ffe082;
  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: linear-gradient(45deg, #6a1b9a, #ba68c8);
}

.services-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#f3e5f5, #e1bee7);
  z-index: 1;
  opacity: 0.7;
}

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

.services-hero-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ff4081;
  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: #7b1fa2;
  color: #fce4ec;
  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: #f06292;
}

/* Featured Grid - 6 service cards with varied sizes */
.services-featured-grid {
  padding: 60px 0;
  background: linear-gradient(#fff3e0, #ffe0b2);
}

.services-featured-grid h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #4a148c;
  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: linear-gradient(#e1bee7, #f3e5f5);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 0.2);
  transition: transform 0.3s ease;
}

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

.services-grid-item .css-icon {
  width: 100%;
  height: 60%;
  position: relative;
}

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

.services-grid-content h3 {
  font-size: 1.5rem;
  color: #7b1fa2;
  margin-bottom: 10px;
}

.services-grid-content p {
  font-size: 1.2rem;
  color: #4a148c;
}

/* Impact Counters - Animated counters */
.services-impact {
  padding: 60px 0;
  background: linear-gradient(135deg, #f06292, #ff4081);
  color: #fce4ec;
  text-align: center;
}

.services-impact h2 {
  font-size: 1.5rem;
  color: #4a148c;
  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: #fce4ec;
  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: #7b1fa2;
  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: linear-gradient(#f3e5f5, #e1bee7);
}

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

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

.services-spotlight-image .css-icon {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 0.2);
}

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

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

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

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

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

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

.services-process h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #4a148c;
  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: #ff4081;
}

.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(74, 20, 140, 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: #6a1b9a;
  color: #fce4ec;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 1rem;
  box-shadow: 0 0 10px #ff4081;
  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: #fce4ec;
}

.services-timeline-icon {
  background-color: #ba68c8;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 15px rgba(186, 104, 200, 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 #ff4081);
}

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

.css-icon-discovery::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 30px;
  background: #fce4ec;
  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(
    #ff4081 0% 25%,
    #fce4ec 25% 50%,
    #ff4081 50% 75%,
    #fce4ec 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 #ff4081;
}

.css-icon-development::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #6a1b9a;
  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: #ba68c8;
  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: #ff4081;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 0 #ff4081, 0 20px 0 #ff4081;
}

.css-icon-testing::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #7b1fa2;
  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: #f06292;
  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 #ffe082;
  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, #f06292, #7b1fa2);
  color: #fce4ec;
  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: #6a1b9a;
  color: #ffe082;
  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: linear-gradient(#fff3e0, #ffe0b2);
  text-align: center;
}

.services-testimonials h2 {
  font-size: 1.5rem;
  color: #4a148c;
  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-track img {
  width: 100px;
  height: 100px;
}

.services-testimonials-item {
  min-width: 300px;
  margin: 0 10px;
  background: linear-gradient(#e1bee7, #f3e5f5);
  padding: 10px;
  border-radius: 15px;
  text-align: center;
}

.services-testimonials-item .css-icon {
  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: linear-gradient(135deg, #6a1b9a, #4a148c);
  color: #fce4ec;
}

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

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

.services-visual-story-image .css-icon {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 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: linear-gradient(#fce4ec, #fff3e0);
  text-align: center;
}

.services-why-choose h2 {
  font-size: 1.5rem;
  color: #4a148c;
  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: linear-gradient(#e1bee7, #f3e5f5);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

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

.services-why-choose-item .css-icon {
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
}

.services-why-choose-item h3 {
  font-size: 1.5rem;
  color: #7b1fa2;
}

/* CTA Section - Final call to action */
.services-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #7b1fa2, #f06292);
  color: #fce4ec;
  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: #6a1b9a;
  color: #ffe082;
  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: #ffe082;
  color: #6a1b9a;
}

/* 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: linear-gradient(45deg, #d81b60, #f06292);
  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(74, 20, 140, 0.6),
    rgba(240, 98, 146, 0.6)
  );
  z-index: 1;
}

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

.about-hero-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ffe082;
  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: #7b1fa2;
  color: #fce4ec;
  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: #f06292;
}

.about-timeline {
  padding: 60px 0;
  background: radial-gradient(circle, #f3e5f5 0%, #e1bee7 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(186, 104, 200, 0.05) 10px,
    rgba(186, 104, 200, 0.05) 20px
  );
  z-index: 0;
}

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

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

.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, #ff4081, #f06292);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(240, 98, 146, 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 #f06292;
  opacity: 0.7;
}

.about-timeline-content {
  width: 50%;
  background: linear-gradient(135deg, #fce4ec, #fff3e0);
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(240, 98, 146, 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(240, 98, 146, 0.4);
  background: linear-gradient(135deg, #fff3e0, #fce4ec);
}

.about-timeline-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(252, 228, 236, 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: #6a1b9a;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

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

.about-timeline-icon {
  position: relative;
  background-color: #f06292;
  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(240, 98, 146, 0.5);
}

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

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

.css-icon-founding::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 30px;
  background: #ffe082;
  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: #f06292;
  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: #ffe082;
  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: #ba68c8;
  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: #ffe082;
  border-radius: 50%;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px #ffe082;
}

.css-icon-global::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: conic-gradient(#f06292 0% 33%, #ffffff 33% 66%, #7b1fa2 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: #6a1b9a;
  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: linear-gradient(135deg, #f06292, #ff4081);
  color: #fce4ec;
}

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

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

.about-team-item {
  background: linear-gradient(#ba68c8, #8e24aa);
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.about-team-item .css-icon {
  width: 100%;
  height: 200px;
}

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

.about-team-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fce4ec;
}

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

/* Company Values - Circular progress-like visuals */
.about-values {
  padding: 60px 0;
  background: linear-gradient(#fff3e0, #ffe0b2);
  text-align: center;
}

.about-values h2 {
  font-size: 1.5rem;
  color: #4a148c;
  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(#9e1fa2 0% 80%, #e1bee7 80% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 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: #4a148c;
}

.about-awards {
  padding: 60px 0;
  background: linear-gradient(135deg, #ff4081, #f06292);
  color: #fce4ec;
  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: #ffe082;
  text-shadow: 0 0 10px #ff4081;
  animation: award-glow 2s infinite alternate;
}

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

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

.about-awards-item {
  background: linear-gradient(#ffe082, #ffca28);
  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 .css-icon {
  width: 100%;
  height: 300px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px #ff4081);
  transition: filter 0.3s ease;
}

.about-awards-item:hover .css-icon {
  filter: drop-shadow(0 0 15px #ffe082);
}

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

/* Project Ecosystem - Connection diagram */
.about-ecosystem {
  padding: 60px 0;
  background: linear-gradient(#fce4ec, #fff3e0);
  text-align: center;
}

.about-ecosystem h2 {
  font-size: 1.5rem;
  color: #4a148c;
  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: linear-gradient(#e1bee7, #f3e5f5);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 0.2);
  transition: transform 0.3s ease;
}

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

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

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

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

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

.about-mission p strong {
  color: #ffe082;
  text-shadow: 0 0 5px #6a1b9a;
}

/* Office Gallery - Masonry grid */
.about-office-gallery {
  padding: 60px 0;
  background: linear-gradient(#fff3e0, #ffe0b2);
}

.about-office-gallery h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #4a148c;
  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) {
  .about-gallery-item:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }
}

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

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

.about-gallery-item .css-icon {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* Growth Numbers - Animated infographics */
.about-growth {
  padding: 60px 0;
  background: linear-gradient(135deg, #f06292, #ff4081);
  color: #fce4ec;
  text-align: center;
}

.about-growth h2 {
  font-size: 1.5rem;
  color: #4a148c;
  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: #7b1fa2;
  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: linear-gradient(135deg, #6a1b9a, #4a148c);
  color: #fce4ec;
  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: #f06292;
  color: #fce4ec;
  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: #7b1fa2;
}

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

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px;
}

.contact-hero {
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  animation: rotateGlow 15s linear infinite;
}
@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact-hero-content h1 {
  color: #2d3436;
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInDown 1s ease-out;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-map {
  background: #fff1e6;
  padding: 40px 0;
}
.contact-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.contact-map iframe:hover {
  transform: scale(1.02);
}

.contact-facts {
  background: linear-gradient(45deg, #81ecec 0%, #55efc4 100%);
  padding: 50px 0;
  text-align: center;
}
.contact-facts h2 {
  color: #1e272e;
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.contact-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.contact-facts-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-facts-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.contact-facts-number {
  display: block;
  font-size: 2rem;
  color: #d63031;
  margin-bottom: 10px;
}
.contact-facts-item p {
  color: #2d3436;
  font-size: 1.1rem;
}

.contact-details {
  background: #dfe6e9;
  padding: 50px 0;
}
.contact-details h2 {
  color: #2d3436;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
}
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.contact-details-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-details-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.css-icon-location,
.css-icon-phone,
.css-icon-email {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  position: relative;
}
.css-icon-location::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 32px;
  background: #e17055;
  clip-path: path(
    "M12 2C7.58 2 4 5.58 4 10c0 5.25 8 13 8 13s8-7.75 8-13c0-4.42-3.58-8-8-8zm0 11c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.css-icon-location::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #feca57;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulsePin 2s infinite;
}
@keyframes pulsePin {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
}
.css-icon-phone::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: #54a0ff;
  clip-path: path(
    "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z"
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.css-icon-phone::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ff9f43;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: vibrate 1.5s infinite;
}
@keyframes vibrate {
  0%,
  100% {
    transform: translate(-50%, -50%) translateX(0);
  }
  25% {
    transform: translate(-50%, -50%) translateX(2px);
  }
  75% {
    transform: translate(-50%, -50%) translateX(-2px);
  }
}
.css-icon-email::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 20px;
  background: #ff6b6b;
  clip-path: path(
    "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.css-icon-email::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #feca57;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
  }
}
.contact-details-item p {
  color: #2d3436;
  font-size: 1.1rem;
}
.contact-details-item a {
  color: #e84393;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-details-item a:hover {
  color: #b53471;
}
.contact-details-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #b53471;
  transition: width 0.3s ease;
}
.contact-details-item a:hover::after {
  width: 100%;
}

.contact-quote {
  background: linear-gradient(90deg, #54a0ff 0%, #00d2d3 100%);
  padding: 40px 20px;
  text-align: center;
  position: relative;
}
.contact-quote q {
  color: #2d3436;
  font-size: 1.5rem;
  font-style: italic;
  display: block;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-quote::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.contact-faq {
  background: #f7e7ce;
  padding: 50px 0;
}
.contact-faq h2 {
  color: #2d3436;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
}
.contact-faq-item {
  margin: 15px 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  overflow: hidden;
}
.contact-faq-item input {
  opacity: 0;
}
.contact-faq-question {
  display: block;
  padding: 15px;
  background: #e17055;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-faq-question:hover {
  background: #c7503b;
}
.contact-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}
.contact-faq-item input:checked ~ .contact-faq-answer {
  max-height: 200px;
  padding: 15px;
}
.contact-faq-answer p {
  color: #2d3436;
  font-size: 1.1rem;
}

.contact-form {
  background: linear-gradient(45deg, #ff9f43 0%, #feca57 100%);
  padding: 50px 0;
}
.contact-form h2 {
  color: #2d3436;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
}
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.contact-form-group {
  margin-bottom: 20px;
}
.contact-form-group label {
  display: block;
  color: #2d3436;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #81ecec;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: #00d2d3;
  box-shadow: 0 0 8px rgba(0, 210, 211, 0.3);
  outline: none;
}
.contact-form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-privacy {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.contact-privacy input {
  margin-right: 10px;
}
.contact-privacy label {
  color: #2d3436;
  font-size: 1rem;
}
.contact-privacy a {
  color: #e84393;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-privacy a:hover {
  color: #b53471;
}
.contact-form-submit {
  display: block;
  width: 100%;
  padding: 12px;
  background: #e84393;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.contact-form-submit:hover {
  background: #b53471;
  transform: translateY(-2px);
}

.contact-closing {
  background: #dfe6e9;
  padding: 50px 0;
  text-align: center;
}
.contact-closing h2 {
  color: #2d3436;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.contact-closing p {
  color: #2d3436;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 20px;
}
.contact-closing-cta {
  display: inline-block;
  padding: 12px 30px;
  background: #ff6b6b;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.contact-closing-cta:hover {
  background: #ee5253;
  transform: translateY(-2px);
}
.contact-closing-cta::after {
  content: "→";
  margin-left: 10px;
  opacity: 0;
  transition: opacity 0.3s ease, margin-left 0.3s ease;
}
.contact-closing-cta:hover::after {
  opacity: 1;
  margin-left: 15px;
}

.thanks-wrapper {
  max-width: 800px;
  margin: 50px auto;
  padding: 15px;
  background: linear-gradient(120deg, #ff8a5c 0%, #ffcc70 100%);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.thanks-wrapper::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  animation: pulseGlow 8s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}
.thanks-title {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  animation: fadeInDown 1s ease-out;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.thanks-message {
  color: #34495e;
  font-size: 1.2rem;
  margin: 15px 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease-out;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.thanks-home-link {
  display: inline-block;
  padding: 12px 30px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}
.thanks-home-link:hover {
  background: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
}
.thanks-home-link::after {
  content: "✨";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease, right 0.3s ease;
}
.thanks-home-link:hover::after {
  opacity: 1;
  right: -20px;
}

.privacy-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 15px;
  background: linear-gradient(145deg, #f4e1d2 0%, #f7cac9 100%);
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.privacy-container::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 60%
  );
  animation: subtleWave 10s ease-in-out infinite;
}
@keyframes subtleWave {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}
.privacy-heading {
  color: #3c2f2f;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  animation: slideIn 1s ease-out;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.privacy-section {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 245, 238, 0.9);
  border-left: 5px solid #e07a5f;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.privacy-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(224, 122, 95, 0.3);
}
.privacy-section h2 {
  color: #4a3728;
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
}
.privacy-section h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #81b29a;
  transition: width 0.4s ease;
}
.privacy-section:hover h2::after {
  width: 100px;
}
.privacy-section p {
  color: #5c4033;
  font-size: 1.1rem;
  line-height: 1.7;
  animation: fadeInText 1.2s ease-out;
}
@keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.privacy-section a {
  color: #d1495b;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}
.privacy-section a:hover {
  color: #a5384a;
}
.privacy-section a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #a5384a;
  transition: width 0.3s ease;
}
.privacy-section a:hover::after {
  width: 100%;
}

.terms-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 15px;
  background: linear-gradient(135deg, #f9d8a9 0%, #f28c38 100%);
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.terms-container::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 60%
  );
  animation: glowPulse 12s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.4;
  }
}
.terms-heading {
  color: #4a2c1b;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  animation: slideIn 1s ease-out;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.terms-section {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 245, 238, 0.9);
  border-left: 5px solid #d97706;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.terms-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}
.terms-section h2 {
  color: #5b3a29;
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
}
.terms-section h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #f4a261;
  transition: width 0.4s ease;
}
.terms-section:hover h2::after {
  width: 100px;
}
.terms-section p {
  color: #6b4e31;
  font-size: 1.1rem;
  line-height: 1.7;
  animation: fadeInText 1.2s ease-out;
}
@keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.terms-section a {
  color: #e76f51;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}
.terms-section a:hover {
  color: #b5553e;
}
.terms-section a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #b5553e;
  transition: width 0.3s ease;
}
.terms-section a:hover::after {
  width: 100%;
}

.contact-privacy {
  display: flex;
  align-items: baseline;
}

#privacy {
  width: 15px;
  margin-right: 15px;
}
