.about-banner {
  background: url('images/polygon-scatter-haikei.svg');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #000000;
  text-align: center;
  padding: 100px 20px 50px;
}
*{
  font-family: 'poppins';
}
  

.about-banner h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-banner h1.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-banner p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.about-banner p.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.about-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.flowchart .step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.flowchart .step.visible {
  opacity: 1;
  transform: translateY(0);
}

.flowchart .step:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-banner p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-sections {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-sections h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.about-sections p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

.about-cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.about-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: lighter;
}

.about-cta a {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}

.about-cta a:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ff4d4d;
}

.about-cta a {
  color: #ffffff; 
}

.offer-button:hover {
  color: #ff4d4d;
}

/* Footer Styles from style.css for about-us page */
.site-footer {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #ff3d3d;
  margin-top: 0;
}

.end-to-end-services > *:last-child,
.robot-review-section > *:last-child,
.review-display > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.review-h2,
.review-display-h2 {
  margin-bottom: 0 !important;
}

.custom-size {
  font-size: 2rem;
  font-weight: 700;
  color: #ff0000;
  font-family: 'Poppins', sans-serif;
  text-shadow: 2px 2px 4px rgb(255, 255, 255);
}

.custom-font {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #ff0000;
}

.site-footer .social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.site-footer .social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.site-footer .social-icons a:hover {
  color: #ff0000;
}

.site-footer .footer-content p {
  margin: 0;
  font-size: 1rem;
}

.about-card {
  background-color: #000000;
  color: #ffffff;
  padding: 20px 30px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.about-card h2 {
  color: #ff4d4d;
  margin-bottom: 15px;
}

.about-card p {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Added spacing for images inside about-card */
.about-card img {
  max-width: 40%;
  height: auto;
  margin: 0;
  border-radius: 10px;
}

/* Content inside about-card */
.about-card h2, .about-card p {
  max-width: 60%;
  margin: 0;
}

.about-card:nth-child(2) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .about-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  .about-card img {
    max-width: 100% !important;
    margin-bottom: 15px !important;
  }

  .about-card h2, .about-card p {
    max-width: 100% !important;
  }

  /* Fix footer placement in mobile view */
  .site-footer {
    position: static !important;
    z-index: auto !important;
    clear: both !important;
    margin-top: 40px !important;
    display: block !important;
  }
}

/* Flowchart styles */
.flowchart {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
  margin-top: 60px;
}

.step {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 350px;
  min-height: 320px;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.step img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ff2f2f;
}

.step i {
  font-size: 36px;
  color: #ff2f2f;
  border: 3px solid #ff2f2f;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  padding: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.step h3 {
  margin: 10px 0 5px;
  color: #ff2f2f;
  font-size: 1.2em;
}

.step p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.4;
}

/* Connector lines */
.flowchart::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #ff2f2f;
  z-index: 0;
}

.step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 40px;
  height: 3px;
  background: #ff2f2f;
  z-index: -1;
}

.step:last-child::after {
  display: none;
}

@media (max-width: 800px) {
  .flowchart {
    flex-direction: column;
  }

  .flowchart::before {
    top: auto;
    left: 50%;
    width: 3px;
    height: 100%;
  }

  .step::after {
    top: auto;
    left: 50%;
    right: auto;
    bottom: -20px;
    width: 3px;
    height: 40px;
  }

  .step:last-child::after {
    display: none;
  }
}

/* Offer Section Styles */
.offer-section {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  margin-top: 60px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  height: 650px;
}

@media (max-width: 768px) {
  .offer-section {
    height: auto !important;
    min-height: 900px !important;
    margin-bottom: 1px !important;
    padding-bottom: 10px !important;
    background-color: #1a1a1a !important;
  }

  .site-footer {
    margin-top: 0 !important;
    padding-top: 20px !important;
    background-color: #000 !important;
  }
}



.offer-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.offer-title {
  font-weight: 600;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.offer-title .highlight {
  color: #ff3300;
}

.offer-subtitle {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 40px;
}

.offer-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.feature-box {
  background-color: #2a2a2a;
  padding: 25px 20px;
  border-radius: 4px;
  width: 280px;
  box-sizing: border-box;
  color: white;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.icon-circle {
  background-color: #5c4bff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.feature-box h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.offer-button {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}

.offer-button:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ff2f2f;
  text-decoration: none;
}

 