/* ============================================
   HOME PAGE - HERO SECTION
============================================ */

.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
}

.hero-content {
  text-align: left;
  color: var(--text-white);
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(21, 105, 253, 0.2);
  border-left: 3px solid var(--primary-color);
  color: var(--text-white);
  font-size: var(--font-size-16);
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-54);
  font-weight: var(--heading-xl-weight);
  line-height: 62px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  color: var(--primary-color);
}

.hero-description {
  font-family: var(--mulish);
  font-size: var(--text-lg);
  line-height: 28px;
  color: var(--text-light);
  opacity: 0.85;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* ============================================
   MISSION & VISION SECTION
============================================ */

.mission-vision-section {
  background-color: var(--text-white);
  overflow: hidden;
}

.timeline-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50px;
  bottom: 50px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--text-white);
  box-shadow: 0 0 0 4px var(--text-light);
}

.dot-mission {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.dot-vision {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
}

.timeline-content {
  flex: 1;
  background-color: var(--text-white);
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(21, 105, 253, 0.15);
  border-color: var(--primary-color);
}

.content-left::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid var(--text-white);
}

.content-right::after {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid var(--text-white);
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: var(--font-size-14);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.badge-mission {
  background: linear-gradient(
    135deg,
    rgba(21, 105, 253, 0.1),
    rgba(11, 60, 93, 0.1)
  );
  color: var(--primary-color);
}

.badge-vision {
  background: linear-gradient(
    135deg,
    rgba(255, 170, 23, 0.1),
    rgba(255, 140, 0, 0.1)
  );
  color: var(--secondary-color);
}

.timeline-badge i {
  font-size: var(--font-size-14);
}

.timeline-title {
  font-family: var(--mulish);
  font-size: var(--font-size-26);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.timeline-text {
  font-size: var(--text-md);
  line-height: 26px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.timeline-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: var(--text-light);
  border-radius: 20px;
  font-size: var(--font-size-14);
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.feature-tag i {
  font-size: var(--font-size-12);
  color: var(--primary-color);
}

.feature-tag:hover i {
  color: var(--text-white);
}

.timeline-image {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.timeline-item:hover .timeline-image img {
  transform: scale(1.08);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 105, 253, 0.3),
    rgba(11, 60, 93, 0.3)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.timeline-item:hover .image-overlay {
  opacity: 1;
}

/* ============================================
   SERVICES SECTION
============================================ */

.services {
  background: linear-gradient(135deg, #e0e4e7ad 0%, #ffffff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.service-card {
  background: var(--text-white);
  padding: 30px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 40px;
  color: var(--secondary-color);
}

.service-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-22);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-text {
  font-size: var(--text-md);
  font-weight: var(--text-md-weight);
  color: var(--text-secondary);
  line-height: var(--text-md-line);
  margin-bottom: 0;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 18px;
  background: var(--secondary-color);
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: scale(0);
  transition: 0.3s all ease;
  z-index: 10;
}

.service-card:hover .service-overlay {
  transform: scale(1);
}

.service-overlay .service-title {
  color: var(--text-white);
  margin-bottom: 20px;
}

.service-overlay .service-text {
  color: var(--text-light);
  margin-bottom: 25px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-16);
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(3px);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.15s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.25s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.35s;
}

.fade-in:nth-child(5) {
  animation-delay: 0.45s;
}

.fade-in:nth-child(6) {
  animation-delay: 0.55s;
}

/* ============================================
   WHY CHOOSE US SECTION
============================================ */

.why-choose-section {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(
      30deg,
      rgba(21, 105, 253, 0.08) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(21, 105, 253, 0.08) 87.5%,
      rgba(21, 105, 253, 0.08)
    ),
    linear-gradient(
      150deg,
      rgba(21, 105, 253, 0.08) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(21, 105, 253, 0.08) 87.5%,
      rgba(21, 105, 253, 0.08)
    ),
    linear-gradient(
      30deg,
      rgba(21, 105, 253, 0.08) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(21, 105, 253, 0.08) 87.5%,
      rgba(21, 105, 253, 0.08)
    ),
    linear-gradient(
      150deg,
      rgba(21, 105, 253, 0.08) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(21, 105, 253, 0.08) 87.5%,
      rgba(21, 105, 253, 0.08)
    );
  background-size: 80px 140px;
  background-position:
    0 0,
    0 0,
    40px 70px,
    40px 70px;
  opacity: 0.4;
  animation: why-move-pattern 20s linear infinite;
  z-index: 0;
}

@keyframes why-move-pattern {
  0% {
    background-position:
      0 0,
      0 0,
      40px 70px,
      40px 70px;
  }

  100% {
    background-position:
      80px 140px,
      80px 140px,
      120px 210px,
      120px 210px;
  }
}

.why-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.why-particle {
  position: absolute;
  background: radial-gradient(circle, rgba(21, 105, 253, 0.4), transparent);
  border-radius: 50%;
  opacity: 0.6;
  animation: why-float 15s infinite ease-in-out;
}

.why-particle:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.why-particle:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 85%;
  animation-delay: 3s;
  animation-duration: 15s;
}

.why-particle:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 75%;
  left: 15%;
  animation-delay: 6s;
  animation-duration: 20s;
}

.why-particle:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 70%;
  animation-delay: 2s;
  animation-duration: 16s;
}

.why-particle:nth-child(5) {
  width: 90px;
  height: 90px;
  top: 60%;
  left: 40%;
  animation-delay: 5s;
  animation-duration: 17s;
}

@keyframes why-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translate(-30px, -40px) scale(1.1);
    opacity: 0.6;
  }

  50% {
    transform: translate(30px, -80px) scale(0.9);
    opacity: 0.4;
  }

  75% {
    transform: translate(-20px, -40px) scale(1.05);
    opacity: 0.5;
  }
}

.why-choose-section .container {
  position: relative;
  z-index: 1;
}

.why-choose-section .section-tag {
  background: rgba(21, 105, 253, 0.2);
  border-left-color: var(--text-white);
  color: var(--text-white);
}

.why-choose-section .section-title {
  color: var(--text-white);
}

.why-choose-section .section-title span {
  color: var(--primary-color);
}

.why-section-subtitle {
  font-size: var(--font-size-18);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 700px;
  margin: 5px auto 0;
  line-height: var(--text-lg-line);
}

.why-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: why-fade-in-up 0.6s ease forwards;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.why-card:nth-child(1) {
  animation-delay: 0.1s;
}

.why-card:nth-child(2) {
  animation-delay: 0.15s;
}

.why-card:nth-child(3) {
  animation-delay: 0.2s;
}

.why-card:nth-child(4) {
  animation-delay: 0.25s;
}

.why-card:nth-child(5) {
  animation-delay: 0.3s;
}

.why-card:nth-child(6) {
  animation-delay: 0.35s;
}

@keyframes why-fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.why-card:hover::before {
  left: 100%;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(21, 105, 253, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(21, 105, 253, 0.25);
}

.why-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-color), #0d4a9f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(21, 105, 253, 0.4);
  position: relative;
}

.why-check::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0;
  transition: all 0.4s ease;
}

.why-card:hover .why-check {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 6px 25px rgba(21, 105, 253, 0.6);
}

.why-card:hover .why-check::after {
  opacity: 0.3;
  transform: scale(1.5);
}

.why-check i {
  color: var(--text-white);
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: var(--font-size-16);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   ABOUT SECTION
============================================ */

.about_section {
  position: relative;
  overflow: hidden;
}

.about_imgs-container {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.about_big-img {
  width: 100%;
  max-width: 420px;
  height: 560px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  animation: fadeInLeft 1s ease-out;
}

.about_sm-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 225px;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 10px solid var(--text-white);
  z-index: 2;
  animation: fadeInRight 1s ease-out 0.3s backwards;
}

.about_content {
  padding-left: 40px;
}

.about_section-heading {
  margin-bottom: 35px;
}

.about_content__text {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: var(--text-lg-line);
  margin-bottom: 0;
}

.about_content__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.about_vdo-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about_vdo-btn {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: var(--font-size-18);
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: ripple 2s linear infinite;
}

.about_vdo-btn:hover {
  background-color: var(--secondary-color);
  color: var(--text-white);
  transform: scale(1.1);
}

.about_vdo-btn i {
  margin-left: 3px;
}

@keyframes ripple {
  0% {
    box-shadow:
      0 0 0 0 rgba(11, 60, 93, 0.6),
      0 0 0 0 rgba(11, 60, 93, 0.6),
      0 0 0 0 rgba(11, 60, 93, 0.043);
  }

  20% {
    box-shadow:
      0 0 0 2.8965px rgba(11, 60, 93, 0.6),
      0 0 0 0 rgba(11, 60, 93, 0.6),
      0 0 0 0 rgba(11, 60, 93, 0.043);
  }

  50% {
    box-shadow:
      0 0 0 2.8965px rgba(11, 60, 93, 0.6),
      0 0 0 12.8965px rgba(11, 60, 93, 0.6),
      0 0 0 0 rgba(11, 60, 93, 0.043);
  }

  100% {
    box-shadow:
      0 0 0 2.8965px rgba(11, 60, 93, 0.06),
      0 0 0 12.8965px rgba(11, 60, 93, 0.06),
      0 0 0 25.793px rgba(11, 60, 93, 0.043);
  }
}

.about_vdo-text {
  font-size: var(--font-size-16);
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.about_btn {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.about_btn:hover {
  border-color: var(--text-light) !important;
  color: var(--text-light) !important;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate(50px, -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

/* ============================================
   DEVELOPMENT PROCESS SECTION
============================================ */

.process-section {
  background: linear-gradient(135deg, #e0e4e7ad 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(21, 105, 253, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.process-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(11, 60, 93, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.process-subtitle {
  font-size: var(--text-md);
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.75rem;
  letter-spacing: 0.5px;
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #1569fd 0%, #0b3c5d 100%);
  transform: translateX(-50%);
  opacity: 0.3;
  display: none;
}

.process-item {
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.process-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.process-item:last-child {
  margin-bottom: 0;
}

.process-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.process-item:nth-child(even) .process-row {
  flex-direction: row-reverse;
}

.process-number-wrapper {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-24);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(21, 105, 253, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.process-item:hover .process-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(21, 105, 253, 0.4);
}

.process-number::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.process-content {
  flex: 1;
  background: var(--text-white);
  padding: 1.5rem 1.75rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
}

.process-item:nth-child(even) .process-content {
  border-left: none;
  border-right: 3px solid var(--primary-color);
}

.process-item:hover .process-content {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.process-title {
  font-size: var(--font-size-18);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.process-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--text-md-line);
  margin: 0;
}

.process-icon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(21, 105, 253, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.process-item:hover .process-icon-badge {
  background: rgba(21, 105, 253, 0.2);
  transform: rotate(360deg);
}

.process-icon-badge i {
  color: var(--primary-color);
  font-size: var(--font-size-18);
}

/* ============================================
   PORTFOLIO SECTION
============================================ */
.portfolio-section-heading-left_wrapper {
  width: fit-content;
}

.portfolio-gallery {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e4e7ad 0%, #ffffff 100%);
}

.portfolio-section-heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.portfolio-section-heading-left {
  max-width: 600px;
}

.portfolio-slider {
  position: relative;
  overflow: visible;
}

.portfolio-slider .swiper-wrapper {
  padding: 0 15px;
}

.portfolio-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 450px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.portfolio-item {
  background-color: var(--text-white);
  box-shadow: var(--shadow-soft);
}

.portfolio-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-gallery-item:hover img {
  transform: scale(1.1);
}

.portfolio-gallery-item__overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  background-color: var(--secondary-color);
  border-radius: 0;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: scale(0);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.portfolio-gallery-item:hover .portfolio-gallery-item__overlay {
  transform: scale(1);
  opacity: 1;
}

.portfolio-gallery-item__overlay-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: var(--font-size-20);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.portfolio-gallery-item__overlay-icon:hover {
  background-color: var(--secondary-color);
  border-color: var(--text-white);
  transform: rotate(90deg) scale(1.1);
}

.portfolio-gallery-item__overlay-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portfolio-gallery-item__overlay-title span {
  font-family: var(--font-primary);
  font-size: var(--font-size-14);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-white);
  opacity: 0.9;
}

.portfolio-gallery-item__overlay-title-link {
  font-family: var(--font-heading);
  font-size: var(--font-size-24);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  cursor: pointer;
}

.portfolio-gallery-item__overlay-title-link:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.mfp-container,
.mfp-image-holder,
.mfp-s-ready .mfp-preloader,
.mfp-figure,
.mfp-img {
  cursor: default !important;
}

.mfp-close,
.mfp-arrow {
  cursor: pointer !important;
}

/* Top Right Navigation Bullets */
.rv-34-porfolio-slider-controller {
  display: flex;
  align-items: center;
  width: fit-content !important;
}

.rv-34-porfolio-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  opacity: 1;
  border: 1px solid transparent;
  background-color: transparent;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  margin: 0 !important;
}

.rv-34-porfolio-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-secondary);
  transition: all 0.4s ease;
}

.rv-34-porfolio-bullet:hover::before {
  background-color: var(--primary-color);
  width: 12px;
  height: 12px;
}

.rv-34-porfolio-bullet.swiper-pagination-bullet-active {
  border-color: var(--secondary-color);
}

.rv-34-porfolio-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--secondary-color);
  width: 12px;
  height: 12px;
}

.portfolio-pagination {
  display: none;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */

.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-content-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  transition: none;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.testimonials-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.testimonials-stars i {
  color: #ffb800;
  font-size: var(--font-size-18);
}

.testimonials-text {
  font-size: var(--font-size-16);
  font-weight: var(--text-md-weight);
  line-height: var(--text-lg-line);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.testimonials-author {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.testimonials-author-name {
  font-size: var(--font-size-20);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.testimonials-author-role {
  font-size: var(--font-size-14);
  font-weight: 400;
  color: var(--text-secondary);
}

.testimonials-quote-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  color: rgba(0, 0, 0, 0.02);
  z-index: 1;
  pointer-events: none;
}

.testimonials-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonials-nav-btn {
  width: 50px;
  height: 50px;
  border: 1px solid var(--text-dark);
  background: transparent;
  color: var(--text-dark);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: var(--font-size-16);
}

.testimonials-nav-btn:hover {
  background: var(--secondary-color);
  color: var(--text-white);
  border-color: var(--secondary-color);
}

.testimonials-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.testimonials-nav-btn:disabled:hover {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.testimonials-counter {
  font-size: var(--font-size-16);
  font-weight: 400;
  color: var(--text-dark);
  min-width: 60px;
  text-align: center;
}

.testimonials-clients {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.testimonials-client-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  object-fit: cover;
  border: 5px solid var(--text-white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1;
}

.testimonials-client-1 {
  top: 15%;
  left: 15%;
  animation: float 6s ease-in-out infinite;
}

.testimonials-client-2 {
  top: 15%;
  right: 15%;
  animation: float 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

.testimonials-client-3 {
  top: 45%;
  left: 5%;
  transform: translateY(-50%);
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

.testimonials-client-4 {
  top: 45%;
  right: 5%;
  transform: translateY(-50%);
  animation: float 7.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.testimonials-client-5 {
  bottom: 20%;
  left: 15%;
  animation: float 6.5s ease-in-out infinite;
  animation-delay: 2s;
}

.testimonials-client-6 {
  bottom: 20%;
  right: 15%;
  animation: float 7s ease-in-out infinite;
  animation-delay: 2.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* ============================================
   TEAM SECTION
============================================ */

.team_lead_heading {
  margin-bottom: 20px;
}

.team_lead_heading_left .section-title {
  margin: 0;
}

.team_lead_card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  background: var(--text-white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team_lead_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team_lead_image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.team_lead_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team_lead_card:hover .team_lead_image img {
  transform: scale(1.08);
}

.team_lead_overlay {
  background-color: rgba(11, 60, 93, 0.92);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  padding: 20px 28px;
  border-radius: 4px;
  transform: translateY(180px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.team_lead_card:hover .team_lead_overlay {
  transform: translateY(0);
}

.team_lead_info {
  flex: 1;
}

.team_lead_info a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.team_lead_name {
  font-family: var(--font-heading);
  font-size: var(--font-size-20);
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 6px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.team_lead_info a:hover .team_lead_name {
  color: var(--primary-color);
}

.team_lead_position {
  font-family: var(--font-primary);
  font-size: var(--font-size-14);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.team_lead_socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.team_lead_socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  font-size: var(--font-size-14);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.team_lead_socials a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(21, 105, 253, 0.4);
}

.team_lead_heading_right_btn {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.team_lead_heading_right_btn:hover {
  border-color: var(--text-white) !important;
  color: var(--text-white) !important;
}

/* ============================================
   BLOG SECTION
============================================ */

.blog-section {
  position: relative;
  overflow: hidden;
}

.blog-carousel {
  position: relative;
}

.blog-card {
  background-color: var(--text-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(189, 187, 187);
}

.blog-card-Pagination-wrapper {
  margin-top: 30px;
}

.blog-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.2);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--secondary-color);
  color: var(--text-white);
  padding: 6px 18px;
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: 4px;
  z-index: 2;
}

.blog-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-22);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--secondary-color);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.blog-meta-item i {
  color: var(--text-secondary);
  font-size: 14px;
}

.swiper-pagination {
  bottom: 0 !important;
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background-color: #c4c4c4;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
}

.team_lead_section {
  background: linear-gradient(135deg, #e0e4e7ad 0%, #ffffff 100%);
}

/* ============================================
   RESPONSIVE STYLES
============================================ */

@media (max-width: 1400px) {
  .testimonials-client-img {
    width: 100px;
    height: 100px;
  }

  .testimonials-client-1 {
    top: 12%;
    left: 10%;
  }

  .testimonials-client-2 {
    top: 12%;
    right: 10%;
  }

  .testimonials-client-3 {
    left: 3%;
  }

  .testimonials-client-4 {
    right: 3%;
  }

  .testimonials-client-5 {
    bottom: 18%;
    left: 10%;
  }

  .testimonials-client-6 {
    bottom: 18%;
    right: 10%;
  }
}

@media (max-width: 1200px) {
  .testimonials-client-img {
    width: 90px;
    height: 90px;
  }

  .testimonials-client-1 {
    top: 10%;
    left: 8%;
  }

  .testimonials-client-2 {
    top: 10%;
    right: 8%;
  }

  .testimonials-client-3 {
    left: 2%;
  }

  .testimonials-client-4 {
    right: 2%;
  }

  .testimonials-client-5 {
    bottom: 15%;
    left: 8%;
  }

  .testimonials-client-6 {
    bottom: 15%;
    right: 8%;
  }
}

@media (max-width: 991px) {
  .portfolio-section-heading-left_wrapper {
    margin: auto;
  }

  .timeline-wrapper::before {
    display: none;
  }

  .timeline-item {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .timeline-dot {
    display: none;
  }

  .timeline-content {
    width: 100%;
    order: 2;
  }

  .content-left::after,
  .content-right::after {
    display: none;
  }

  .timeline-image {
    width: 100%;
    order: 1;
    height: 280px;
  }

  .image-left {
    order: 1;
  }

  .image-right {
    order: 1;
  }

  .about_section {
    padding: var(--section-padding-md) 0;
  }

  .about_content {
    padding-left: 0;
    margin-top: 50px;
  }

  .about_imgs-container {
    height: 500px;
    padding-bottom: 40px;
  }

  .about_big-img {
    max-width: 360px;
    height: 480px;
  }

  .about_sm-img {
    width: 260px;
    height: 320px;
    right: 0;
    bottom: 30px;
  }

  .services {
    padding: var(--section-padding-md) 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    padding: 40px;
  }

  .service-overlay {
    padding: 25px 30px;
  }

  .hero-title {
    font-size: var(--font-size-44);
    line-height: 52px;
  }

  .why-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-particle:nth-child(4),
  .why-particle:nth-child(5) {
    display: none;
  }

  .process-timeline {
    max-width: 100%;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-row {
    gap: 1.5rem;
  }

  .process-item:nth-child(even) .process-row {
    flex-direction: row;
  }

  .process-item:nth-child(even) .process-content {
    border-left: 3px solid var(--primary-color);
    border-right: none;
  }

  .process-number {
    width: 55px;
    height: 55px;
    font-size: var(--font-size-22);
  }

  .process-content {
    padding: 1.25rem 1.5rem;
  }

  .portfolio-section-heading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .portfolio-section-heading-left {
    max-width: 100%;
  }

  .rv-34-porfolio-slider-controller {
    justify-content: center;
  }

  .section-heading-center .section-title {
    font-size: var(--font-size-36);
  }

  .testimonials-card {
    padding: 0 20px;
  }

  .testimonials-text {
    font-size: var(--font-size-15);
  }

  .testimonials-quote-icon {
    font-size: 150px;
  }

  .testimonials-client-img {
    width: 80px;
    height: 80px;
  }

  .testimonials-client-3,
  .testimonials-client-4 {
    display: none;
  }

  .testimonials-client-1 {
    top: 8%;
    left: 5%;
  }

  .testimonials-client-2 {
    top: 8%;
    right: 5%;
  }

  .testimonials-client-5 {
    bottom: 12%;
    left: 5%;
  }

  .testimonials-client-6 {
    bottom: 12%;
    right: 5%;
  }

  .team_lead_heading_right_wrapper {
    width: fit-content;
    margin-top: 10px;
  }

  .team_lead_heading {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
  }

  .team_lead_overlay {
    padding: 18px 24px;
  }

  .team_lead_name {
    font-size: var(--font-size-18);
  }

  .team_lead_position {
    font-size: var(--font-size-12);
  }
}

@media (max-width: 768px) {
  .timeline-title {
    font-size: var(--font-size-22);
  }

  .timeline-text {
    font-size: var(--font-size-14);
    line-height: 24px;
    margin-bottom: 15px;
  }

  .timeline-content {
    padding: 25px 20px;
  }

  .timeline-image {
    height: 240px;
  }

  .about_section {
    padding: var(--section-padding-sm) 0;
  }

  .about_imgs-container {
    height: 450px;
  }

  .about_big-img {
    max-width: 300px;
    height: 420px;
  }

  .about_sm-img {
    width: 220px;
    height: 280px;
    right: 0;
    bottom: 20px;
    border: 8px solid var(--text-white);
  }

  .about_content__btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .services {
    padding: var(--section-padding-sm) 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px;
  }

  .service-title {
    font-size: var(--font-size-20);
  }

  .service-overlay {
    margin: 12px;
    padding: 20px 25px;
  }

  .hero-section {
    padding: 5rem 0rem 3rem;
  }

  .hero-title {
    font-size: var(--font-size-36);
    line-height: 44px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .blog-card-image {
    height: 220px;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-card {
    padding: 1.5rem 1.25rem;
  }

  .why-check {
    width: 32px;
    height: 32px;
  }

  .why-check i {
    font-size: 16px;
  }

  .why-card p {
    font-size: var(--font-size-15);
  }

  .why-particle:nth-child(3) {
    display: none;
  }

  .process-section::before,
  .process-section::after {
    width: 200px;
    height: 200px;
  }

  .process-timeline::before {
    left: 25px;
  }

  .process-item {
    margin-bottom: 2rem;
  }

  .process-row {
    gap: 1.25rem;
  }

  .process-number {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-20);
  }

  .process-content {
    padding: 1.25rem 1.5rem;
  }

  .process-title {
    font-size: var(--font-size-16);
  }

  .process-icon-badge {
    position: static;
    margin-bottom: 0.75rem;
  }

  .portfolio-gallery-item {
    height: 350px;
  }

  .rv-34-porfolio-bullet {
    width: 20px;
    height: 20px;
  }

  .section-heading-center .section-title {
    font-size: var(--font-size-30);
  }

  .testimonials-text {
    font-size: var(--font-size-14);
    margin-bottom: 2rem;
  }

  .testimonials-author-name {
    font-size: var(--font-size-18);
  }

  .testimonials-quote-icon {
    font-size: 120px;
  }

  .testimonials-nav-btn {
    width: 45px;
    height: 45px;
    font-size: var(--font-size-14);
  }

  .testimonials-counter {
    font-size: var(--font-size-14);
  }

  .testimonials-client-img {
    width: 70px;
    height: 70px;
    border-width: 3px;
  }

  .testimonials-client-1 {
    top: 5%;
    left: 3%;
  }

  .testimonials-client-2 {
    top: 5%;
    right: 3%;
  }

  .testimonials-client-5 {
    bottom: 8%;
    left: 3%;
  }

  .testimonials-client-6 {
    bottom: 8%;
    right: 3%;
  }

  .team_lead_heading {
    margin-bottom: 20px;
  }

  .team_lead_overlay {
    left: 10px;
    bottom: 10px;
    right: 10px;
    padding: 16px 20px;
  }

  .team_lead_name {
    font-size: var(--font-size-16);
  }

  .team_lead_socials a {
    width: 32px;
    height: 32px;
    font-size: var(--font-size-12);
  }
}

@media (max-width: 576px) {
  .timeline-badge {
    font-size: var(--font-size-12);
    padding: 6px 14px;
  }

  .timeline-title {
    font-size: var(--font-size-20);
  }

  .feature-tag {
    font-size: var(--font-size-12);
    padding: 5px 12px;
  }

  .about_imgs-container {
    height: 380px;
  }

  .about_big-img {
    max-width: 240px;
    height: 360px;
  }

  .about_sm-img {
    width: 180px;
    height: 240px;
    right: 0;
    bottom: 10px;
    border: 6px solid var(--text-white);
  }

  .about_vdo-btn {
    height: 50px;
    width: 50px;
  }

  .service-card {
    padding: 25px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 30px;
  }

  .blog-card-content {
    padding: 20px;
  }

  .blog-card-title {
    font-size: var(--font-size-18);
  }

  .why-section-subtitle {
    font-size: var(--font-size-16);
  }

  .why-card p {
    font-size: var(--font-size-14);
  }

  .why-particle {
    opacity: 0.3;
  }

  .process-timeline::before {
    left: 22px;
  }

  .process-row {
    gap: 0px;
  }

  .process-number {
    display: none;
  }

  .process-content {
    padding: 1rem 1.25rem;
  }

  .process-title {
    font-size: var(--font-size-14);
  }

  .process-description {
    font-size: var(--font-size-12);
  }

  .process-icon-badge {
    width: 36px;
    height: 36px;
  }

  .process-icon-badge i {
    font-size: var(--font-size-16);
  }

  .team_lead_overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
  }

  .team_lead_socials {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--font-size-30);
    line-height: 38px;
  }

  .section-heading-center .section-title {
    font-size: var(--font-size-26);
  }

  .testimonials-card {
    padding: 0 15px;
  }

  .testimonials-stars i {
    font-size: var(--font-size-16);
  }

  .testimonials-text {
    font-size: var(--font-size-14);
  }

  .testimonials-author-name {
    font-size: var(--font-size-16);
  }

  .testimonials-author-role {
    font-size: var(--font-size-12);
  }

  .testimonials-quote-icon {
    font-size: 100px;
  }

  .testimonials-navigation {
    gap: 1rem;
  }

  .testimonials-nav-btn {
    width: 40px;
    height: 40px;
    font-size: var(--font-size-12);
  }

  .testimonials-counter {
    font-size: var(--font-size-14);
    min-width: 50px;
  }

  .testimonials-client-img {
    width: 60px;
    height: 60px;
  }

  .testimonials-client-5,
  .testimonials-client-6 {
    display: none;
  }

  .testimonials-client-1 {
    top: 3%;
    left: 2%;
  }

  .testimonials-client-2 {
    top: 3%;
    right: 2%;
  }
}

/* ============================================
   CTA SECTION - LET'S BUILD YOUR DIGITAL FUTURE
============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0a2d47 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-wrapper {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-cta {
  background: var(--primary-color);
  color: var(--text-white);
  border: 2px solid var(--primary-color);
  padding: 1rem 2.5rem;
  font-size: var(--font-size-16);
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(21, 105, 253, 0.3);
}

.btn-cta:hover {
  background: transparent;
  border-color: var(--text-white);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(21, 105, 253, 0.4);
}

.btn-cta-secondary {
  background: transparent;
  border-color: var(--text-white);
  color: var(--text-white);
}

.btn-cta-secondary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.cta-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.cta-feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(21, 105, 253, 0.3);
}

.cta-feature-icon i {
  font-size: var(--font-size-24);
  color: var(--text-white);
}

.cta-feature-text h4 {
  font-size: var(--font-size-18);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
}

.cta-feature-text p {
  font-size: var(--font-size-14);
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   RESPONSIVE STYLES FOR CTA SECTION
============================================ */

@media (max-width: 768px) {
  .cta-wrapper {
    padding: 40px 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
  }

  .cta-features {
    gap: 20px;
  }

  .cta-feature-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .cta-feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-feature-icon {
    width: 50px;
    height: 50px;
  }

  .cta-feature-icon i {
    font-size: var(--font-size-20);
  }
}

.section-title span {
  color: var(--primary-color);
}

/* Industries Section Specific Styles */
.industries-section {
  background: linear-gradient(135deg, #e0e4e7ad 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.industries-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(21, 105, 253, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(11, 60, 93, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.industry-card {
  background: var(--text-white);
  padding: 25px 30px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: width 0.4s ease;
}

.industry-card:hover::before {
  width: 100%;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.industry-icon i {
  font-size: 28px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: var(--secondary-color);
  transform: scale(1.05);
}

.industry-card:hover .industry-icon i {
  color: var(--text-white);
}

.industry-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-22);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.industry-card:hover .industry-title {
  color: var(--primary-color);
}

.industry-description {
  font-size: var(--font-size-14);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.industry-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-14);
  color: var(--text-secondary);
}

.industry-feature i {
  color: var(--primary-color);
  font-size: var(--font-size-12);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.15s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.25s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.35s;
}

.fade-in:nth-child(5) {
  animation-delay: 0.45s;
}

.fade-in:nth-child(6) {
  animation-delay: 0.55s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: var(--font-size-16);
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-card {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .industry-card {
    padding: 20px;
  }

  .industry-icon {
    width: 55px;
    height: 55px;
  }

  .industry-icon i {
    font-size: 24px;
  }

  .industry-title {
    font-size: 1.25rem;
  }

  .industry-description {
    font-size: var(--font-size-14);
  }

  .industry-feature {
    font-size: var(--font-size-12);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.625rem;
  }
}

/* Teams Section with Swiper Styles */
.new_teams_section {
  background: linear-gradient(135deg, #e0e4e7ad 0%, #ffffff 100%);
  position: relative;
}

.new_teams_header {
  text-align: center;
  margin-bottom: 50px;
}

/* Swiper Container */
.teams-swiper-container {
  width: 100%;
  padding: 20px 0 60px;
  overflow: hidden;
}

.teams-swiper-wrapper {
  display: flex;
}

.new_teams_card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 450px;
  transition: all 0.4s ease;
}

.new_teams_card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.new_teams_member_image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.new_teams_member_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new_teams_member_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 60, 93, 0.95), transparent);
  padding: 30px 25px;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.new_teams_overlay_content {
  transform: translateY(60px);
  transition: transform 0.4s ease;
}

.new_teams_card:hover .new_teams_overlay_content {
  transform: translateY(0);
}

.new_teams_member_name {
  font-size: var(--font-size-22);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 5px;
}

.new_teams_member_role {
  font-size: var(--font-size-14);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.new_teams_member_bio {
  font-size: var(--font-size-14);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
}

.new_teams_card:hover .new_teams_member_bio {
  opacity: 1;
}

.new_teams_social_links {
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}

.new_teams_card:hover .new_teams_social_links {
  opacity: 1;
}

.new_teams_social_links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all 0.3s ease;
  text-decoration: none;
}

.new_teams_social_links a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(21, 105, 253, 0.4);
}

/* Swiper Pagination - Blog Style */
.teams-pagination-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.teams-swiper-pagination {
  display: flex !important;
  justify-content: center !important;
  position: static !important;
  width: auto !important;
}

.teams-swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background-color: #c4c4c4;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 4px !important;
}

.teams-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
  .new_teams_card {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .new_teams_card {
    height: 380px;
  }

  .new_teams_member_overlay {
    padding: 25px 20px;
  }

  .new_teams_member_name {
    font-size: var(--font-size-20);
  }

  .new_teams_member_bio {
    font-size: var(--font-size-14);
  }
}

@media (max-width: 576px) {
  .new_teams_card {
    height: 350px;
  }

  .new_teams_overlay_content {
    transform: translateY(40px);
  }

  .new_teams_member_overlay {
    padding: 20px 18px;
  }

  .new_teams_member_name {
    font-size: var(--font-size-18);
  }

  .new_teams_member_role {
    font-size: var(--font-size-12);
  }

  .new_teams_member_bio {
    font-size: var(--font-size-12);
    margin-bottom: 15px;
  }

  .new_teams_social_links a {
    width: 34px;
    height: 34px;
    font-size: var(--font-size-14);
  }
}

.rishab {
}
