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

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif Devanagari", serif;
  background-color: #1a1a2e; /* Deep midnight blue for a dark, immersive feel */
  color: #e6e6fa; /* Soft lavender for readable text */
  line-height: 1.6;
}

.main-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
}

.main-header {
  background: linear-gradient(
    to top,
    #162447 30%,
    /* Deep navy blue */ #2f4f4f 30% 70%,
    /* Dark teal */ #c72c41 70% /* Vibrant ruby red */
  );
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 20;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

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

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

.main-logo-link:hover {
  transform: scale(1.1);
  color: #ffb84d; /* Saffron glow */
  text-shadow: 0 0 10px #ffb84d, 0 0 20px #c72c41;
}

.main-nav-menu {
  display: flex;
}

.main-nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav-item a {
  color: #e6e6fa;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.main-nav-item a:hover {
  background: #c72c41;
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(199, 44, 65, 0.5);
}

.main-burger-icon {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.main-burger-line {
  width: 28px;
  height: 4px;
  background: #e6e6fa;
  border-radius: 2px;
  transition: all 0.4s ease, background 0.3s ease;
}

.main-burger-icon.open .main-burger-line {
  background: #ffb84d;
}

.main-burger-icon.open .main-burger-line:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}

.main-burger-icon.open .main-burger-line:nth-child(2) {
  opacity: 0;
}

.main-burger-icon.open .main-burger-line:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .main-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #2f4f4f;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  }
  .main-nav-menu.visible {
    display: block;
  }
  .main-nav-list {
    flex-direction: column;
    gap: 10px;
  }
  .main-burger-icon {
    display: flex;
  }
}

.main-title {
  text-align: center;
  font-size: 2rem;
  color: #2ecc71; /* Emerald green */
  margin: 80px 0 40px;
  animation: main-title-glow 2s ease-in-out infinite alternate;
}

@keyframes main-title-glow {
  from {
    text-shadow: 0 0 8px #c72c41;
  }
  to {
    text-shadow: 0 0 20px #c72c41, 0 0 30px #ffb84d;
  }
}

.main-hero-section {
  position: relative;
  height: 70vh;
  background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)),
    radial-gradient(circle, #2f4f4f, #1a1a2e);
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.main-hero-section::before {
  content: "🎮";
  position: absolute;
  font-size: 10rem;
  color: rgba(199, 44, 65, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 0;
}

.main-hero-content {
  text-align: center;
  color: #e6e6fa;
  font-size: 2rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  animation: main-hero-pulse 3.5s infinite ease-in-out;
  background: rgba(47, 79, 79, 0.6);
  padding: 20px;
  border-radius: 10px;
  z-index: 1;
}

@keyframes main-hero-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.main-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 50px 0;
  text-align: center;
}

.main-action-block {
  background: #4b0082; /* Deep amethyst purple */
  padding: 25px;
  border-radius: 15px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-action-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(199, 44, 65, 0.6);
}

.main-action-block::before {
  content: "🪔";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #ffb84d;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.main-action-block:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}

.main-action-icon {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #2ecc71, transparent);
  border-radius: 10px;
}

.main-action-icon::before {
  content: "🎲";
  font-size: 4rem;
  color: #e6e6fa;
  text-shadow: 0 0 10px #c72c41;
}

.main-action-desc {
  color: #e6e6fa;
  margin-top: 15px;
}

.main-projects-display {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
  margin: 50px 0;
}

.main-project-large {
  grid-row: span 2;
}

.main-project-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: radial-gradient(circle, #4b0082, #2f4f4f);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.main-project-img::before {
  content: "🖼️";
  font-size: 3rem;
  color: #ffb84d;
  text-shadow: 0 0 10px #c72c41;
}

.main-project-img:hover {
  transform: scale(1.05);
  filter: brightness(1.3) drop-shadow(0 0 10px #ffb84d);
}

.main-stats-overview {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin: 50px 0;
}

.main-stat-unit {
  text-align: center;
  width: 220px;
  margin: 15px;
}

.main-stat-value {
  font-size: 2rem;
  color: #c72c41;
}

.main-stat-bar {
  background: #2f4f4f;
  height: 12px;
  border-radius: 6px;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
}

.main-stat-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 25%,
    rgba(255, 184, 77, 0.3) 50%,
    transparent 75%
  );
  animation: main-stat-shine 2s infinite linear;
}

@keyframes main-stat-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.main-stat-progress {
  background: #4b0082;
  height: 100%;
  width: 0;
  transition: width 2.5s ease-out;
}

.main-influence-chart {
  text-align: center;
  margin: 50px 0;
}

.main-influence-items {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.main-influence-node {
  background: #2ecc71;
  color: #e6e6fa;
  padding: 20px;
  border-radius: 20px;
  width: 180px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.main-influence-node:hover {
  transform: rotate(5deg) scale(1.1);
  background: #c72c41;
  box-shadow: 0 0 15px rgba(199, 44, 65, 0.5);
}

.main-influence-node::before {
  content: "🌟";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #ffb84d;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-influence-node:hover::before {
  opacity: 1;
}

.main-daily-quote {
  background: #c72c41;
  color: #e6e6fa;
  padding: 50px;
  text-align: center;
  margin: 50px 0;
  border-radius: 20px;
  position: relative;
}

.main-daily-quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 2rem;
  color: #ffb84d;
  opacity: 0.5;
}

.main-daily-quote::after {
  content: "”";
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 2rem;
  color: #ffb84d;
  opacity: 0.5;
}

.main-quote-phrase {
  font-size: 1rem;
  font-style: italic;
}

.main-process-guide {
  background: linear-gradient(135deg, #c72c41 0%, #ffb84d 100%);
  padding: 3rem 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.main-timeline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.main-timeline-step {
  background: rgba(26, 26, 46, 0.9);
  border-radius: 10px;
  padding: 1.5rem;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-timeline-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

.main-timeline-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 184, 77, 0.3),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-timeline-step:hover::before {
  opacity: 1;
}

.main-step-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.main-timeline-step:nth-child(1) .main-step-icon {
  background: conic-gradient(#c72c41, #ffb84d, #c72c41);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-timeline-step:nth-child(1) .main-step-icon::before {
  content: "🪔";
  font-size: 2rem;
  color: #e6e6fa;
}

.main-timeline-step:nth-child(2) .main-step-icon {
  background: linear-gradient(45deg, #ff69b4, #2ecc71);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-timeline-step:nth-child(2) .main-step-icon::before {
  content: "🌿";
  font-size: 2rem;
  color: #e6e6fa;
}

.main-timeline-step:nth-child(3) .main-step-icon {
  background: radial-gradient(circle, #4b0082, #2f4f4f);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}

.main-timeline-step:nth-child(3) .main-step-icon::before {
  content: "🤝";
  font-size: 2rem;
  color: #ffb84d;
  transform: rotate(-45deg);
}

.main-timeline-step:nth-child(4) .main-step-icon {
  background: linear-gradient(90deg, #2ecc71, #ffb84d);
  clip-path: circle(50% at 50% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.main-timeline-step:nth-child(4) .main-step-icon::before {
  content: "🦚";
  font-size: 2rem;
  color: #c72c41;
}

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

.main-timeline-step p {
  color: #e6e6fa;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.main-timeline-step:hover p {
  color: #ffb84d;
}

@media (max-width: 768px) {
  .main-timeline-list {
    flex-direction: column;
    align-items: center;
  }
  .main-timeline-step {
    width: 100%;
    max-width: 350px;
  }
}

.main-community-view {
  background: linear-gradient(145deg, #c72c41 0%, #ffb84d 100%);
  padding: 3rem 1rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.main-community-view h2 {
  color: #e6e6fa;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.main-member-profile {
  background: rgba(26, 26, 46, 0.9);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  width: 800px;
  margin: 0 auto 1.5rem;
}

.main-member-profile:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.6);
}

.main-member-profile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(199, 44, 65, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.main-member-profile:hover::after {
  opacity: 1;
}

.main-member-avatar {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffb84d;
  border-radius: 50%;
  overflow: hidden;
}

.main-member-profile:nth-child(1) .main-member-avatar {
  background: conic-gradient(#c72c41, #ffb84d, #c72c41);
}

.main-member-profile:nth-child(1) .main-member-avatar::before {
  content: "🎮";
  font-size: 2rem;
  color: #e6e6fa;
}

.main-member-profile:nth-child(2) .main-member-avatar {
  background: linear-gradient(45deg, #2ecc71, #ff69b4);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.main-member-profile:nth-child(2) .main-member-avatar::before {
  content: "🌊";
  font-size: 2rem;
  color: #e6e6fa;
}

.main-member-profile:nth-child(3) .main-member-avatar {
  background: radial-gradient(circle, #4b0082, #2f4f4f);
  border-radius: 20px;
  transform: rotate(15deg);
}

.main-member-profile:nth-child(3) .main-member-avatar::before {
  content: "⚔️";
  font-size: 2rem;
  color: #ffb84d;
  transform: rotate(-15deg);
}

.main-member-profile:nth-child(4) .main-member-avatar {
  background: linear-gradient(90deg, #2ecc71, #ffb84d);
  clip-path: circle(50% at 50% 50%);
  animation: glow 1.5s infinite;
}

.main-member-profile:nth-child(4) .main-member-avatar::before {
  content: "🖌️";
  font-size: 2rem;
  color: #c72c41;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
  }
}

.main-member-profile p {
  color: #e6e6fa;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.main-member-profile:hover p {
  color: #ffb84d;
}

@media (max-width: 768px) {
  .main-community-view {
    padding: 2rem 1rem;
  }
  .main-member-profile {
    width: 100%;
    max-width: 300px;
  }
}

.main-offers-slider {
  overflow: hidden;
  margin: 50px 0;
}

.main-slider-track {
  display: flex;
  animation: main-scroll 25s linear infinite;
}

.main-offer-card {
  flex: 0 0 320px;
  background: #4b0082;
  color: #e6e6fa;
  padding: 25px;
  margin-right: 25px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.main-offer-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(199, 44, 65, 0.3) 10%,
    transparent 40%
  );
  transition: transform 0.5s ease;
}

.main-offer-card:hover::after {
  transform: scale(1.5);
}

@keyframes main-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1020px);
  }
}

.main-closing-call {
  background: radial-gradient(circle, #2f4f4f, #1a1a2e);
  color: #e6e6fa;
  text-align: center;
  padding: 70px 20px;
  margin: 50px 0 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  position: relative;
}

.main-closing-call::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.4),
    rgba(46, 204, 113, 0.3)
  );
  z-index: 0;
}

.main-motivate-message {
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.main-footer {
  background: linear-gradient(to left, #4b0082, #2ecc71);
  color: #e6e6fa;
  padding: 50px 0;
}

.main-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  text-align: left;
}

.main-footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  border-bottom: 2px dotted #ffb84d;
  padding-bottom: 10px;
}

.main-footer-list {
  list-style: none;
}

.main-footer-link {
  color: #ffb84d;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s ease, padding-left 0.3s ease, transform 0.3s ease;
}

.main-footer-link:hover {
  color: #c72c41;
  padding-left: 8px;
  transform: scale(1.05);
}

.main-footer-map {
  height: 200px;
  background: #2f4f4f;
  border-radius: 10px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.main-footer-map iframe {
  width: 100%;
}

.main-footer-map::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 25%,
    rgba(255, 184, 77, 0.3) 50%,
    transparent 75%
  );
  animation: main-map-shine 3s infinite linear;
}

@keyframes main-map-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.main-footer-copyright {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #ffb84d;
  padding-top: 25px;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .main-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-projects-display {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-hero-section {
    height: 50vh;
  }
  .main-hero-content {
    font-size: 2rem;
  }
  .main-actions-grid,
  .main-projects-display {
    grid-template-columns: 1fr;
  }
  .main-stats-overview {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main-influence-items {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main-footer-grid {
    grid-template-columns: 1fr;
  }
  .main-slider-track {
    animation-duration: 35s;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }
  .main-action-icon {
    width: 100%;
  }
  .main-member-avatar {
    width: 100px;
    height: 100px;
  }
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
}

.services-title {
  text-align: center;
  font-size: 2rem;
  color: #2ecc71;
  margin: 80px 0 40px;
  animation: services-title-slide 1.5s ease-out;
}

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

.services-hero {
  background: #1a1a2e;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 50px;
}

.services-hero-content {
  color: #e6e6fa;
  font-size: 2rem;
  margin-bottom: 20px;
}

.services-hero-btn {
  display: inline-block;
  padding: 15px 30px;
  background: #c72c41;
  color: #e6e6fa;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-hero-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #ffb84d;
}

.services-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px 0;
}

.services-matrix-item {
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-matrix-item:nth-child(1) {
  background: #4b0082;
}

.services-matrix-item:nth-child(2) {
  background: #2ecc71;
}

.services-matrix-item:nth-child(3) {
  background: #c72c41;
}

.services-matrix-item:nth-child(4) {
  background: #2f4f4f;
  color: #e6e6fa;
}

.services-matrix-item:nth-child(5) {
  background: #1a1a2e;
}

.services-matrix-item:nth-child(6) {
  background: #ffb84d;
  color: #1a1a2e;
}

.services-matrix-item:nth-child(7) {
  background: #c72c41;
}

.services-matrix-item:nth-child(8) {
  background: #4b0082;
}

.services-matrix-item:nth-child(9) {
  background: #2ecc71;
}

.services-matrix-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.services-matrix-item h3 {
  color: #e6e6fa;
  margin-bottom: 10px;
}

.services-matrix-item p {
  color: #e6e6fa;
}

.services-matrix-item:nth-child(4) h3,
.services-matrix-item:nth-child(6) h3,
.services-matrix-item:nth-child(4) p,
.services-matrix-item:nth-child(6) p {
  color: #e6e6fa;
}

.services-case-study {
  margin: 50px 0;
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.services-tab-btn {
  padding: 10px 20px;
  background: #2f4f4f;
  color: #e6e6fa;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.services-tab-btn.active {
  background: #c72c41;
  color: #e6e6fa;
  transform: scale(1.05);
}

.services-tab-content {
  display: none;
  padding: 20px;
  background: #2f4f4f;
  border-radius: 10px;
  text-align: center;
}

.services-tab-content p {
  margin-top: 10px;
  color: #e6e6fa;
}

.services-tab-content.active {
  display: block;
}

.services-tab-img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  background: radial-gradient(circle, #4b0082, #2f4f4f);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-tab-img::before {
  content: "📸";
  font-size: 3rem;
  color: #ffb84d;
}

.services-comparison {
  margin: 50px 0;
  overflow-x: auto;
}

.services-comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.services-comparison-table th,
.services-comparison-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ffb84d;
}

.services-comparison-table th {
  background: #4b0082;
  color: #e6e6fa;
}

.services-comparison-table td {
  background: #1a1a2e;
  color: #e6e6fa;
}

.services-comparison-table tr:nth-child(even) td {
  background: #2f4f4f;
}

.services-comparison-table .highlight {
  background: #2ecc71;
}

.services-results-gallery {
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}

.services-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.services-slide {
  flex: 0 0 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.services-slide-img {
  width: 45%;
  border-radius: 10px;
  background: radial-gradient(circle, #2ecc71, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-slide-img::before {
  content: "🖼️";
  font-size: 2rem;
  color: #ffb84d;
}

.services-faq {
  margin: 50px 0;
}

.services-faq-item {
  margin-bottom: 10px;
}

.services-faq-question {
  background: #4b0082;
  color: #e6e6fa;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

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

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

.services-faq-answer {
  display: none;
  padding: 15px;
  background: #2f4f4f;
  border-radius: 8px;
  margin-top: 5px;
}

.services-faq-answer.active {
  display: block;
}

.services-workflow {
  margin: 50px 0;
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  background: linear-gradient(135deg, #c72c41 0%, #ffb84d 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.services-workflow h2 {
  color: #e6e6fa;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.services-workflow-step {
  flex: 0 0 200px;
  background: rgba(26, 26, 46, 0.9);
  color: #e6e6fa;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-workflow-step:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.services-workflow-step::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 20px;
  height: 2px;
  background: #ff69b4;
  transform: translateY(-50%);
}

.services-workflow-step:last-child::before {
  display: none;
}

.services-workflow-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.services-workflow-step:hover .services-workflow-icon {
  transform: rotate(15deg);
}

.services-workflow-step:nth-child(1) .services-workflow-icon {
  background: conic-gradient(#ffb84d, #c72c41, #ffb84d);
  border-radius: 50%;
}

.services-workflow-step:nth-child(1) .services-workflow-icon::before {
  content: "🪔";
  font-size: 1.5rem;
  color: #e6e6fa;
}

.services-workflow-step:nth-child(2) .services-workflow-icon {
  background: linear-gradient(45deg, #ff69b4, #2ecc71);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.services-workflow-step:nth-child(2) .services-workflow-icon::before {
  content: "🎨";
  font-size: 1.5rem;
  color: #e6e6fa;
}

.services-workflow-step:nth-child(3) .services-workflow-icon {
  background: radial-gradient(circle, #4b0082, #2f4f4f);
  border-radius: 12px;
  transform: rotate(45deg);
}

.services-workflow-step:nth-child(3) .services-workflow-icon::before {
  content: "💻";
  font-size: 1.5rem;
  color: #ffb84d;
  transform: rotate(-45deg);
}

.services-workflow-step:nth-child(4) .services-workflow-icon {
  background: linear-gradient(90deg, #2ecc71, #ffb84d);
  clip-path: circle(50% at 50% 50%);
}

.services-workflow-step:nth-child(4) .services-workflow-icon::before {
  content: "🔍";
  font-size: 1.5rem;
  color: #c72c41;
}

.services-workflow-step:nth-child(5) .services-workflow-icon {
  background: conic-gradient(#2f4f4f, #ff69b4, #2f4f4f);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.services-workflow-step:nth-child(5) .services-workflow-icon::before {
  content: "🚀";
  font-size: 1.5rem;
  color: #e6e6fa;
}

.services-workflow-step:nth-child(6) .services-workflow-icon {
  background: linear-gradient(135deg, #c72c41, #ffb84d);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.services-workflow-step:nth-child(6) .services-workflow-icon::before {
  content: "🤝";
  font-size: 1.5rem;
  color: #e6e6fa;
}

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

.services-workflow-step p {
  font-weight: 600;
  transition: color 0.3s ease;
}

.services-workflow-step:hover p {
  color: #ffb84d;
}

@media (max-width: 768px) {
  .services-workflow {
    flex-direction: column;
    align-items: center;
  }
  .services-workflow-step {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
  }
  .services-workflow-step::before {
    display: none;
  }
}

.services-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 50px 0;
}

.services-review-card {
  background: #2f4f4f;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #c72c41;
  transition: box-shadow 0.3s ease;
}

.services-review-card:hover {
  box-shadow: 0 0 15px #4b0082;
}

.services-review-stars {
  color: #ffb84d;
  margin-bottom: 10px;
}

.services-guarantees {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 50px 0;
  background: linear-gradient(135deg, #c72c41 0%, #ffb84d 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.services-guarantees h2 {
  color: #e6e6fa;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.services-guarantee-item {
  text-align: center;
  width: 200px;
  padding: 20px;
  background: rgba(26, 26, 46, 0.9);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: services-guarantee-pop 1s ease-out;
  position: relative;
  overflow: hidden;
}

.services-guarantee-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@keyframes services-guarantee-pop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.services-guarantee-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(199, 44, 65, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services-guarantee-item:hover::before {
  opacity: 1;
}

.services-guarantee-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  position: perelative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.services-guarantee-item:hover .services-guarantee-icon {
  transform: scale(1.1);
}

.services-guarantee-item:nth-child(1) .services-guarantee-icon {
  background: conic-gradient(#c72c41, #ffb84d, #c72c41);
  border-radius: 50%;
}

.services-guarantee-item:nth-child(1) .services-guarantee-icon::before {
  content: "🌸";
  font-size: 3rem;
  color: #e6e6fa;
}

.services-guarantee-item:nth-child(2) .services-guarantee-icon {
  background: linear-gradient(45deg, #2ecc71, #ff69b4);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.services-guarantee-item:nth-child(2) .services-guarantee-icon::before {
  content: "🪔";
  font-size: 3rem;
  color: #e6e6fa;
}

.services-guarantee-item:nth-child(3) .services-guarantee-icon {
  background: radial-gradient(circle, #4b0082, #2f4f4f);
  border-radius: 20px;
  transform: rotate(45deg);
}

.services-guarantee-item:nth-child(3) .services-guarantee-icon::before {
  content: "🌀";
  font-size: 3rem;
  color: #ffb84d;
  transform: rotate(-45deg);
}

.services-guarantee-item p {
  color: #e6e6fa;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.services-guarantee-item:hover p {
  color: #ffb84d;
}

@media (max-width: 768px) {
  .services-guarantee-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1rem;
  }
}

.services-final-call {
  background: #1a1a2e;
  color: #e6e6fa;
  text-align: center;
  padding: 60px 20px;
  border-radius: 15px;
  margin: 50px 0;
}

.services-final-text {
  font-size: 2rem;
}

.services-final-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #2ecc71;
  color: #e6e6fa;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

.services-final-btn:hover {
  transform: scale(1.1);
  background: #c72c41;
}

@media (max-width: 1024px) {
  .services-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero-content {
    font-size: 2rem;
  }
  .services-matrix,
  .services-reviews-grid {
    grid-template-columns: 1fr;
  }
  .services-tabs {
    flex-direction: column;
  }
  .services-workflow {
    flex-direction: column;
  }
  .services-workflow-step {
    flex: 0 0 auto;
  }
  .services-workflow-step::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 2rem;
  }
  .services-hero-content {
    font-size: 1rem;
  }
  .services-final-text {
    font-size: 1rem;
  }
}

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

.about-hero {
  background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)),
    radial-gradient(circle, #2f4f4f, #1a1a2e);
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb84d;
  text-align: center;
  font-family: "Noto Serif Devanagari", serif;
}

.about-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

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

.about-timeline {
  position: relative;
  padding: 2rem 0;
  background: linear-gradient(to bottom, #2f4f4f, #1a1a2e);
}

.about-timeline h2 {
  @media (max-width: 768px) {
    margin-left: 30px;
  }
}

.about-timeline::before {
  content: "";
  position: absolute;
  width: 6px;
  background: linear-gradient(to bottom, #c72c41, #4b0082);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.about-timeline-item {
  padding: 1rem 2rem;
  position: relative;
  width: 50%;
  transition: transform 0.3s ease-in-out;
}

.about-timeline-item:hover {
  transform: translateY(-5px);
}

.about-timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.about-timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.about-timeline-item::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffb84d;
  border-radius: 50%;
  top: 1.5rem;
  right: -10px;
  border: 2px solid #c72c41;
}

.about-timeline-item:nth-child(even)::before {
  left: -10px;
}

@media (max-width: 768px) {
  .about-timeline::before {
    left: 20px;
  }
  .about-timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding-left: 3rem;
  }
  .about-timeline-item::before {
    left: 10px !important;
  }
}

.about-team-card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background: #2f4f4f;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.about-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.about-team-card img {
  object-fit: cover;
  width: 100%;
  height: 350px;
  object-position: center;
  background: radial-gradient(circle, #4b0082, #2f4f4f);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-team-card img::before {
  content: "👤";
  font-size: 4rem;
  color: #ffb84d;
  text-shadow: 0 0 10px #c72c41;
}

.py-12 {
  background: linear-gradient(135deg, #c72c41 0%, #ffb84d 100%);
  padding: 3rem 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.text-3xl {
  color: #e6e6fa;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.values-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.about-values-chart {
  text-align: center;
  position: relative;
  width: 150px;
  height: 100%;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-values-chart:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.about-values-chart svg {
  transform: rotate(-90deg);
}

.about-values-chart .circle {
  fill: none;
  stroke-width: 10;
  stroke: #2f4f4f;
}

.about-values-chart .progress {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease-in-out;
}

.about-values-chart:nth-child(1) .progress {
  stroke: #c72c41;
}

.about-values-chart:nth-child(2) .progress {
  stroke: #2ecc71;
}

.about-values-chart:nth-child(3) .progress {
  stroke: #4b0082;
}

.about-values-chart:nth-child(4) .progress {
  stroke: #ffb84d;
}

.about-values-chart text {
  font-size: 1rem;
  fill: #e6e6fa;
  font-weight: bold;
  transform: rotate(90deg);
  transform-origin: center;
}

.about-values-chart::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.about-values-chart:hover::before {
  opacity: 1;
}

.about-values-chart:nth-child(1)::before {
  background: radial-gradient(circle, rgba(199, 44, 65, 0.3), transparent);
}

.about-values-chart:nth-child(2)::before {
  background: radial-gradient(circle, rgba(46, 204, 113, 0.3), transparent);
}

.about-values-chart:nth-child(3)::before {
  background: radial-gradient(circle, rgba(75, 0, 130, 0.3), transparent);
}

.about-values-chart:nth-child(4)::before {
  background: radial-gradient(circle, rgba(255, 184, 77, 0.3), transparent);
}

.about-values-chart p {
  color: #e6e6fa;
  font-weight: 600;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.about-values-chart p {
  margin-top: 0;
  margin-bottom: 0;
}

.about-values-chart:hover p {
  color: #ffb84d;
}

.about-values-chart:nth-child(1) {
  animation: pulse 2s infinite;
}

.about-values-chart:nth-child(2) {
  animation: pulse 2.2s infinite;
}

.about-values-chart:nth-child(3) {
  animation: pulse 2.4s infinite;
}

.about-values-chart:nth-child(4) {
  animation: pulse 2.6s infinite;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

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

.about-awards-item {
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.about-awards-item:hover {
  transform: scale(1.1);
}

.about-awards-item img {
  width: 200px;
  height: 150px;
  background: radial-gradient(circle, #4b0082, #2f4f4f);
  border: 3px solid #ffb84d;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-awards-item img::before {
  content: "🏆";
  font-size: 2rem;
  color: #e6e6fa;
}

.about-ecosystem-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #2f4f4f;
}

.about-ecosystem-diagram img {
  max-width: 100%;
  height: auto;
  background: radial-gradient(circle, #2ecc71, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-ecosystem-diagram img::before {
  content: "🔗";
  font-size: 3rem;
  color: #ffb84d;
}

.about-mission {
  background: linear-gradient(to right, #4b0082, #c72c41);
  color: #e6e6fa;
  padding: 1rem;
  text-align: center;
}

.about-mission span {
  font-weight: bold;
  color: #ffb84d;
}

.about-gallery {
  column-count: 2;
  column-gap: 1rem;
}

.about-gallery img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: radial-gradient(circle, #2ecc71, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}

.about-gallery img::before {
  content: "📷";
  font-size: 2rem;
  color: #ffb84d;
}

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

@media (max-width: 768px) {
  .about-gallery {
    column-count: 2;
  }
}

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

.about-growth-item {
  transition: transform 0.5s ease-in-out;
}

.about-growth-item p {
  margin-bottom: 5px;
}

.about-growth-item:hover {
  transform: translateY(-5px);
}

.about-growth-item span {
  font-size: 2rem;
  color: #c72c41;
  font-weight: bold;
}

.about-closing {
  margin: 15px 0px;
  background: linear-gradient(135deg, #c72c41 0%, #ffb84d 100%);
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.about-closing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 184, 77, 0.3),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-closing:hover::before {
  opacity: 1;
}

.about-closing h2 {
  color: #e6e6fa;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.about-closing p {
  color: #e6e6fa;
  font-size: 1.2rem;
  line-height: 1.6;
}

.about-closing span {
  color: #2ecc71;
  font-weight: 700;
  transition: color 0.3s ease;
}

.about-closing:hover span {
  color: #ffb84d;
}

.about-closing a {
  position: relative;
  z-index: 99;
  background: linear-gradient(to right, #ff69b4, #2ecc71);
  color: #e6e6fa;
  padding: 0.75rem 2.5rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-closing a:hover {
  background: linear-gradient(to left, #ff69b4, #2ecc71);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .about-closing h2 {
    font-size: 2rem;
  }
  .about-closing p {
    font-size: 1rem;
  }
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5rem;
  font-family: "Noto Serif Devanagari", serif;
}

.contact-hero {
  margin-top: 40px;
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb84d;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

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

.contact-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 700;
}

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

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 100px 5px 20px 5px;
  background: #2f4f4f;
}

.contact-method-item {
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.contact-method-item:hover {
  transform: translateY(-5px);
}

.contact-method-item a {
  color: #c72c41;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-method-item a:hover {
  color: #ffb84d;
}

.contact-form-section {
  background: linear-gradient(to right, #4b0082, #c72c41);
  padding: 1rem;
  color: #e6e6fa;
  border-radius: 10px;
}

.contact-form-section input,
.contact-form-section textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
  background: rgba(47, 79, 79, 0.9);
  color: #e6e6fa;
}

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

.contact-form-section button {
  background: #ffb84d;
  color: #1a1a2e;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form-section button:hover {
  background: #c72c41;
}

.contact-form-section .checkbox-label {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: #ffb84d;
}

.checkbox-label input {
  width: 15px;
}

.contact-form-section .checkbox-label a {
  color: #ffb84d;
  text-decoration: underline;
}

.contact-branches {
  padding: 2rem 0;
}

.contact-branch-item {
  border-bottom: 1px solid #2f4f4f;
}

.contact-branch-item summary {
  padding: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #2f4f4f;
  transition: background 0.3s ease;
}

.contact-branch-item summary:hover {
  background: #4b0082;
}

.contact-branch-item p {
  padding: 1rem;
  background: #1a1a2e;
}

.contact-hours {
  background: #4b0082;
  color: #e6e6fa;
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 10px;
}

.contact-hours .status {
  font-size: 1rem;
  font-weight: bold;
  color: #ffb84d;
}

.contact-emergency {
  background: #c72c41;
  color: #e6e6fa;
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
}

.contact-emergency a {
  color: #ffb84d;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-emergency a:hover {
  color: #2ecc71;
}

.contact-testimonials {
  padding: 2rem 0;
  background: #2f4f4f;
}

.contact-testimonial-item {
  background: #1a1a2e;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}

.contact-testimonial-item:hover {
  transform: translateY(-5px);
}

.contact-achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.contact-achievement-item {
  text-align: center;
  background: #2f4f4f;
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.contact-achievement-item:hover {
  transform: scale(1.05);
}

.contact-achievement-item span {
  font-size: 2rem;
  color: #c72c41;
  font-weight: bold;
}

.contact-slider {
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.contact-slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.contact-slider-item {
  flex: 0 0 100%;
  text-align: center;
}

.contact-slider-item img {
  width: 100%;
  max-height: 400px;
  background: radial-gradient(circle, #2ecc71, #1a1a2e);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-slider-item img::before {
  content: "🖼️";
  font-size: 2rem;
  color: #ffb84d;
}

@media (max-width: 768px) {
  .contact-slider-item img {
    max-height: 300px;
  }
}

.contact-closing {
  background: linear-gradient(to right, #4b0082, #c72c41);
  color: #e6e6fa;
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 10px;
}

.contact-closing a {
  background: #ffb84d;
  color: #1a1a2e;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-closing a:hover {
  background: #c72c41;
}

.thanks-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  font-family: "Noto Serif Devanagari", serif;
  background: #2f4f4f;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thanks-container h1 {
  font-size: 3rem;
  color: #ffb84d;
  margin-bottom: 1rem;
}

.thanks-container p {
  font-size: 1.2rem;
  color: #e6e6fa;
  margin-bottom: 2rem;
}

.thanks-container a {
  background: linear-gradient(to right, #c72c41, #ffb84d);
  color: #e6e6fa;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.thanks-container a:hover {
  transform: scale(1.05);
}

.privacy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: "Noto Serif Devanagari", serif;
  background: #2f4f4f;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.privacy-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e6e6fa;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-top: 40px;
}

.privacy-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #c72c41, #ffb84d);
  border-radius: 2px;
}

.privacy-subheading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffb84d;
  margin: 2rem 0 1rem;
  transition: color 0.3s ease;
}

.privacy-subheading:hover {
  color: #2ecc71;
}

.privacy-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e6e6fa;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.privacy-text::before {
  content: "🪔";
  position: absolute;
  left: 0;
  font-size: 1rem;
  color: #c72c41;
}

.privacy-text a {
  color: #ffb84d;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-text a:hover {
  color: #2ecc71;
}

.privacy-section {
  background: rgba(26, 26, 46, 0.9);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .privacy-heading {
    font-size: 2rem;
  }
  .privacy-subheading {
    font-size: 1.5rem;
  }
  .privacy-text {
    font-size: 1rem;
  }
}

.terms-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: "Noto Serif Devanagari", serif;
  background: #2f4f4f;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.terms-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e6e6fa;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-top: 50px;
}

.terms-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #c72c41, #ffb84d);
  border-radius: 2px;
}

.terms-subheading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffb84d;
  margin: 2rem 0 1rem;
  transition: color 0.3s ease;
}

.terms-subheading:hover {
  color: #2ecc71;
}

.terms-text::before {
  content: "📜";
  position: absolute;
  left: -20px;
  font-size: 1rem;
  color: #c72c41;
}

.terms-text {
  position: relative;
}

.terms-text a {
  color: #ffb84d;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.terms-text a:hover {
  color: #2ecc71;
}

.terms-section {
  background: rgba(26, 26, 46, 0.9);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .terms-heading {
    font-size: 2rem;
  }
  .terms-subheading {
    font-size: 1.5rem;
  }
  .terms-text {
    font-size: 1rem;
  }
}

.error-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: "Noto Serif Devanagari", serif;
  background: #2f4f4f;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-heading {
  font-size: 3rem;
  color: #c72c41;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.error-text {
  font-size: 1.2rem;
  color: #e6e6fa;
  margin-bottom: 2rem;
}

.error-text a {
  color: #ffb84d;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.error-text a:hover {
  color: #2ecc71;
}

.error-icon {
  font-size: 5rem;
  color: #ffb84d;
  margin-bottom: 1rem;
  animation: error-pulse 2s infinite;
}

@keyframes error-pulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(199, 44, 65, 0.5);
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(199, 44, 65, 0.8);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(199, 44, 65, 0.5);
  }
}

.error-btn {
  background: linear-gradient(to right, #c72c41, #ffb84d);
  color: #e6e6fa;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.error-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(to left, #c72c41, #ffb84d);
}

@media (max-width: 768px) {
  .error-heading {
    font-size: 2rem;
  }
  .error-text {
    font-size: 1rem;
  }
  .error-icon {
    font-size: 3rem;
  }
}
