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

* {
  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 {
  font-family: "Arial", sans-serif;
  background-color: #fdfdfd;
  color: #282828;
  line-height: 1.6;
}

.index-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.index-header {
  background: linear-gradient(135deg, #6a1b9a, #2196f3);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

.index-logo {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.index-logo:hover {
  color: #ffeb3b;
  transform: scale(1.1);
}

.index-nav {
  display: flex;
}

.index-nav-list {
  list-style: none;
  display: flex;
}

.index-nav-item {
  margin-left: 30px;
}

.index-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  transition: color 0.3s ease;
}

.index-nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ffeb3b;
  transition: width 0.3s ease;
}

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

.index-nav-link:hover {
  color: #ffeb3b;
}

.index-toggler {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.index-toggler-line {
  width: 30px;
  height: 3px;
  background: #ffffff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
  .index-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #6a1b9a, #2196f3);
    padding: 20px;
  }
  .index-nav.active {
    display: block;
  }
  .index-nav-list {
    flex-direction: column;
  }
  .index-nav-item {
    margin: 15px 0;
    text-align: center;
  }
  .index-toggler {
    display: flex;
  }
}

.index-main {
  padding: 40px 0;
}

.index-section {
  margin-bottom: 60px;
  padding: 40px 0;
  border-radius: 10px;
  overflow: hidden;
}

.index-hero {
  background: url("img/bg-app1.jpg") no-repeat center/cover;
  text-align: center;
  color: #ffffff;
  padding: 100px 0;
  position: relative;
}

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

.index-hero-content {
  position: relative;
  z-index: 1;
}

.index-hero-h1 {
  font-size: 30px;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease, pulse 2s infinite;
}

.index-hero-p {
  font-size: 20px;
  margin-bottom: 30px;
}

.index-hero-btn {
  background: #ffeb3b;
  color: #282828;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.index-hero-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 235, 59, 0.6);
  background: #ffc107;
}

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

@keyframes pulse {
  0% {
    text-shadow: 0 0 5px rgba(255, 235, 59, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(255, 235, 59, 0.8);
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 235, 59, 0.5);
  }
}

.index-intro {
  background: #e8f5e9;
  text-align: center;
}

.index-intro-h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #388e3c;
}

.index-intro-p {
  max-width: 800px;
  margin: 0 auto 20px;
}

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

.index-intro-icon {
  text-align: center;
}

.index-intro-icon img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.index-intro-icon:hover img {
  transform: rotate(360deg) scale(1.05);
  filter: brightness(1.1);
}

.index-featured {
  background: linear-gradient(45deg, #66bb6a, #fff176);
}

.index-featured-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #ffffff;
}

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

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

.index-featured-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.index-featured-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 30px rgba(102, 187, 106, 0.4);
}

.index-featured-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.index-featured-card-h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #388e3c;
}

.index-featured-card-p {
  margin-bottom: 15px;
}

.index-featured-card-link {
  color: #388e3c;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.index-featured-card-link::after {
  content: "→";
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.index-featured-card-link:hover::after {
  margin-left: 10px;
}

.index-story {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #e3f2fd;
}

.index-story-img {
  flex: 1;
  min-width: 300px;
}

@media (max-width: 550px) {
  .index-story-img {
    min-width: auto;
  }
}

.index-story-img img {
  width: 100%;
  border-radius: 20px 0 0 20px;
}

.index-story-content {
  flex: 1;
  padding: 20px;
}

.index-story-h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #1e88e5;
}

.index-story-p {
  margin-bottom: 20px;
}

.index-story-timeline {
  list-style: none;
}

.index-story-timeline li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.index-story-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background: #2196f3;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .index-story {
    flex-direction: column;
  }
  .index-story-img img {
    border-radius: 20px 20px 0 0;
  }
}

.index-why {
  text-align: center;
  background: #ffffff;
}

.index-why-h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #ffeb3b;
}

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

.index-why-item {
  max-width: 300px;
  padding: 20px;
  border: 2px dashed #2196f3;
  border-radius: 10px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.index-why-item:hover {
  border-color: #ffeb3b;
  background: #e3f2fd;
}

.index-why-item-h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1e88e5;
}

.index-seasonal {
  background: linear-gradient(180deg, #1e88e5, #2196f3);
  color: #ffffff;
}

.index-seasonal-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.index-seasonal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.index-seasonal-card {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 20px;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.index-seasonal-card:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.index-seasonal-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
}

.index-seasonal-card-h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.index-seasonal-card-link {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: bold;
}

.index-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fafafa;
}

.index-spotlight-content {
  padding: 20px;
}

.index-spotlight-h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #2196f3;
}

.index-spotlight-p {
  margin-bottom: 20px;
}

.index-spotlight-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

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

.index-spotlight-gallery img {
  width: 100%;
  border-radius: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.index-spotlight-gallery img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

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

.index-testimonials {
  background: #fff176;
  text-align: center;
}

.index-testimonials-h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #282828;
}

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

.index-testimonials-card {
  max-width: 400px;
  background: #ffffff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.3s ease;
}

.index-testimonials-card:hover {
  transform: translateY(-5px);
}

.index-testimonials-card::before {
  content: '"';
  font-size: 80px;
  color: #2196f3;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.3;
}

.index-testimonials-p {
  margin-bottom: 15px;
  font-style: italic;
}

.index-testimonials-h4 {
  font-size: 18px;
  color: #1e88e5;
}

.index-process {
  background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
  position: relative;
  overflow: hidden;
}

.index-process::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(33, 150, 243, 0.3) 0%,
    transparent 70%
  );
  animation: glowPulse 15s infinite alternate;
}

@keyframes glowPulse {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.5;
  }
}

.index-process-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #303f9f;
  text-shadow: 0 2px 4px rgba(48, 63, 159, 0.3);
  position: relative;
  animation: fadeInTitle 1.5s ease-out;
}

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

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

.index-process-timeline::before {
  content: "";
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, #2196f3, #3f51b5);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
}

.index-process-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  opacity: 0;
  animation: slideInStep 1s forwards;
  animation-delay: calc(0.2s * var(--step-index));
}

.index-process-step:nth-child(1) {
  --step-index: 1;
}

.index-process-step:nth-child(2) {
  --step-index: 2;
}

.index-process-step:nth-child(3) {
  --step-index: 3;
}

.index-process-step:nth-child(4) {
  --step-index: 4;
}

.index-process-step:nth-child(5) {
  --step-index: 5;
}

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

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

.index-process-step:nth-child(even) {
  animation: slideInStepEven 1s forwards;
}

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

.index-process-step-content {
  flex: 1;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(33, 150, 243, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.index-process-step-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top left,
    rgba(33, 150, 243, 0.2),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.index-process-step-content:hover::before {
  opacity: 1;
}

.index-process-step-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(33, 150, 243, 0.3);
}

.index-process-step-h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #3f51b5;
  position: relative;
}

.index-process-step-h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #2196f3;
  margin-top: 5px;
  transition: width 0.3s ease;
}

.index-process-step-content:hover .index-process-step-h3::after {
  width: 100px;
}

.index-process-step-number {
  top: -15px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3f51b5, #2196f3);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 15px rgba(33, 150, 243, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.index-process-step-number::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
  border: 2px dashed #ffeb3b;
  border-radius: 50%;
  animation: rotateBorder 10s linear infinite;
  opacity: 0.7;
}

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

.index-process-step:hover .index-process-step-number {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(33, 150, 243, 0.8);
}

@media (max-width: 768px) {
  .index-process-timeline::before {
    left: 30px;
  }
  .index-process-step {
    flex-direction: column !important;
    align-items: flex-start;
  }
  .index-process-step-number {
    left: 0;
    transform: none;
  }
  .index-process-step-content {
    margin-left: 70px;
  }
}

.index-impact {
  text-align: center;
  background: linear-gradient(90deg, #2196f3, #ffeb3b);
  color: #ffffff;
}

.index-impact-h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.index-impact-p {
  max-width: 800px;
  margin: 0 auto 30px;
}

.index-impact-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.index-impact-stat {
  background: rgba(255, 255, 255, 0.3);
  padding: 20px;
  border-radius: 10px;
  min-width: 200px;
  transition: transform 0.3s ease;
}

.index-impact-stat:hover {
  transform: scale(1.1);
}

.index-impact-stat-h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.index-subscription {
  background: #ffffff;
  text-align: center;
}

.index-subscription-h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #1e88e5;
}

.index-subscription-p {
  margin-bottom: 30px;
}

.index-subscription-block {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #e3f2fd;
  border-radius: 15px;
}

.index-subscription-h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.index-subscription-link {
  background: #2196f3;
  color: #ffffff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.index-subscription-link:hover {
  background: #ffeb3b;
  color: #282828;
}

.index-ideas {
  background: #e8f5e9;
}

.index-ideas-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #2196f3;
}

.index-ideas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.index-ideas-card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.index-ideas-card:hover {
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
  transform: translateY(-5px);
}

.index-ideas-card img {
  width: 100%;
  transition: transform 0.3s ease;
}

.index-ideas-card:hover img {
  transform: scale(1.1);
}

.index-ideas-card-content {
  padding: 10px;
}

.index-ideas-card-h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #388e3c;
}

.index-ideas-card-link {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 992px) {
  .index-ideas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.index-commitment {
  display: flex;
  flex-wrap: wrap;
  background: #fff176;
  color: #282828;
}

.index-commitment-content {
  flex: 2;
  padding: 20px;
}

.index-commitment-h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #1e88e5;
}

.index-commitment-p {
  margin-bottom: 20px;
}

.index-commitment-list {
  list-style: none;
}

.index-commitment-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.index-commitment-list img {
  width: 100px;
  margin-right: 10px;
}

.index-commitment-img {
  flex: 1;
  min-width: 300px;
}

.index-commitment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .index-commitment {
    flex-direction: column;
  }
}

.index-showcase {
  text-align: center;
  background: linear-gradient(45deg, #311b92, #5e35b1);
  position: relative;
  overflow: hidden;
}

.index-showcase::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 213, 79, 0.2), transparent 70%);
  animation: shimmer 12s infinite alternate;
}

@keyframes shimmer {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.6;
  }
}

.index-showcase-h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #f9a825;
  text-shadow: 0 2px 5px rgba(249, 168, 37, 0.4);
  position: relative;
  animation: slideIn 1.2s ease-out;
}

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

.index-showcase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  padding: 20px;
}

.index-showcase-item {
  width: 150px;
  height: 150px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.index-showcase-item:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 20px rgba(249, 168, 37, 0.5);
}

.index-showcase-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.index-showcase-unity::before {
  background: radial-gradient(circle, #7e57c2 10%, transparent 11%),
    linear-gradient(45deg, #9575cd, #42a5f5);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.index-showcase-ipl::before {
  background: linear-gradient(135deg, #ef5350, #d32f2f);
  clip-path: circle(50% at 50% 50%);
}

.index-showcase-bollywood::before {
  background: conic-gradient(#fbc02d, #f57c00, #fbc02d);
  clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
}

.index-showcase-google::before {
  background: linear-gradient(90deg, #43a047, #66bb6a);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.index-showcase-apple::before {
  background: linear-gradient(#9e9e9e, #bdbdbd);
  clip-path: path(
    "M50,10 C70,10 90,30 90,50 C90,70 70,90 50,90 C30,90 10,70 10,50 C10,30 30,10 50,10 Z M50,30 A20,20 0 0,1 70,50 A20,20 0 0,1 50,70 A20,20 0 0,1 30,50 A20,20 0 0,1 50,30 Z"
  );
}

.index-showcase-culture::before {
  background: linear-gradient(180deg, #ef6c00, #fb8c00);
  clip-path: polygon(
    50% 0%,
    80% 10%,
    100% 35%,
    80% 90%,
    50% 100%,
    20% 90%,
    0% 35%,
    20% 10%
  );
}

.index-showcase-item:hover::before {
  filter: drop-shadow(0 8px 15px rgba(249, 168, 37, 0.7)) brightness(1.3);
}

@media (max-width: 768px) {
  .index-showcase-grid {
    gap: 30px;
  }
  .index-showcase-item {
    width: 120px;
    height: 120px;
  }
}

.index-cta {
  background: url("img/bg-app2.jpg") no-repeat center/cover;
  text-align: center;
  color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.index-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 150, 243, 0.7);
}

.index-cta-content {
  position: relative;
  z-index: 1;
}

.index-cta-h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.index-cta-p {
  font-size: 22px;
  margin-bottom: 30px;
}

.index-cta-btn {
  background: #ffeb3b;
  color: #282828;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 20px;
  transition: background 0.3s ease;
}

.index-cta-btn:hover {
  background: #ffffff;
  color: #2196f3;
}

.index-footer {
  background: #212121;
  color: #ffffff;
  padding: 40px 0;
}

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

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

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

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

.index-footer-nav-link:hover {
  color: #ffffff;
}

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

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

.index-footer-contacts a {
  color: #ffeb3b;
  text-decoration: none;
}

.index-footer-policies {
  list-style: none;
  display: flex;
  gap: 20px;
}

.index-footer-policies a {
  color: #ffeb3b;
  text-decoration: none;
}

.index-footer-copyright {
  text-align: center;
  border-top: 1px solid #424242;
  padding-top: 20px;
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.service-section {
  padding: 60px 0;
}

.service-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url("img/bg-app3.jpg") no-repeat center/cover;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(33, 150, 243, 0.6), rgba(255, 235, 59, 0.4));
  z-index: -1;
}

.service-hero-content {
  text-align: center;
  color: #ffffff;
  z-index: 1;
  max-width: 800px;
  background: #0000007a;
}

.service-hero-h1 {
  font-size: 52px;
  margin-bottom: 20px;
  animation: slideInUp 1s ease;
}

.service-hero-p {
  font-size: 22px;
  margin-bottom: 30px;
}

.service-hero-cta {
  background: #2196f3;
  color: #ffffff;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-hero-cta:hover {
  background: #ffeb3b;
  color: #282828;
  transform: translateY(-3px);
}

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

@media (max-width: 768px) {
  .service-hero-h1 {
    font-size: 30px;
  }
  .service-hero-p {
    font-size: 18px;
  }
}

.service-featured-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: #1e88e5;
}

.service-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card-span-2 {
  grid-column: span 2;
}

.service-featured-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.service-featured-card:hover {
  transform: rotateY(5deg) scale(1.02);
  box-shadow: 0 20px 40px rgba(33, 150, 243, 0.3);
}

.service-featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-featured-card-h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2196f3;
}

.service-featured-card-p {
  margin-bottom: 20px;
  color: #757575;
}

.service-featured-card-link {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  padding: 10px 20px;
  background: #1e88e5;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.service-featured-card-link:hover {
  background: #2196f3;
}

@media (max-width: 992px) {
  .service-card-span-2 {
    grid-column: span 1;
  }
  .service-featured-grid {
    grid-template-columns: 1fr;
  }
}

.service-impact-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: #282828;
}

.service-impact-counters {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.service-impact-counter {
  text-align: center;
}

.service-impact-number {
  font-size: 64px;
  font-weight: bold;
  color: #2196f3;
  display: block;
  transition: color 0.3s ease;
}

.service-impact-label {
  font-size: 20px;
  color: #757575;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .service-impact-counters {
    gap: 40px;
  }
  .service-impact-number {
    font-size: 30px;
  }
}

.service-spotlight-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-spotlight-image img {
  width: 100%;
  border-radius: 15px;
}

.service-spotlight-content {
  background: #e8f5e9;
  padding: 20px;
  border-radius: 15px;
}

.service-spotlight-h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #1e88e5;
}

.service-spotlight-p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-spotlight-link {
  background: #ffeb3b;
  color: #282828;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.service-spotlight-link:hover {
  background: #2196f3;
  color: #ffffff;
}

@media (max-width: 768px) {
  .service-spotlight-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.service-process-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: #2196f3;
}

.service-process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.service-process-timeline::before {
  content: "";
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, #ffeb3b, #2196f3);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.service-process-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.service-process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.service-process-number {
  width: 60px;
  height: 60px;
  background: #1e88e5;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
}

.service-process-content {
  flex: 1;
  padding: 20px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin: 0 30px;
}

.service-process-h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #282828;
}

@media (max-width: 768px) {
  .service-process-timeline::before {
    left: 30px;
  }
  .service-process-step {
    flex-direction: column !important;
    align-items: flex-start;
  }
  .service-process-step:nth-child(even) {
    align-items: flex-start;
  }
  .service-process-number {
    position: absolute;
    left: 0;
    transform: none;
  }
  .service-process-content {
    margin-left: 90px;
    margin-top: 30px;
  }
}

.service-seasonal-banner {
  background: linear-gradient(135deg, #2196f3, #1e88e5, #ffeb3b);
  text-align: center;
  padding: 60px 40px;
  border-radius: 25px;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(33, 150, 243, 0.3);
}

.service-seasonal-h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.service-seasonal-p {
  font-size: 20px;
  margin-bottom: 30px;
}

.service-seasonal-cta {
  background: #ffffff;
  color: #2196f3;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 35px;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-seasonal-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .service-seasonal-banner {
    padding: 40px 20px;
  }
  .service-seasonal-h2 {
    font-size: 20px;
  }
}

.service-testimonials-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: #ffeb3b;
}

.service-testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.service-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.service-testimonial-card {
  min-width: 100%;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-testimonial-text {
  font-size: 22px;
  font-style: italic;
  margin-bottom: 20px;
  color: #757575;
}

.service-testimonial-author {
  font-size: 20px;
  color: #2196f3;
  font-weight: bold;
}

.service-carousel-prev,
.service-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1e88e5;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s ease;
  z-index: 10;
}

.service-carousel-prev {
  left: 10px;
}

.service-carousel-next {
  right: 10px;
}

.service-carousel-prev:hover,
.service-carousel-next:hover {
  background: #2196f3;
}

@media (max-width: 768px) {
  .service-testimonial-card {
    padding: 30px 20px;
  }
  .service-testimonial-text {
    font-size: 18px;
  }
}

.service-visual-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-visual-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.service-visual-image:hover img {
  transform: scale(1.05);
}

.service-visual-content {
  padding: 20px;
}

.service-visual-h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #1e88e5;
}

.service-visual-p {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
}

@media (max-width: 768px) {
  .service-visual-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.service-why-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: #282828;
}

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

.service-why-item {
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.service-why-item img {
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(33, 150, 243, 0.3));
}

.service-why-h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2196f3;
}

.service-why-item p {
  color: #777777;
}

.service-cta {
  background: linear-gradient(135deg, #2196f3, #ffeb3b);
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

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

.service-cta-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.service-cta-h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.service-cta-p {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta-btn {
  background: #ffffff;
  color: #2196f3;
  padding: 20px 50px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 22px;
  font-weight: bold;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-cta-btn:hover {
  color: #ffeb3b;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .service-cta-h2 {
    font-size: 20px;
  }
  .service-cta-p {
    font-size: 18px;
  }
  .service-cta-btn {
    padding: 15px 30px;
    font-size: 18px;
  }
}

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

.about-section {
  padding: 60px 0;
}

.about-h1 {
  text-align: center;
  font-size: 30px;
  color: #2196f3;
  margin-bottom: 40px;
}

.about-intro-h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #1e88e5;
  text-align: center;
}

.about-intro-p {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.7;
}

.about-story-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: #ffeb3b;
}

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

.about-story-timeline::before {
  content: "";
  position: absolute;
  width: 2px;
  background: #2196f3;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about-story-step {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

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

.about-story-year {
  width: 80px;
  height: 80px;
  background: #fff176;
  color: #282828;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  z-index: 1;
}

.about-story-content {
  flex: 1;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  margin: 0 20px;
}

.about-story-h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1e88e5;
}

@media (max-width: 768px) {
  .about-story-timeline::before {
    left: 40px;
  }
  .about-story-step {
    flex-direction: column !important;
    align-items: flex-start;
  }
  .about-story-year {
    position: absolute;
    left: 0;
  }
  .about-story-content {
    margin-left: 100px;
    margin-top: 20px;
  }
}

.about-founder-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  background: #fafafa;
  padding: 20px;
  border-radius: 20px;
}

.about-founder-image img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-founder-blockquote {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 20px;
  color: #555555;
  position: relative;
}

.about-founder-blockquote::before {
  content: "“";
  font-size: 80px;
  color: #2196f3;
  position: absolute;
  top: -20px;
  left: -30px;
}

.about-founder-cite {
  font-size: 18px;
  color: #1e88e5;
  font-weight: bold;
}

@media (max-width: 768px) {
  .about-founder-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.about-commitment-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #282828;
}

.about-commitment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  list-style: none;
}

.about-commitment-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.about-commitment-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-right: 15px;
}

.about-impact-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #2196f3;
}

.about-impact-map {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
}

.about-impact-map img {
  width: 100%;
  transition: transform 0.3s ease;
}

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

.about-map-overlay {
  position: absolute;
  background: rgba(33, 150, 243, 0.7);
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}

.about-map-bangalore {
  bottom: 20%;
  left: 30%;
}

.about-map-delhi {
  top: 10%;
  left: 40%;
}

.about-map-mumbai {
  bottom: 45%;
  left: 20%;
}

.about-map-kolkata {
  top: 30%;
  right: 20%;
}

.about-map-chennai {
  bottom: 10%;
  left: 40%;
}

.about-map-hyderabad {
  bottom: 33%;
  left: 35%;
}

.about-impact-p {
  text-align: center;
  font-size: 18px;
  color: #757575;
}

@media (max-width: 768px) {
  .about-map-overlay {
    font-size: 12px;
    padding: 5px;
  }
}

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

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

.about-team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.about-team-member:hover {
  transform: scale(1.05);
}

.about-team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.about-team-name {
  font-size: 20px;
  font-weight: bold;
  color: #1e88e5;
}

.about-team-role {
  font-size: 16px;
  color: #757575;
}

.about-why-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #282828;
}

.about-why-progress {
  max-width: 800px;
  margin: 0 auto;
}

.about-progress-item {
  margin-bottom: 20px;
}

.about-progress-label {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 5px;
  color: #2196f3;
}

.about-progress-bar {
  height: 20px;
  background: #eeeeee;
  border-radius: 10px;
  overflow: hidden;
}

.about-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #fff176, #1e88e5);
  transition: width 1s ease-in-out;
}

.about-partners-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #1e88e5;
}

.about-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  justify-items: center;
}

.about-partner-logo {
  transition: transform 0.3s ease;
}

.about-partner-logo:hover {
  transform: scale(1.1);
}

.about-partner-logo img {
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.about-partner-logo:hover img {
  filter: grayscale(0%);
}

.about-gallery-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #ffeb3b;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.about-gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-cta {
  position: relative;
  background: url("img/bg-app4.jpg") no-repeat center/cover;
  color: #ffffff;
  text-align: center;
}

.about-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 150, 243, 0.6);
}

.about-cta-content {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
}

.about-cta-h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about-cta-p {
  font-size: 22px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-btn {
  background: #ffeb3b;
  color: #282828;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-cta-btn:hover {
  background: #ffffff;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-h1 {
    font-size: 30px;
  }
  .about-cta-h2 {
    font-size: 20px;
  }
  .about-cta-p {
    font-size: 18px;
  }
}

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

.contact-section {
  padding: 60px 0;
}

.contact-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/bg-app5.jpg") no-repeat center/cover;
  z-index: -1;
}

.contact-hero-content {
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 20px;
}

.contact-hero-h1 {
  font-size: 30px;
}

.contact-map-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #1e88e5;
}

.contact-map iframe {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-facts-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #282828;
}

.contact-facts-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-fact-item {
  text-align: center;
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
}

.contact-fact-number {
  font-size: 30px;
  color: #2196f3;
  display: block;
}

.contact-fact-label {
  font-size: 18px;
  color: #757575;
}

.contact-info-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #ffeb3b;
}

.contact-info-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-list li {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-info-list a {
  color: #1e88e5;
  text-decoration: none;
}

.contact-info-list a:hover {
  text-decoration: underline;
}

.contact-quote {
  background: linear-gradient(135deg, #fff176, #2196f3);
  color: #ffffff;
}

.contact-quote-text {
  font-size: 20px;
  font-style: italic;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.contact-quote-text::before {
  content: "“";
  font-size: 80px;
  position: absolute;
  top: -30px;
  left: -50px;
  opacity: 0.5;
}

.contact-faq-h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #2196f3;
}

.contact-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.contact-accordion-item {
  margin-bottom: 10px;
}

.contact-accordion-button {
  background: #eeeeee;
  border: none;
  width: 100%;
  padding: 10px;
  text-align: left;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}

.contact-accordion-button::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.contact-accordion-button.active::after {
  content: "-";
}

.contact-accordion-button:hover {
  background: #dddddd;
}

.contact-accordion-panel {
  display: none;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #dddddd;
}

.contact-accordion-panel.active {
  display: block;
}

.contact-closing {
  position: relative;
  color: #ffffff;
}

.contact-closing-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/bg-app6.jpg") no-repeat center/cover;
  z-index: -1;
}

.contact-closing-content {
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  border-radius: 20px;
}

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

.contact-closing-p {
  font-size: 20px;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  color: #000000;
}

.contact-checkbox {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
}

#privacy {
  width: 20px;
}

.contact-checkbox label {
  font-size: 16px;
}

.contact-checkbox a {
  color: #ffeb3b;
}

.contact-submit-btn {
  background: #1e88e5;
  color: #ffffff;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-submit-btn:hover {
  background: #2196f3;
}

@media (max-width: 768px) {
  .contact-hero-h1 {
    font-size: 20px;
  }
  .contact-facts-grid {
    flex-direction: column;
    align-items: center;
  }
}

.thanks-page-container {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #1e88e5, #fff176);
  text-align: center;
  padding: 40px 20px;
}

.thanks-page-container a {
  color: #ffffff;
  text-decoration: none;
}

.thanks-page-heading {
  font-size: 30px;
  color: #282828;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.thanks-page-message {
  font-size: 20px;
  color: #444444;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.thanks-page-home-btn {
  display: inline-block;
  padding: 15px 35px;
  background: #2196f3;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0px;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.thanks-page-home-btn:hover {
  background: #282828;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .thanks-page-heading {
    font-size: 30px;
  }
  .thanks-page-message {
    font-size: 18px;
  }
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px;
}

.privacy-section {
  padding: 40px 0;
}

.privacy-hero-h1 {
  font-size: 30px;
  color: #282828;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.privacy-content-h2 {
  font-size: 20px;
  color: #1e88e5;
  margin-bottom: 20px;
  text-align: left;
}

.privacy-content-h3 {
  font-size: 20px;
  color: #2196f3;
  margin: 30px 0 15px;
  font-weight: 600;
}

.privacy-content-p {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
}

.privacy-main {
  background: #fafafa;
  min-height: 100vh;
}

.privacy-content {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.privacy-content a {
  color: #ffeb3b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-content a:hover {
  color: #2196f3;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-hero-h1 {
    font-size: 30px;
  }
  .privacy-content-h2 {
    font-size: 20px;
  }
  .privacy-content-h3 {
    font-size: 20px;
  }
  .privacy-content-p {
    font-size: 15px;
  }
  .privacy-content {
    padding: 20px;
  }
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px;
}

.terms-section {
  padding: 40px 0;
}

.terms-hero-h1 {
  font-size: 30px;
  color: #282828;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.terms-content-h2 {
  font-size: 20px;
  color: #1e88e5;
  margin-bottom: 20px;
  text-align: left;
}

.terms-content-h3 {
  font-size: 20px;
  color: #2196f3;
  margin: 30px 0 15px;
  font-weight: 600;
}

.terms-content-p {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
}

.terms-main {
  background: #fafafa;
  min-height: 100vh;
}

.terms-content {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.terms-content a {
  color: #ffeb3b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-content a:hover {
  color: #2196f3;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-hero-h1 {
    font-size: 30px;
  }
  .terms-content-h2 {
    font-size: 20px;
  }
  .terms-content-h3 {
    font-size: 20px;
  }
  .terms-content-p {
    font-size: 15px;
  }
  .terms-content {
    padding: 20px;
  }
}

.about-why-progress {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.1),
    rgba(255, 105, 180, 0.1)
  );
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(138, 43, 226, 0.2);
}

.about-progress-item {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.about-progress-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.3),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.about-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  color: #2f2f2f;
  margin-bottom: 10px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: color 0.3s ease;
}

.about-progress-label:hover {
  color: #ff4500;
}

.about-progress-label span {
  color: #ff69b4;
  transition: transform 0.3s ease;
}

.about-progress-label:hover span {
  transform: scale(1.05);
}

.about-progress-bar {
  background: #d3d3d3;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.2) 10px,
    rgba(255, 255, 255, 0.2) 20px
  );
  opacity: 0.5;
}

.about-progress-fill {
  background: linear-gradient(90deg, #ff6347, #8a2be2);
  height: 100%;
  transition: width 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    background 0.5s ease;
  position: relative;
  overflow: hidden;
}

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

.about-progress-fill:hover::before {
  opacity: 1;
}

.about-progress-fill-95 {
  width: 95%;
  background: linear-gradient(90deg, #ff1493, #00ced1);
}

.about-progress-fill-90 {
  width: 90%;
  background: linear-gradient(90deg, #32cd32, #ff4500);
}

.about-progress-fill-98 {
  width: 98%;
  background: linear-gradient(90deg, #ff8c00, #4b0082);
}

.about-progress-fill-92 {
  width: 92%;
  background: linear-gradient(90deg, #00fa9a, #ff69b4);
}

.about-progress-fill-85 {
  width: 85%;
  background: linear-gradient(90deg, #1e90ff, #ffd700);
}

.about-progress-fill:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
}
