

.sectioning{

}

.tab-btn.active {
    background-color: #4CAF50;
    color: white;
  }

/* Ensure carousel takes full width and shows all items */
#client-slider.owl-carousel {
  width: 100%;
  overflow: visible; /* Prevent clipping of fifth logo */
}

/* Constrain logo images to fit within items */
.client-logo img {
  max-width: 100%;
  height: 130px;
  display: block;
  margin: 0 auto; /* Center images */
}

/* Adjust stage to accommodate all items */
.owl-stage {
  display: flex;
  align-items: center;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .client-logo img {
    max-width: 80px; /* Smaller images on mobile */
  }
}


/* No container, just the scrolling slider */
#client-slider {
    display: flex;
    width: 100vw; /* Use full viewport width */
    overflow: hidden; /* Hide overflow for smooth scrolling */
    position: relative;
    margin-top: 20px;
  }
  
  /* Each Item Styling */
  #client-slider .item {
    flex: 0 0 auto; /* Prevent items from shrinking */
    width: 17vw; /* 5 images will take 100% of the viewport width */
    height: 142px; /* Set fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 45px;
  }
  
  
  /* Image Styling */
  #client-slider .item img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain; /* Ensure images scale without distortion */
  }
  
  /* Keyframes for continuous scrolling */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* Apply the scrolling animation to the client logos */
  #client-slider {
    animation: scroll 30s linear infinite; /* 20s duration for smooth scrolling, adjust for speed */
  }
  
  /* Duplicate images for seamless looping */
  #client-slider::after {
    content: "";
    display: block;
    width: 100vw;
    flex-shrink: 0;
  }
  
  /* (Optional) Adjust for smaller screens */
  @media (max-width: 768px) {
    #client-slider .item {
      width: 40vw; /* For smaller screens, show 2 images */
      height: 70px; /* Adjust height as needed */
    }
  }
  

/* Add perspective to parent container */
.perspective-container {
  perspective: 1000px; /* Adjust for stronger/weaker 3D effect */
}

/* Rotation on X-axis */
.rotate-image {
  transform-style: preserve-3d;
  animation: rotateXOnce 3s ease-out forwards;
}

@keyframes rotateXOnce {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}


@keyframes rotateOnce {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


#about {
	padding:3% 0%;
}
#about .heading {
	text-align:center;
}
.heading h2 {
	font-family: 'helvetica_ce_55_romanregular';
}
.heading p {
	padding:20px 0px;
	font-size:18px;
	color:#ffffff;
}
.ab-sec {
	text-align:justify;
}
.ab-sec h3 {
	font-weight:bolder;
}
.ab-sec p {
	padding:10px 0px;
  color:white;
	font-size:15px;
}
/*Background-stylesheets-include-here*/
.bg-sec {
	background:#e73131;
	margin-top:10px;
	padding: 1% 0%;
}
.bg-sec h3 {
	color:#FFFFFF;
	text-transform:none;
	font-weight:bolder;
}
.bg-sec p {
	color:#FFFFFF;
}

.sec01{
  font-size:20px;
  color:white;
  text-align: center;
}

.row{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 20px;
}

.row1{
  display: flex;
 
}
.col-md-6{
  width: 50%;
  padding-right: 20px;
}


#flip {
  height: 90px;
  overflow: hidden;
  position: relative;
}

.flip-items {
  display: flex;
  flex-direction: column;
  animation: slideWords 9s infinite;
}

#flip div div {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  color: white;
  background: #42c58a;
  border-radius: 8px;
  font-size: 2.5rem;
  white-space: nowrap;
}

#flip div div:nth-child(2n) {
  background: #4ec7f3;
}
#flip div div:nth-child(3n) {
  background: #ff023d;
}

@keyframes slideWords {
  0%    { transform: translateY(0); }
  11.11% { transform: translateY(-90px); }
  22.22% { transform: translateY(-180px); }
  33.33% { transform: translateY(-270px); }
  44.44% { transform: translateY(-360px); }
  55.55% { transform: translateY(-450px); }
  66.66% { transform: translateY(-540px); }
  77.77% { transform: translateY(-630px); }
  88.88% { transform: translateY(-720px); }
  100%  { transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #flip div div {
    font-size: 1.8rem;
    height: 70px;
  }

  @keyframes slideWords {
    0%    { transform: translateY(0); }
    11.11% { transform: translateY(-70px); }
    22.22% { transform: translateY(-140px); }
    33.33% { transform: translateY(-210px); }
    44.44% { transform: translateY(-280px); }
    55.55% { transform: translateY(-350px); }
    66.66% { transform: translateY(-420px); }
    77.77% { transform: translateY(-490px); }
    88.88% { transform: translateY(-560px); }
    100%  { transform: translateY(0); }
  }
}


.contact-form {
  width: 100%;
  background: linear-gradient(135deg, rgb(4 169 217) 0%, rgb(14 160 219) 100%);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  animation: fadeIn 1.5s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ddd;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #00bcd4;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0097a7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form {
    width: 90%;
    padding: 30px;
  }
}

.forms{
  font-family: 'Poppins', sans-serif;
      min-height: 100vh;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
}

.sec01{
margin: top 80px;
}

.blog-card:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
    background-color: #4CAF50;
}


/* From Uiverse.io by Smit-Prajapati */ 
.parent {
  width: 271px;
  height: 300px;
  perspective: 1000px;
}

.card {
  height: 100%;
  border-radius: 50px;
background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgba(27, 127, 204, .8) 100%);  transition: all 0.5s ease-in-out;
  transform-style: preserve-3d;
  box-shadow: rgba(5, 71, 17, 0) 40px 50px 25px -40px, rgba(5, 71, 17, 0.2) 0px 25px 25px -5px;
}

.glass {
  transform-style: preserve-3d;
  position: absolute;
  inset: 8px;
  border-radius: 55px;
  border-top-right-radius: 100%;
  background: linear-gradient(135deg, rgb(0, 255, 214) 0%, rgba(27, 127, 204, .8) 100%);  /* -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px); */
  transform: translate3d(0px, 0px, 25px);
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  transition: all 0.5s ease-in-out;
}

.content {
  padding: 100px 60px 0px 30px;
  transform: translate3d(0, 0, 26px);
}

.content .title {
  display: block;
  color: #00894d;
  font-weight: 900;
  font-size: 20px;
}

.content .text {
  display: block;
  color: rgba(0, 137, 78, 0.7647058824);
  font-size: 15px;
  margin-top: 20px;
}

.bottom {
  padding: 10px 12px;
  transform-style: preserve-3d;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translate3d(0, 0, 26px);
}

.bottom .view-more {
  display: flex;
  align-items: center;
  width: 40%;
  justify-content: flex-end;
  transition: all 0.2s ease-in-out;
}

.bottom .view-more:hover {
  transform: translate3d(0, 0, 10px);
}

.bottom .view-more .view-more-button {
  background: none;
  border: none;
  color: #00c37b;
  font-weight: bolder;
  font-size: 12px;
}

.bottom .view-more .svg {
  fill: none;
  stroke: #00c37b;
  stroke-width: 3px;
  max-height: 15px;
}

.bottom .social-buttons-container {
  display: flex;
  gap: 10px;
  transform-style: preserve-3d;
}

.bottom .social-buttons-container .social-button {
  width: 30px;
  aspect-ratio: 1;
  padding: 5px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  border: none;
  display: grid;
  place-content: center;
  box-shadow: rgba(5, 71, 17, 0.5) 0px 7px 5px -5px;
}

.bottom .social-buttons-container .social-button:first-child {
  transition: transform 0.2s ease-in-out 0.4s, box-shadow 0.2s ease-in-out 0.4s;
}

.bottom .social-buttons-container .social-button:nth-child(2) {
  transition: transform 0.2s ease-in-out 0.6s, box-shadow 0.2s ease-in-out 0.6s;
}

.bottom .social-buttons-container .social-button:nth-child(3) {
  transition: transform 0.2s ease-in-out 0.8s, box-shadow 0.2s ease-in-out 0.8s;
}

.bottom .social-buttons-container .social-button .svg {
  width: 15px;
  fill: #00894d;
}

.bottom .social-buttons-container .social-button:hover {
  background: black;
}

.bottom .social-buttons-container .social-button:hover .svg {
  fill: white;
}

.bottom .social-buttons-container .social-button:active {
  background: rgb(255, 234, 0);
}

.bottom .social-buttons-container .social-button:active .svg {
  fill: black;
}

.logo {
  position: absolute;
  transform-style: preserve-3d;
}

.logo .circle {
  display: block;
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  top: 0;
  right: 0;
  box-shadow: rgba(100, 100, 111, 0.2) -10px 10px 20px 0px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: rgba(0, 249, 203, 0.2);
  transition: all 0.5s ease-in-out;
}

.logo .circle1 {
  width: 170px;
  transform: translate3d(0, 0, 20px);
  top: 8px;
  right: 8px;
}

.logo .circle2 {
  width: 140px;
  transform: translate3d(0, 0, 40px);
  top: 10px;
  right: 10px;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  transition-delay: 0.4s;
}

.logo .circle3 {
  width: 110px;
  transform: translate3d(0, 0, 60px);
  top: 17px;
  right: 17px;
  transition-delay: 0.8s;
}

.logo .circle4 {
  width: 80px;
  transform: translate3d(0, 0, 80px);
  top: 23px;
  right: 23px;
  transition-delay: 1.2s;
}

.logo .circle5 {
  width: 50px;
  transform: translate3d(0, 0, 100px);
  top: 30px;
  right: 30px;
  display: grid;
  place-content: center;
  transition-delay: 1.6s;
}

.logo .circle5 .svg {
  width: 20px;
  fill: white;
}

.parent:hover .card {
  transform: rotate3d(1, 1, 0, 30deg);
  box-shadow: rgba(5, 71, 17, 0.3) 30px 50px 25px -40px, rgba(5, 71, 17, 0.1) 0px 25px 30px 0px;
}

.parent:hover .card .bottom .social-buttons-container .social-button {
  transform: translate3d(0, 0, 50px);
  box-shadow: rgba(5, 71, 17, 0.2) -5px 20px 10px 0px;
}

.parent:hover .card .logo .circle2 {
  transform: translate3d(0, 0, 60px);
}

.parent:hover .card .logo .circle3 {
  transform: translate3d(0, 0, 80px);
}

.parent:hover .card .logo .circle4 {
  transform: translate3d(0, 0, 100px);
}

.parent:hover .card .logo .circle5 {
  transform: translate3d(0, 0, 120px);
}


.carde-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.carde {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease;
}

.carde:hover {
  transform: translateY(-5px);
}

.carde img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.carde-body {
  padding: 15px;
}

.carde-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.carde-text {
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 600px) {
  .carde {
    width: 100%;
  }
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.section-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #fff;
}

.service-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  gap: 20px;
  padding: 20px;
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-text {
  flex: 1 1 60%;
  max-width: 65%;
}


.service-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
}

.service-text p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #ddd;
}

.bullet-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  list-style: none;
  color: #b3e5fc;
}

.bullet-points li::before {
  content: "✓ ";
  color: #00ffc3;
}

.learn-more {
  display: inline-block;
  padding: 10px 20px;
  background: #00ffc3;
  color: #1f1f1f;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.learn-more:hover {
  background: #00cc9f;
  transform: scale(1.05);
}

.service-img {
  flex: 1 1 35%;
  max-width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-img img {
  max-width: 80%;
  animation: float 4s ease-in-out infinite;
}

.service-text h2{
  animation: fadeIn 1s ease forwards;
  opacity: 0;
  color: black;
  font-weight: 600;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .service-section {
    flex-direction: column;
  }
  .service-img img {
    max-width: 60%;
  }
}



.android-logo {
  width: 220px;
  animation: futuristic-dance 3s infinite ease-in-out;
  filter: drop-shadow(0 0 10px #00ffcc) brightness(1.2);
}

@keyframes futuristic-dance {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-10px) rotate(3deg) scale(1.05);
  }
  50% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  75% {
    transform: translateY(-10px) rotate(-3deg) scale(1.05);
  }
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
}

.futuristic-glow {
  background: radial-gradient(circle, rgba(0,255,204,0.1) 0%, transparent 70%);
  border-radius: 50%;
  padding: 30px;
}












.container {
   
    padding: 0 15px;
}



.header {
  height: 100vh;
  color: white;
  text-align: center;
  padding-top: 20vh;
  position: relative;
  animation: fadeIn 2s ease-in;
}
.header h1 {
  font-size: 3.5em;
  margin-bottom: 10px;
  animation: slideIn 1s ease-out;
}
.header p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.header .btn {
  background-color: #2ecc71;
  color: white;
  padding: 12px 25px;
  margin: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.header .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


.ai-hero-section {
  background: linear-gradient(rgba(0, 50, 255, 0.8), rgba(0, 50, 255, 0.6)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  animation: ai-heroFade 1.5s ease-in-out;
}

.ai-hero-content {
  max-width: 800px;
  padding: 20px;
}

.ai-hero-title {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
  animation: ai-slideUp 1s ease-out;
}

.ai-hero-subtitle {
  font-size: 1.2rem;
  color: #e0e7ff;
  margin-bottom: 30px;
  animation: ai-slideUp 1.2s ease-out;
}

.ai-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.ai-btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-btn-primary {
  background-color: #ff6f61;
  color: #fff;
}

.ai-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.4);
}

.ai-btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.ai-btn-secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Smarter Section */
.ai-smarter-section {
  display: flex;
  align-items: center;
  padding: 80px 5%;
  gap: 50px;
}

.ai-smarter-image {
  flex: 1;
}

.ai-image-placeholder {
  width: 100%;
  background: linear-gradient(45deg, #a3bffa, #c3e8ff);
  border-radius: 15px;
  animation: ai-pulse 3s infinite ease-in-out;
}

.ai-smarter-content {
  flex: 1;
}

.ai-section-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.ai-section-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.ai-features-list {
  list-style: none;
  margin-bottom: 30px;
}

.ai-features-list li {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.ai-check-icon {
  color: #ff6f61;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Solutions Section */
.ai-solutions-section {
  padding: 80px 5%;
  text-align: center;
}

.ai-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.ai-solution-card {
  background-color: #837d7d;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ai-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.ai-card-title {
  font-size: 1.5rem;
  color: #1a3c87;
  margin-bottom: 15px;
}

.ai-card-text {
  font-size: 1rem;
  color: #cdc3c3;
}

/* Testimonials Section */
.ai-testimonials-section {
  padding: 80px 5%;
  background-color: #fff;
  text-align: center;
}

.ai-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.ai-testimonial-card {
  background-color: #f0f4ff;
  padding: 30px;
  border-radius: 15px;
  position: relative;
  transition: transform 0.3s ease;
}

.ai-testimonial-card:hover {
  transform: scale(1.05);
}

.ai-testimonial-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.ai-testimonial-author {
  font-size: 1rem;
  color: #ff6f61;
}

/* Call to Action Section */
.ai-cta-section {
  padding: 100px 5%;
  background: linear-gradient(45deg, #1a3c87, #ff6f61);
  text-align: center;
  color: #fff;
}

.ai-cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.ai-cta-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.ai-cta-btn {
  font-size: 1.2rem;
  padding: 15px 40px;
}


.main-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-container {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-container.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  max-width: 400px;
  transition: transform 0.5s ease;
}

.service-image:hover {
  transform: scale(1.05);
}

.service-image svg {
  width: 100%;
  height: auto;
}

.service-content {
  flex: 1;
}



.service-content h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #4CAF50;
  transition: width 0.3s ease;
}

.service-content:hover h2::after {
  width: 100px;
}


.service-content ul {
  list-style: disc;
  padding-left: 20px;
}

.service-content ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.key-points-section {
  text-align: center;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 10px;
}

.key-points-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #4CAF50;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  transform: translateX(50px);
}

.timeline-item:nth-child(even).visible {
  transform: translateX(0);
}

.timeline-content {
  width: 45%;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.timeline-icon {
  position: absolute;
  left: 50%;
  width: 40px;
  height: 40px;
  background: #4CAF50;
  border-radius: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .service-container, .service-container.reverse {
      flex-direction: column;
      text-align: center;
  }

  .service-image {
      max-width: 100%;
  }

  .timeline::before {
      left: 20px;
  }

  .timeline-item, .timeline-item:nth-child(even) {
      flex-direction: column;
      align-items: flex-start;
      transform: translateX(0);
  }

  .timeline-content {
      width: 100%;
      margin-left: 60px;
  }

  .timeline-icon {
      left: 20px;
      transform: translateX(0);
  }
}



.page-not-found {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  min-height: calc(100vh - 80px); /* Adjust for navbar height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #fff;
  position: relative;
  padding: 20px;
}

.container-404 {
  text-align: center;
  position: relative;
  z-index: 1;
}

.container-404 h1 {
  font-size: 8rem;
  font-weight: bold;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  animation: glitch 1.5s linear infinite;
}

@keyframes glitch {
  2%, 64% {
      transform: translate(2px, 0) skew(0deg);
  }
  4%, 60% {
      transform: translate(-2px, 0) skew(0deg);
  }
  62% {
      transform: translate(0, 0) skew(5deg);
  }
}

.container-404 p {
  font-size: 1.5rem;
  margin: 20px 0;
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}

.btn-404 {
  display: inline-block;
  padding: 12px 30px;
  background: #ff6f61;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.btn-404:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 107, 97, 0.5);
}

@keyframes pulse {
  0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 107, 97, 0.7);
  }
  70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(255, 107, 97, 0);
  }
  100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 107, 97, 0);
  }
}

/* Floating Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
      transform: translateY(100vh) scale(0);
  }
  100% {
      transform: translateY(-10vh) scale(1);
  }
}

/* Different sizes and delays for particles */
.particle:nth-child(1) { width: 20px; height: 20px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 15px; height: 15px; left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { width: 25px; height: 25px; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { width: 10px; height: 10px; left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { width: 30px; height: 30px; left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { width: 18px; height: 18px; left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { width: 22px; height: 22px; left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { width: 12px; height: 12px; left: 80%; animation-delay: 14s; }

/* SVG Error Icon */
.error-icon {
  width: 150px;
  height: 150px;
  margin: 20px auto;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  100% {
      transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .container-404 h1 {
      font-size: 5rem;
  }
  .container-404 p {
      font-size: 1.2rem;
  }
  .btn-404 {
      padding: 10px 20px;
      font-size: 1rem;
  }
  .error-icon {
      width: 100px;
      height: 100px;
  }
}






 /* Contact Section Styles */
 .contact-section {
  padding: 40px 20px 100px 20px; /* 100px bottom padding */
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-form-container, .calendly-container {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  box-sizing: border-box;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form label {
  display: block;
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6f61;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  display: block;
  width: 100%;
  padding: 12px;
  background: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background: #e55a50;
  transform: translateY(-2px);
}

.calendly-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.calendly-container h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.calendly-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #ff6f61;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendly-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 107, 97, 0.5);
}

@media (max-width: 768px) {
  .contact-grid {
      flex-direction: column;
  }

  .contact-form-container, .calendly-container {
      max-width: 100%; /* Stack vertically on mobile */
      flex: none;
      width: 100%;
  }
}

.srdr{
  padding-top: 90px;
}

.contentss{

    padding: 20px 60px 20px 30px;
    transform: translate3d(0, 0, 26px);
}

.textcolor{
  color: red;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #03b5d2;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #03b5d2;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}


.se1section {
            max-width: 1200px;
            margin: 0 auto;
        }
        .se1header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            /* justify-content: space-between; */
            align-items: center;
            margin-bottom: 40px;
        }
        .se1header h1 {
            font-size: 60px;
            font-weight: bold;
            margin: 0;
            text-align: center;
            flex: 1 1 100%;
        }
        .se1header p {
            font-size: 20px;
            max-width: 400px;
            line-height: 1.5;
            /* margin-right: 92px; */
            text-align: center;
            margin: 10px 0 0 0;
            flex: 1 1 100%;
        }
        .se1cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
         .se1cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .se1card {
        background: linear-gradient(135deg, #0055f0 0%, #00bcf9 50%,#c3dde8 100%);
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow */
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; /* Smooth transitions */
    }

    .se1card:hover {
        transform: scale(1.05); /* Slight scale-up on hover */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
        background: linear-gradient(135deg, #3b4c7a 0%, #7a3a4b 50%, #4b7a3a 100%); /* Brighter gradient on hover */
    }

    .se1card-icon {
        width: 55px;
        height: 55px;
        background-color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
        transition: transform 0.3s ease; /* Smooth icon transition */
    }

    .se1card:hover .se1card-icon {
        transform: rotate(360deg); /* Rotate icon on hover */
    }

    .se1card-icon img {
        width: 20px;
        height: 20px;
    }

    .se1card h3 {
        font-size: 27px;
        margin: 0;
        color: #ffffff; /* White text for better contrast */
        font-weight: 600; /* Bolder text */
        text-transform: capitalize; /* Consistent text style */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .se1cards {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .se1cards {
            grid-template-columns: 1fr;
        }
        .se1card {
            height: 120px;
        }
    }

    @media (max-width: 480px) {
        .se1card h3 {
            font-size: 16px;
        }
        .se1card-icon {
            width: 30px;
            height: 30px;
        }
        .se1card-icon img {
            width: 15px;
            height: 15px;
        }
    }
/*  CHANGES */


        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {}
        a,
        a:hover,
        a:focus,
        a:active {
            text-decoration: none;
            outline: none;
        }
        
        a,
        a:active,
        a:focus {
            color: #333;
            text-decoration: none;
            transition-timing-function: ease-in-out;
            -ms-transition-timing-function: ease-in-out;
            -moz-transition-timing-function: ease-in-out;
            -webkit-transition-timing-function: ease-in-out;
            -o-transition-timing-function: ease-in-out;
            transition-duration: .2s;
            -ms-transition-duration: .2s;
            -moz-transition-duration: .2s;
            -webkit-transition-duration: .2s;
            -o-transition-duration: .2s;
        }
        
        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        img {
    max-width: 100%;
    height: auto;
}
span, a, a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
.section-head {
  margin-bottom: 60px;
}
.section-head h4 {
  position: relative;
  padding:0;
  color:#f91942;
  line-height: 1;
  letter-spacing:0.3px;
  font-size: 34px;
  font-weight: 700;  
  text-align:center;
  text-transform:none;
  margin-bottom:30px;
}
.section-head h4:before {
  content: '';
  width: 60px;
  height: 3px;
  background: #f91942;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right:0;  
  margin:0 auto;
}
.section-head h4 span {
  font-weight: 700;
  font-size: 40px;
  padding-bottom: 5px;
  color:white;
}
p.service_text{
  color:#cccccc !important;
  font-size:16px;
  line-height:28px;
  text-align:center;    
}
.section-head p, p.awesome_line{
  color:white;
  font-size:19px;
  line-height:28px;
  text-align:center;  
}

.extra-text {
    font-size:34px;
    font-weight: 700;
    color:#2f2f2f;
    margin-bottom: 25px;
    position:relative;
    text-transform: none;
}
.extra-text::before {
    content: '';
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}
.controw{
  display: grid;
  grid-template-columns: 1fr 1fr ;
  width: 100%;
  gap: 40px;
}
.extra-text span {
    font-weight: 700;
    color:#f91942;
}
.item {
    text-align: center;
    background-color:rgb(2 6 23 / 0.4) !important;
    padding: 30px 25px;
    -webkit-box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border:5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item:hover{
    background:#009fcf;
    box-shadow:0 8px 20px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item:hover .item, .item:hover span.icon{
    background:#fff;
    border-radius:10px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item:hover h6, .item:hover p{
    color:#fff;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item .icon {
    font-size: 40px;
    margin-bottom:25px;
    color: #f91942;   
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
}
.item .feature_box_col_one{
    background:rgba(247, 198, 5, 0.20);
    color:#f91942
}
.item .feature_box_col_two{
    background:rgba(255, 77, 28, 0.15);
    color:#f91942
}
.item .feature_box_col_three{
    background:rgba(0, 147, 38, 0.15);
    color:#f91942
}
.item .feature_box_col_four{
    background:rgba(0, 108, 255, 0.15);
    color:#f91942
}
.item .feature_box_col_five{
    background:rgba(146, 39, 255, 0.15);
    color:#f91942
}
.item .feature_box_col_six{
    background:rgba(23, 39, 246, 0.15);
    color:#f91942
}
.item p{
    font-size:15px;
    line-height:26px;
    color:white;
}
.item h6 {
    margin-bottom:20px;
    color:white;
}
.mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}
.mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f91942;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}
.mission .small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}
.skills {
    padding-top:0px;
}
.skills .prog-item {
    margin-bottom: 25px;
}
.skills .prog-item:last-child {
    margin-bottom: 0;
}
.skills .prog-item p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}
.skills .prog-item .skills-progress {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius:20px;
    position: relative;
}
.skills .prog-item .skills-progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #f91942;
    width: 10%;
    border-radius: 10px;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.skills .prog-item .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 10px;
    font-weight:600;    
    color: #fff;
    background:rgba(0, 0, 0, 0.9);
    padding: 3px 7px;
    border-radius: 30px;
}
    
    /* General Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    #services-section-ai {
        background: rgb(2 6 23 / 0.4);
        padding: 30px 15px;
        min-height: 100vh;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    a, a:hover, a:focus, a:active {
        text-decoration: none;
        outline: none;
    }

    .container-ai {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .section-title-ai {
        color: #fff;
        font-size: 44px;
        font-weight: 700;
        margin-bottom: 40px;
        padding-top: 50px;
    }

    .section-title-ai span {
        color: #007bff;
    }

    .services-grid-ai {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .service-wrap-ai {
        position: relative;
        background: rgb(2 6 23 / 0.4);
        overflow: hidden;
        padding: 60px 30px;
        margin: 10px 0;
        z-index: 1;
        cursor: pointer;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .service-wrap-ai::after {
        content: "";
        position: absolute;
        background: #007bff;
        width: 100%;
        height: 100%;
        left: 0;
        top: -100%;
        z-index: -1;
        transition: all 0.35s;
    }

    .service-wrap-ai:hover::after {
        top: 0;
    }

    .service-wrap-ai i {
        position: relative;
        background: #007bff;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        color: white;
        font-size: 60px;
        line-height: 100px;
        margin-bottom: 30px;
        z-index: 1;
        transition: all 0.35s;
    }

    .service-wrap-ai i::after {
        content: "";
        position: absolute;
        border: 2px solid #007bff;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        left: -10px;
        top: -10px;
        transition: all 0.35s;
    }

    .service-wrap-ai i,
    .service-wrap-ai h4,
    .service-wrap-ai p {
        transition: all 0.35s;
    }

    .service-wrap-ai:hover i,
    .service-wrap-ai:hover h4,
    .service-wrap-ai:hover p {
        color: white;
    }

    .service-wrap-ai:hover i::after {
        border-color: white;
    }

    .service-wrap-ai:hover i {
        background-color: white;
        color: #007bff;
    }

    .service-wrap-ai h4 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .service-wrap-ai p {
        font-size: 16px;
        line-height: 1.5;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .services-grid-ai {
            grid-template-columns: repeat(2, 1fr);
        }
        .section-title-ai {
            font-size: 36px;
        }
        .service-wrap-ai {
            padding: 50px 25px;
        }
        .service-wrap-ai i {
            width: 90px;
            height: 90px;
            font-size: 50px;
            line-height: 90px;
        }
        .service-wrap-ai i::after {
            width: 110px;
            height: 110px;
            left: -10px;
            top: -10px;
        }
    }

    @media (max-width: 600px) {
        .services-grid-ai {
            grid-template-columns: 1fr;
        }
        .section-title-ai {
            font-size: 28px;
            padding-top: 30px;
            margin-bottom: 30px;
        }
        .service-wrap-ai {
            padding: 40px 20px;
            margin: 10px 0;
        }
        .service-wrap-ai i {
            width: 80px;
            height: 80px;
            font-size: 40px;
            line-height: 80px;
        }
        .service-wrap-ai i::after {
            width: 100px;
            height: 100px;
        }
        .service-wrap-ai h4 {
            font-size: 20px;
        }
        .service-wrap-ai p {
            font-size: 14px;
        }
    }


    .toggle-buttonsproc {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 20px;
    }
    .toggle-buttonsproc button {
        padding: 10px 20px;
        border: none;
        border-radius: 8px;
        background: linear-gradient(135deg, #60a5fa, #93c5fd);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }
    .toggle-buttonsproc button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: 0.5s;
    }
    .toggle-buttonsproc button:hover::before {
        left: 100%;
    }
    .toggle-buttonsproc button.activeproc {
        background: linear-gradient(135deg, #2563eb, #60a5fa);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
        transform: translateY(-2px);
    }
    .flowchartproc {
        display: none !important;
        grid-column: 1 / -1;
    }
    .flowchartproc.activeproc {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .flowchartproc .bg-default-950\/40 {
        margin-bottom: 24px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        min-height: 150px;
    }
    .flowchartproc .bg-default-950\/40:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    }
    .step-numberproc {
        display: flex;
        align-items: center;
        justify-content: center;
        padding:26px;
        text-align: start;
        width: 30%;
        height: 100%;
        background: linear-gradient(180deg, #2563eb, #60a5fa);
        border-radius: 12px 0 0 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .step-contentproc {
        width: 70%;
        padding-left: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    @media (min-width: 640px) {
        .flowchartproc.activeproc {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    @media (min-width: 1024px) {
        .flowchartproc.activeproc {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }
    }
 

    .ux-process-prc {
      max-width: 1400px;
      margin: auto;
      padding: 40px 20px;
      position: relative;
    }

    .ux-process-prc h1 {
      text-align: center;
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 60px;
    }

    .timeline-prc {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      position: relative;
    }

    .timeline-prc::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 6px;
      background: linear-gradient(to right, #6a11cb, #2575fc);
      z-index: 0;
      transform: translateY(-50%);
      animation: slideInLine 1.5s ease-out;
    }

    @keyframes slideInLine {
      from { width: 0; }
      to { width: 100%; }
    }

    .step-prc {
      position: relative;
      width: 200px;
      text-align: center;
      z-index: 1;
      margin: 100px 10px;
      opacity: 0;
    }

    .step-prc.upper-prc {
      align-self: flex-start;
      margin-bottom: 180px;
    }

    .step-prc.lower-prc {
      align-self: flex-end;
      margin-top: 180px;
    }

    .step-prc.left-prc {
      animation: slideInLeft 1s forwards;
    }

    .step-prc.right-prc {
      animation: slideInRight 1s forwards;
    }

    @keyframes slideInLeft {
      0% { transform: translateX(-100px); opacity: 0; }
      100% { transform: translateX(0); opacity: 1; }
    }

    @keyframes slideInRight {
      0% { transform: translateX(100px); opacity: 0; }
      100% { transform: translateX(0); opacity: 1; }
    }

    .step-icon-prc {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin: 0 auto 15px;
      background: white;
      border: 4px solid #2575fc;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse-prc 2s infinite;
    }

    @keyframes pulse-prc {
      0% { box-shadow: 0 0 0 0 rgba(37,117,252, 0.4); }
      70% { box-shadow: 0 0 0 20px rgba(37,117,252, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37,117,252, 0); }
    }

    .step-icon-prc img {
      width: 60%;
      height: 60%;
      object-fit: contain;
    }

    .step-title-prc {
      font-size: 16px;
      font-weight: bold;
      color: #333;
      margin-bottom: 10px;
    }

    .step-list-prc {
      list-style: none;
      padding: 0;
      font-size: 14px;
      color: #555;
    }

    .step-list-prc li {
      margin-bottom: 5px;
    }

    @media (max-width: 768px) {
      .timeline-prc {
        flex-direction: column;
        align-items: center;
      }

      .timeline-prc::before {
        display: none;
      }

      .step-prc {
        margin: 40px 0 !important;
      }
    }
       .mission-vision {
        padding: 40px 0;
    }
    
    .tdsh{
           text-align: center;

}

    .mission-vision .card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 30px;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }

    .mission-vision .card:hover {
        transform: translateY(-5px);
    }

    .mission-vision .card i {
        font-size: 40px;
        color: #2575fc;
        margin-bottom: 15px;
        animation: pulse-prc 2s infinite;
    }

    @keyframes pulse-prc {
        0% { box-shadow: 0 0 0 0 rgba(37, 117, 252, 0.4); }
        70% { box-shadow: 0 0 0 20px rgba(37, 117, 252, 0); }
        100% { box-shadow: 0 0 0 0 rgba(37, 117, 252, 0); }
    }

    .mission-vision h3 {
        font-size: 24px;
        font-weight: bold;
        color: #fff;
        margin-bottom: 15px;
    }

    .mission-vision p {
        font-size: 16px;
        color: #ddd;
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .mission-vision .card {
            padding: 20px;
        }

        .mission-vision h3 {
            font-size: 20px;
        }

        .mission-vision p {
            font-size: 14px;
        }
    }
    .founders-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }

    .founders-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
        pointer-events: none;
    }

    .founders-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    .title-underline {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #2980b9);
        margin: 0 auto 60px;
        border-radius: 2px;
        position: relative;
    }

    .title-underline::after {
        content: '';
        position: absolute;
        top: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 12px;
        height: 8px;
        background: #3498db;
        border-radius: 50%;
        box-shadow: 0 0 20px rgba(52, 152, 219, 0.5);
    }

    .founder-card {
        background: white;
        border-radius: 20px;
        padding: 60px 40px;
        margin-bottom: 60px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .founder-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s ease;
    }

    .founder-card:hover::before {
        left: 100%;
    }

    .founder-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    }

    .founder-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .image-wrapper {
        position: relative;
        display: inline-block;
    }

    .circular-frame {
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: white;
        padding: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .circular-frame::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #3498db, #2980b9, #9b59b6, #8e44ad);
        border-radius: 50%;
        z-index: -1;
        animation: rotate 4s linear infinite;
    }

    @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .founder-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        transition: all 0.4s ease;
        position: relative;
        z-index: 2;
    }

    .image-overlay {
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(155, 89, 182, 0.2));
        border-radius: 50%;
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 3;
    }

    .circular-frame:hover .image-overlay {
        opacity: 1;
    }

    .circular-frame:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

    .pulse-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 320px;
        height: 320px;
        border: 2px solid rgba(52, 152, 219, 0.3);
        border-radius: 50%;
        animation: pulse 2s ease-out infinite;
    }

    .pulse-ring-2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 360px;
        height: 360px;
        border: 1px solid rgba(155, 89, 182, 0.2);
        border-radius: 50%;
        animation: pulse 2s ease-out infinite 0.5s;
    }

    @keyframes pulse {
        0% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 1;
        }
        100% {
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 0;
        }
    }

    .founder-content {
        padding-left: 40px;
    }

    .founder-card-reverse .founder-content {
        padding-left: 0;
        padding-right: 40px;
        text-align: right;
    }

    .founder-name {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
        position: relative;
    }

    .founder-designation {
        font-size: 1.3rem;
        color: #3498db;
        font-weight: 600;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .content-divider {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #3498db, #9b59b6);
        margin-bottom: 25px;
        border-radius: 2px;
    }

    .founder-card-reverse .content-divider {
        margin-left: auto;
    }

    .founder-bio {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #5a6c7d;
        text-align: justify;
        position: relative;
    }

    .founder-card-reverse .founder-bio {
        text-align: justify;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .founders-section {
            padding: 60px 0;
        }

        .founders-title {
            font-size: 2.5rem;
        }

        .founder-card {
            padding: 40px 20px;
            margin-bottom: 40px;
        }

        .founder-content {
            padding-left: 0;
            text-align: center;
        }

        .founder-card-reverse .founder-content {
            padding-right: 0;
            text-align: center;
        }

        .content-divider {
            margin: 25px auto;
        }

        .circular-frame {
            width: 220px;
            height: 220px;
        }

        .pulse-ring {
            width: 260px;
            height: 260px;
        }

        .pulse-ring-2 {
            width: 300px;
            height: 300px;
        }

        .founder-name {
            font-size: 2rem;
        }

        .founder-designation {
            font-size: 1.1rem;
        }

        .founder-bio {
            font-size: 1rem;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .circular-frame {
            width: 180px;
            height: 180px;
        }

        .pulse-ring {
            width: 220px;
            height: 220px;
        }

        .pulse-ring-2 {
            width: 260px;
            height: 260px;
        }

        .founders-title {
            font-size: 2rem;
        }

        .founder-name {
            font-size: 1.8rem;
        }
    }
        
        .mlt{
               
        }

        .row {
            flex-direction: row;
        }
        
       
        

        .col-md-7 {
            order: 1;
        }

        .col-md-5 {
            order: 2;
        }

        .text-md-end {
            text-align: center !important;
        }
    }
    .found-fx{
        display:flex;
        
    }
    
    .itemscenter{
        text-align:center!important;
    }
    
    .hero-section {
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-section p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-form-container {
    background-color: #f3f4f6;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1e3a8a;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background-color: #3b82f6;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #1e40af;
}

.calendly-container {
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.calendly-container img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.calendly-container h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1e3a8a;
}

.calendly-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #10b981;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.calendly-btn:hover {
    background-color: #059669;
}

/* Map and Info Section */
.map-info-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.map-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1e3a8a;
}

.contact-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #374151;
}

.contact-info i {
    color: #3b82f6;
    font-size: 1.25rem;
    margin-top: 4px;
}

.contact-info a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #1e40af;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1e3a8a;
}

.faq-section p {
    font-size: 1.125rem;
    text-align: center;
    max-width: 600px;
    margin: 0  32px;
    color: #6b7280;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
}

.faq-question img {
    width: 20px;
    transition: transform 0.3s;
}

.faq-item.active img {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 16px;
    display: none;
    font-size: 0.875rem;
    color: #6b7280;
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 768px) {
    .contact-grid,
    .map-info-grid {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
    .calendly-container img{
        max-height:200px;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .calendly-container img {
        max-height: 150px;
    }
}

 .wrapperPrc {
            margin-left: auto;
            margin-right: auto;
            max-width: 80em;
        }

        #containerPrc {
            float: left;
            padding: 1em;
            width: 100%;
            padding-bottom:50px !important;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 400;
        }

        ul,
        ol {
            margin: 1em 0;
        }

        ol.processChartPrc {
            color: #000;
            counter-reset: item;
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            margin: 0 0 0 1em;
            padding: 0;
        }

        ol.processChartPrc > li,
        ol.processChartPrc > li > div {
            position: relative;
        }

        ol.processChartPrc > li {
            background: linear-gradient(to right, rgba(0,0,0,0.25) 0%, transparent 25%);
            background-color: #fff;
            counter-increment: item;
            flex-basis: 0;
            flex-grow: 1;
            margin: 1em 1em 1em -1em;
            min-width: 11.25em;
            padding: 1em 1em 1em 2em;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateX(-100px);
            animation: slideIn 0.5s ease-out forwards;
        }

        ol.processChartPrc > li:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }

        ol.processChartPrc > li:nth-child(1) { animation-delay: 0.1s; }
        ol.processChartPrc > li:nth-child(2) { animation-delay: 0.2s; }
        ol.processChartPrc > li:nth-child(3) { animation-delay: 0.3s; }
        ol.processChartPrc > li:nth-child(4) { animation-delay: 0.4s; }
        ol.processChartPrc > li:nth-child(5) { animation-delay: 0.5s; }
        ol.processChartPrc > li:nth-child(6) { animation-delay: 0.6s; }

        @keyframes slideIn {
            0% {
                opacity: 0;
                transform: translateX(-100px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        ol.processChartPrc > li:before,
        ol.processChartPrc > li > div:before {
            color: rgba(0,0,0,0.75);
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }

        ol.processChartPrc > li:before {
            content: 'Step';
            display: inline-block;
            font-weight: 300;
            left: 1em;
            letter-spacing: 0.1em;
            position: absolute;
            top: 1em;
            transform: rotate(90deg);
            transform-origin: 25% 50%;
        }

        ol.processChartPrc > li:after {
            border-bottom: 1em solid transparent;
            border-left: 1em solid #fff;
            border-right: 0 solid transparent;
            border-top: 1em solid transparent;
            content: '';
            height: 100%;
            position: absolute;
            right: -1em;
            top: 0;
            width: 0;
            z-index: 1;
        }

        ol.processChartPrc > li > div {
            padding: 0 0 0 0;
        }

        ol.processChartPrc > li > div:before {
            content: counter(item, decimal-leading-zero);
            font-size: 3em;
            font-weight: 500;
            line-height: 1;
        }

        /*** PRIMARY ***/
        ol.processChartPrc > li:nth-of-type(6n+1) {
            background-color: #a2ed56;
        }

        ol.processChartPrc > li:nth-of-type(6n+1):after {
            border-left-color: #a2ed56;
        }

        /*** SECONDARY ***/
        ol.processChartPrc > li:nth-of-type(6n+2) {
            background-color: #83e4e2;
        }

        ol.processChartPrc > li:nth-of-type(6n+2):after {
            border-left-color: #83e4e2;
        }

        /*** TERTIARY ***/
        ol.processChartPrc > li:nth-of-type(6n+3) {
            background-color: #fd6470;
        }

        ol.processChartPrc > li:nth-of-type(6n+3):after {
            border-left-color: #fd6470;
        }

        /*** QUATERNARY ***/
        ol.processChartPrc > li:nth-of-type(6n+4) {
            background-color: #fca858;
        }

        ol.processChartPrc > li:nth-of-type(6n+4):after {
            border-left-color: #fca858;
        }

        /*** QUINARY ***/
        ol.processChartPrc > li:nth-of-type(6n+5) {
            background-color: #fddc32;
        }

        ol.processChartPrc > li:nth-of-type(6n+5):after {
            border-left-color: #fddc32;
        }
        ol.processChartPrc > li:nth-of-type(6n+6) {
            background-color: #d06f1e;
        }
            ol.processChartPrc > li:nth-of-type(6n+6):after {
            border-left-color: #d06f1e;
        }

        /*** MEDIA QUERIES ***/
        @media only screen and ( max-width: 40em ) {
            ol.processChartPrc {
                margin: 1em 0 0 0;
                padding: 1em 0 0 0;
            }

            ol.processChartPrc > li {
                background: linear-gradient(rgba(0,0,0,0.25) 0%, transparent 25%);
                flex-basis: inherit;
                margin: -1em 0 1em 0;
                min-width: inherit;
                padding: 1em 1em 0 1em;
                opacity: 0;
                transform: translateY(-100px);
                animation: slideInMobile 0.5s ease-out forwards;
            }

            ol.processChartPrc > li:nth-child(1) { animation-delay: 0.1s; }
            ol.processChartPrc > li:nth-child(2) { animation-delay: 0.2s; }
            ol.processChartPrc > li:nth-child(3) { animation-delay: 0.3s; }
            ol.processChartPrc > li:nth-child(4) { animation-delay: 0.4s; }
            ol.processChartPrc > li:nth-child(5) { animation-delay: 0.5s; }
            ol.processChartPrc > li:nth-child(6) { animation-delay: 0.6s; }

            @keyframes slideInMobile {
                0% {
                    opacity: 0;
                    transform: translateY(-100px);
                }
                100% {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            ol.processChartPrc > li:before {
                left: 1em;
                top: 2em;
            }

            ol.processChartPrc > li:after {
                border-bottom: 0 solid transparent;
                border-left: 1em solid transparent !important;
                border-right: 1em solid transparent;
                border-top: 1em solid #fff;
                bottom: -1em;
                height: 0;
                left: 0;
                right: inherit;
                top: inherit;
                width: 100%;
            }

            ol.processChartPrc > li > div {
                padding: 1em 1em 0 1em;
            }

            /*** PRIMARY ***/
            ol.processChartPrc > li:nth-of-type(6n+1):after {
                border-top-color: #a2ed56;
            }

            /*** SECONDARY ***/
            ol.processChartPrc > li:nth-of-type(6n+2):after {
                border-top-color: #83e4e2;
            }

            /*** TERTIARY ***/
            ol.processChartPrc > li:nth-of-type(6n+3):after {
                border-top-color: #fd6470;
            }

            /*** QUATERNARY ***/
            ol.processChartPrc > li:nth-of-type(6n+4):after {
                border-top-color: #fca858;
            }

            /*** QUINARY ***/
            ol.processChartPrc > li:nth-of-type(6n+5):after {
                border-top-color: #fddc32;
            }
        
             /*** QUINARY ***/
            ol.processChartPrc > li:nth-of-type(6n+6):after {
                border-top-color: #d06f1e;
            }
        }

        .processButtonsPrc {
            text-align: center;
            margin: 1em 0;
        }

        .processButtonPrc {
            background-color: #fddc32;
            border: none;
            padding: 0.5em 1em;
            margin: 0 0.5em;
            font-family: 'Oswald', sans-serif;
            font-size: 1em;
            cursor: pointer;
            transition: background-color 0.3s;
            border-radius: 4px;
        }

        .processButtonPrc:hover {
            background-color: #fca858;
        }

        .processButtonPrc.activePrc {
            background-color: #a2ed56;
                margin-bottom: 9px;
        }
        @keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-200px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
ol.processChartPrc > li {
    animation: slideFromLeft 0.6s ease forwards;
}
ol.processChartPrc > li:nth-child(1) { animation-delay: 0.1s; }
ol.processChartPrc > li:nth-child(2) { animation-delay: 0.3s; }
ol.processChartPrc > li:nth-child(3) { animation-delay: 0.5s; }
ol.processChartPrc > li:nth-child(4) { animation-delay: 0.7s; }
ol.processChartPrc > li:nth-child(5) { animation-delay: 0.9s; }
ol.processChartPrc > li:nth-child(6) { animation-delay: 1.1s; }


ol.processChartPrc > li {
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}




