:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #f59e0b;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #94a3b8;
  --dark-gray: #64748b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.footer-newsletter h3 {
  color: white;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  gap: 15px;
}

#email-btn{
  background-color: #2c3e5c;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
  background-color: #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
  bottom: -8px;
  left: 0;
}

.section-heading {
  font-size: 42px;
  margin-bottom: 30px;
  color: var(--dark);
}

.section-subheading {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 40px;
  max-width: 700px;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
  /* box-shadow: 0px 2px 10px gray; */
}

header.scrolled {
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 18px;
  color: var(--dark);
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--dark);
}
.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  height: 60vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("img/hero-bg.png") no-repeat center right;
  background-size: contain;
  z-index: 1;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  flex: 1 1 100%;
  padding: 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero p {
  font-size: 1rem;
  color: var(--dark-gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-image {
  transform: translateY(0);
  z-index: 2;
  width: 100%;
  max-width: 450px;
  margin-top: 40px;
  flex: 1 1 100%;
  text-align: center;
}

.hero-image img {
  width: 85%;
  /* height: 10%; */
  animation: float 6s ease-in-out infinite;
}

/* Float Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background-color: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(37, 99, 235, 0.2) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: #f8fafc;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--dark-gray);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item h3 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-item p {
  font-weight: 500;
  color: var(--dark);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-content p {
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link:hover i {
  transform: translateX(5px);
}

.testimonials {
  padding: 80px 0;
  background-color: #f9f9f9;
}
/* Testimonal Carousal */

/* Carousel layout */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 75vw;
  margin: 0 auto;
}

.carousel-slider {
  overflow: hidden;
}

.carousel-cards {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
   
}

.carousel-card {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  /* border-radius: 35px; */
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  /* border: 1px solid rgba(0, 0, 0, 0.1); */
  box-shadow: 0 0 20px 5px rgba(76, 95, 218, 0.4);

}

/* Vertical Animations */
@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-from-top {
  animation: slideFromTop 0.7s ease-out forwards;
}

.animate-from-bottom {
  animation: slideFromBottom 0.7s ease-out forwards;
}

/* Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  color: #333;
  padding: 0.5rem;
}

.nav-left {
  left: 0.5rem;
}

.nav-right {
  right: 0.5rem;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: #999;
  margin: 0 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333;
}

/* Basic Reset */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.quote {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}

.details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.name {
  font-weight: bold;
}

.role {
  font-size: 0.9rem;
  color: gray;
}


/* Testimonials Section */

.testimonial-carousel {
  padding: 10px 0px 100px 0px;
  background-color: rgb(255, 255, 255);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: #777;
}

.swiper-pagination {
  margin-top: 20px;
}

/* Swiper Slider Client Tells */
.carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  background-color: #fff;
  overflow: hidden;
}

.carousel-track-wrapper {
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

.carousel-track {
  display: flex;
  width: 300%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.testimonial {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 40px 20px;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.avatar {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  border: 3px solid #4f46e5;
}

h3 {
  font-size: 1.2rem;
  color: #111827;
  margin: 0;
}

.role {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 20px;
}

blockquote {
  font-style: italic;
  color: #374151;
  line-height: 1.5;
  font-size: 1.05rem;
  max-width: 700px;
  margin: auto;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background-color: #d1d5db;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #2563eb;
}

/* Arrow buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(37, 99, 235, 0.8);
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

.carousel-arrow:hover {
  background: rgba(37, 99, 235, 1);
}

.carousel-arrow.left {
  left: 20px;
}

.carousel-arrow.right {
  right: 20px;
}

@media (max-width: 768px) {
  .testimonial {
    padding: 30px 15px;
  }

  blockquote {
    font-size: 0.95rem;
  }

  .carousel-arrow {
    font-size: 20px;
    padding: 8px 12px;
  }
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/dots-pattern.png") repeat;
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  color: white;
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 80px 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.footer-logo-text span {
  color: var(--secondary);
}

.footer-about p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links h3 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: white;
}

#quick-link-quick-links h3::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 3px;
  background-color: var(--secondary);
  bottom: 0;
  left: 0;
}

#quick-link-quick-services h3::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 3px;
  background-color: var(--secondary);
  bottom: 0;
  left: 0;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-newsletter p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  background-color: var(--secondary);
  color: white;
  border: none;
  padding: 0 25px;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e67e22;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
}

/* ---------- MEDIA QUERIES ---------- */

/* Tablet and up */
@media (min-width: 768px) {
  .hero-container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .hero-content {
    text-align: left;
    flex: 1 1 50%;
    padding-right: 40px;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-image {
    flex: 1 1 50%;
    transform: translateY(50%);
    margin-top: 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-image {
    max-width: 600px;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 48px;
  }

  .section-heading {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .hero::before {
    width: 60%;
    opacity: 0.3;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding-top: 100px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-content {
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 10%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-buttons {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-wrap: wrap-reverse;
  }
  .hero-content {
    padding-top: 10px;
  }
  .hero {
    /* min-height: auto; */ 
    padding: 150px 0 100px;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-image {
    position: relative;
    width: 100%;
    margin-top: 50px;
    transform: none;
  }

  .section-heading {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .logo {
    right: 0;
  }

  .nav-buttons {
    left: 0;
  }
}

@media (max-width: 576px) {
   .hero {
    min-height: auto;
    height: 100vh;
  }
  .hero h1 {
    font-size: 32px;
  }

  .section-heading {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: 50px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 50px;
    padding: 12px;
  }

  .logo {
    right: 0;
  }

  .nav-buttons {
    left: 0;
  }
}

/* New Technologies Section */
.technologies-section {
  padding: 80px 0;
  background: white;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 1300px) {
  .tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 2 equal columns */
    gap: 30px;
  }
}

@media (max-width: 819px) {
  .tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force 2 equal columns */
    gap: 30px;
  }
}


.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

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

.tech-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.tech-icon:hover{
  
}
.tech-icon img {
  max-width: 100%;
  max-height: 100%;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}

/* .tech-item:hover .tech-icon img {
        filter: grayscale(0%);
      } */

.tech-name {
  font-weight: 500;
  color: #333;
  text-align: center;
}

/* New Process Section */

.process-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

/*  
  
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);

*/  

.process-step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  /* background-color: yellow; */
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  /* background: linear-gradient(90deg, #2563eb, #3bafda); */
  border-radius: 15px 15px 0 0;
  transition: height 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-step:hover::before {
  height: 8px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.step-icon {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  transform: scale(1.1);
  color: #1d4ed8;
}

.process-step h3 {
  margin-bottom: 15px;
  color: #333;
  text-align: center;
  transition: color 0.3s ease;
}

.process-step:hover h3 {
  color: #2563eb;
}

.process-step p {
  color: #666;
  line-height: 1.6;
  text-align: center;
  transition: color 0.3s ease;
}

.process-step:hover p {
  color: #444;
}

/* Pulse Animation for Step Numbers */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

.process-step:hover .step-number {
  animation: pulse 1.5s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .process-steps {
    /* flex-direction: column;
    align-items: center; */
    display: flex;
    flex-wrap: wrap;
  }

  .process-step {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .process-step {
    min-width: 350px;
  }
}


/* Testimonial Carousel Section Styles */
.testimonial-section {
  padding: 80px 0;
  background-color: #f9f9ff;
  position: relative;
  overflow: hidden;
}


  .testimonial-slide {
  /* padding: 25px;
  background-color: #ffffff;
  border-radius: 25px; */
  /* height: 400px; */
  margin-bottom: 50px;
}

.testimonial-card {
  background: #F9F9FF;
  /* border-radius: 25px; */
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.05);
  padding: 40px;
  transition: all 0.5s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  
}

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

.quote-icon {
  font-size: 40px;
  color: #0008ff;
  opacity: 0.6;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid rgba(108, 99, 255, 0.2);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.author-info p {
  font-size: 14px;
  color: #777;
  margin-bottom: 5px;
}

.rating {
  color: #ffc107;
  font-size: 14px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #ecebe6;
  border-radius: 50%;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  color: #6c63ff;
  transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #6c63ff;
  color: white;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #161515;
  opacity: 0.6;
  /* padding: 100px; */
  /* margin-top: 100px; */
  
}

.swiper-pagination-bullet-active {
  background: #0d00ff;
  /* opacity: 0.6; */
}

/* Animation for active slide */
.swiper-slide-active .testimonial-card {
  transform: scale(1.02);
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-text {
    font-size: 16px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Impact Metrics Section */
.impact-metrics {
  padding: 80px 0;
  background-color: #f9fafc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.section-title {
  font-size: 16px;
  color: #4a6bdf;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
  /* text-align: center; */
}

.section-heading {
  font-size: 36px;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 700;
  /* text-align: center; */
}

.section-subheading {
  font-size: 18px;
  color: #718096;
  margin-bottom: 50px;
  max-width: 700px;
  line-height: 1.6;
  /* text-align: center; */
  /* margin-left: auto;
  margin-right: auto; */
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.metric-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.metric-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4a6bdf 0%, #6b4adf 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metric-card:hover .metric-icon {
  transform: rotateY(360deg) scale(1.2);
  background: linear-gradient(135deg, #6b4adf 0%, #4a6bdf 100%);
  transition: transform 0.8s ease, background 0.8s ease;
}

.metric-icon i {
  color: white;
  font-size: 28px;
}

.metric-content {
  flex: 1;
}

.metric-value {
  font-size: 42px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
  line-height: 1;
}

.metric-title {
  font-size: 18px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 15px;
}

.metric-description {
  font-size: 16px;
  color: #718096;
  line-height: 1.5;
  margin: 0;
}

.placeholder-card {
  background: linear-gradient(135deg, #f9fafc 0%, #eef2f6 100%);
  border: 1px dashed #cbd5e0;
}

.placeholder-card .metric-icon {
  background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
}

.placeholder-card:hover .metric-icon {
  background: linear-gradient(135deg, #a0aec0 0%, #cbd5e0 100%);
}

/* Number Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.metric-value.animated {
  animation: countUp 1s ease-out forwards;
}

/* Responsive */
@media (max-width: 1200px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .section-heading {
    font-size: 32px;
  }
  
  .metrics-grid {
    gap: 20px;
  }
  
  .metric-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .impact-metrics {
    padding: 60px 0;
  }
  
  .section-heading {
    font-size: 28px;
  }
  
  .section-subheading {
    font-size: 16px;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .metric-card {
    padding: 30px;
  }
  
  .metric-value {
    font-size: 36px;
  }
}
