body {
  margin: 0;
  padding: 0;
  background: #EDEFF4;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  color: #222;
  overflow-x: hidden;
}
h1, h2 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  letter-spacing: 1px;
}
section {
  margin: 0 auto;
  border-bottom: none;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}
section::before {
  display: none;
}
section > * {
  position: relative;
  z-index: 2;
}
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 700px;
  
  padding: 30px 20px 0 20px;
  border-radius: 0;

  margin-top: 0;
  padding-bottom: 60px;
}
.hero-title {
  font-family: 'Bebas Neue', 'DM Sans', ;
  font-size: 4.5rem;
  color: #092D53;
  font-weight: 350;
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.gradient-text {
  background: linear-gradient(135deg, #2E66FC 0%, #5748FA 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
}
@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-subtitle {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.2rem;
  color: #3C4D6C;
  max-width: 700px;
  margin: 0 auto 10px auto;
  line-height: 1.3;
}
.hero-support {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.25rem;
  color: #3C4D6C;
  margin-bottom: 10px;
}
.hero-btn {
  background: linear-gradient(135deg, #2E66FC 0%, #5748FA 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
  padding: 15px 70px;
  font-size: 1.25rem;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.hero-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5748FA 0%, #8B5CF6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-btn:hover::after {
  opacity: 1;
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 102, 252, 0.3);
}
.hero-btn span {
  position: relative;
  z-index: 1;
}
button {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  background: #222;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover {
  background: #444;
}
button:focus, .navbar-btn:focus, .hero-btn:focus, .cs-btn:focus, a:focus, .mobile-menu-toggle:focus {
  outline: 3px solid #2E66FC;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(46,102,252,0.15);
  z-index: 10;
}
.navbar {
  width: 100%;
  background: #fff !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  position: relative;
  top: 20px;
  margin-top: 10px;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 15px;
}
.navbar-logo img {
  height: 40px;
  margin-left: 0;
}
.navbar-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.navbar-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}
.navbar-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2E66FC, #5748FA);
  transition: width 0.3s ease;
}
.navbar-links a:hover::before {
  width: 100%;
}
.navbar-links a:hover {
  color: #2E66FC;
  transform: translateY(-1px);
}
.navbar-btn {
  background: linear-gradient(135deg, #2E66FC 0%, #5748FA 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 102, 252, 0.2);
  position: relative;
  overflow: hidden;
}
.navbar-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5748FA 0%, #8B5CF6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.navbar-btn:hover::after {
  opacity: 1;
}
.navbar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 102, 252, 0.3);
}
.navbar-btn span {
  position: relative;
  z-index: 1;
}
.hero-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  margin-top: 24px;
}
.hero-card {
  background: rgba(255,255,255,0.25);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
  min-width: 220px;
  min-height: 180px;
}
.card-1 { padding: 32px 18px 24px 18px; }
.card-2 { padding: 24px 32px 24px 32px; }
.card-3 { padding: 24px 18px 32px 18px; }
.hero-card img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: none;
}
.hero-card:hover {
  box-shadow: 0 0 8px rgba(44, 62, 80, 0.18);
}

.hero-gradient-bg {
  position: absolute;
  top: 50px;
  right: -300px;
  width: 90%;
  height: 90%;
  z-index: -10;
  pointer-events: none;
  object-fit: contain;
  filter: blur(5px);
}
.hero-content > * {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeInUp 0.7s cubic-bezier(0.4,0.2,0.2,1) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }
.hero-content > *:nth-child(5) { animation-delay: 1.0s; }
@keyframes heroFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero > *:not(.hero-gradient-bg) {
  position: relative;
  z-index: 1;
}
.whatwedo {
  padding: 20px 0;
  width: 100vw;
  max-width: none;
  margin: 0;
  text-align: center;
  overflow-x: hidden;
  position: relative;
  overflow-y: hidden;
  background: linear-gradient(120deg, #edeaff 0%, #eaf3ff 100%);
  background-size: 100% 100%;
  background-opacity: 0.5;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-clip: border-box;
  border-radius: 0;
}
.whatwedo::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; height: 120px;
  background: linear-gradient(to top, rgba(255,255,255,0) 0%, #edeff4 100%);
  pointer-events: none;
  z-index: 2;
}
.whatwedo::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #edeff4 100%);
  pointer-events: none;
  z-index: 2;
}
.whatwedo > * {
  position: relative;
  z-index: 1;
}
.whatwedo-title,
.whatwedo-subtitle,
.whatwedo-desc {
  padding-left: 300px;
  text-align: left;
}
.whatwedo-gradient-bg {
  display: none;
}
.whatwedo-content {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
}
.whatwedo-title {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 3.8rem;
  color: #092D53;
  font-weight: 350;
  margin-bottom: 0;
  letter-spacing: 1px;
}
.gradient-text2 {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(180deg, #2E66FC 51%, #5748FA 81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.whatwedo-desc {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.2rem;
  color: #3C4D6C;
  max-width: 540px;
  line-height: 1.5;
}
.whatwedo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 324px);
  gap: 15px 15px;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  margin: 18px auto 0 auto;
  box-sizing: border-box;
}
.whatwedo-card {
  perspective: 800px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(44, 62, 80, 0.10);
  position: relative;
  overflow: hidden;
}
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.4,0.2,0.2,1);
  transform-style: preserve-3d;
}
.whatwedo-card:hover .card-inner {
  transform: rotateY(180deg);
}
.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: opacity 0.3s, visibility 0.3s;
}
.card-front {
  z-index: 2;
}
.card-back {
  transform: rotateY(180deg);
  z-index: 1;
  object-fit: contain;
}
.card-front img, .card-back img {
  width: 260px;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin: 20px 0px 20px 0px;
}
.card-back img {
  object-fit: contain;
}

.whatwedo-card.placeholder {
  background: none;
  box-shadow: none;
  pointer-events: none;
  border: none;
}
/* Systematic fade-in animation */
.whatwedo-content > * {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeInUp 0.20s cubic-bezier(0.4,0.2,0.2,1) forwards;
}
.whatwedo-content > *:nth-child(1) { animation-delay: 0.2s; }
.whatwedo-content > *:nth-child(2) { animation-delay: 0.4s; }
.whatwedo-content > *:nth-child(3) { animation-delay: 0.6s; }
.whatwedo-content > *:nth-child(4) { animation-delay: 0.8s; }
@media (max-width: 900px) {
  .whatwedo-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }
  .whatwedo-card {
    min-width: 140px;
    max-width: 180px;
    min-height: 180px;
  }
}
@media (max-width: 600px) {
  .whatwedo-cards {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  .whatwedo-card {
    min-width: 120px;
    max-width: 100%;
    min-height: 120px;
  }
}
.process-section {
  padding: 30px 0;
  width: 100vw;
  max-width: none;
  margin: 0;
  text-align: center;
  overflow-x: hidden;
  position: relative;
  overflow-y: hidden;
  background: linear-gradient(240deg, #edeaff 25%, #eaf3ff 75%);
  background-image: url('assets/Gradient2.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-clip: border-box;
}
.process-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; height: 120px;
  background: linear-gradient(to top, rgba(255,255,255,0) 0%, #edeff4 100%);
  pointer-events: none;
  z-index: 2;
}
.process-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #edeff4 100%);
  pointer-events: none;
  z-index: 2;
}
.process-section > * {
  position: relative;
  z-index: 1;
}
.process-title {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 4rem;
  color: #092D53;
  font-weight: 350;
  margin-bottom: 0.1rem;
  letter-spacing: 1px;
}
.process-subtitle {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(180deg, #2E66FC 51%, #5748FA 81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 20px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.process-step {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
.process-step:nth-child(odd) {
  justify-content: flex-start;
}
.process-step:nth-child(even) {
  justify-content: flex-end;
}
.step-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3C4D6B;
  position: relative;
  z-index: 2;
  transition: background 0.5s ease;
}
.step-line {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 2px;
  height: 60px;
  background: #3462FC;
  transform: translateX(-50%);
  z-index: 1;
  transition: background 0.5s ease;
}
.process-step:last-child .step-line {
  display: none;
}
.step-content {
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.1);
  margin-left: 40px;
  margin-right: 40px;
  min-width: 300px;
  transition: all 0.5s ease;
}
.process-step:nth-child(odd) .step-content {
  margin-left: 40px;
  margin-right: 0;
}
.process-step:nth-child(even) .step-content {
  margin-left: 0;
  margin-right: 40px;
}
.step-heading {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 2.8rem;
  color: #092D53;
  font-weight: 700;
  margin: 0 0 8px 0;
  transition: all 0.5s ease;
}
.step-subheading {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #3C4D6C;
  margin: 0;
  transition: color 0.5s ease;
}
/* Scroll-triggered color changes */
.process-step.active .step-circle {
  background: #092D53;
}
.process-step.active .step-line {
  background: #092D53;
}
.process-step.active .step-content {
  background: #092D53;
}
.process-step.active .step-heading {
  background: linear-gradient(180deg, #2E66FC 70%, #6355f8 81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.process-step.active .step-subheading {
  color: #fff;
  font-size: 1rem;
}
.process-timeline {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0 60px 0;
}
.process-step {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  min-height: 120px;
  margin-bottom: 30px;
  z-index: 1;
}
.process-step.left {
  flex-direction: row;
}
.process-step.right {
  flex-direction: row-reverse;
}
.step-number {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 2rem;
  color: #092D53;
  font-weight: 400;
  min-width: 110px;
  text-align: right;
  margin: 0 30px 0 0;
}
.process-step.right .step-number {
  text-align: left;
  margin: 0 0 0 30px;
}
.step-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.10), 0 1.5px 8px rgba(44, 62, 80, 0.08);
  padding: 22px 32px 18px 32px;
  min-width: 320px;
  max-width: 370px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  transition: background 0.3s, box-shadow 0.3s, border 0.3s;
}
.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #092D53;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 1rem;
  color: #3C4D6C;
  font-weight: 400;
}
/* Circles on the timeline */
.process-step::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background: #3C4D6B;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (max-width: 1100px) {
  .process-timeline {
    max-width: 100%;
    padding: 20px 0 40px 0;
  }
  .step-box {
    min-width: 220px;
    max-width: 98vw;
    padding: 18px 10px 14px 10px;
  }
}
@media (max-width: 700px) {
  .process-timeline {
    padding: 10px 0 20px 0;
  }
  .process-step, .process-step.left, .process-step.right {
    flex-direction: column !important;
    align-items: flex-start;
    min-height: 80px;
  }
  .step-number {
    margin: 0 0 10px 0 !important;
    text-align: left !important;
  }
  .step-box {
    min-width: 0;
    max-width: 100vw;
    padding: 12px 6vw 10px 6vw;
  }
  .process-step::before {
    left: 0;
    transform: translateY(-50%);
  }
  .timeline-center {
    left: 12px;
    width: 4px;
  }
}
.process-timeline-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0 0;
  position: relative;
  margin: 0 auto;
  padding: 40px 0 60px 0;
  max-width: 1200px;
}
.timeline-gradient-line {
  position: absolute;
  left: 50%;
  top: calc(30px + 15px);
  bottom: calc(120px + 50px);
  width: 6px;
  background: linear-gradient(180deg, #3462FC 0%, #fff 100%);
  transform: translateX(-60%);
  z-index: 0;
  border-radius: 3px;
}
.timeline-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 60px;
}
.timeline-circle {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 30px;
  height: 30px;
  background: #3C4D6B;
  border-radius: 50%;
  border: 6px solid #3C4D6B;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
  z-index: 2;
  margin: 0;
  transition: background 0.3s, border 0.3s;
}
.timeline-circle.active {
  background: #092D53;
  border: 6px solid #092D53;
}
.process-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  min-height: 120px;
  z-index: 2;
  transition: background 0.3s;
}
.process-box.right {
  flex-direction: row-reverse;
  justify-content: flex-start;
}
.process-box .step-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.10), 0 1.5px 8px rgba(44, 62, 80, 0.08);
  padding: 22px 32px 18px 32px;
  min-width: 320px;
  max-width: 370px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  transition: background 0.3s, box-shadow 0.3s, border 0.3s;
}
.process-box.active .step-box {
  background: #092D53;
}
.process-box .step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #092D53;
  margin-bottom: 6px;
}
.process-box.active .step-title {
  background: linear-gradient(180deg, #2E66FC 51%, #6456f8 81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.process-box .step-desc {
  font-size: 1rem;
  color: #3C4D6C;
  font-weight: 400;
  transition: color 0.3s;
}
.process-box.active .step-desc {
  color: #f1f1fadc;
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 1100px) {
  .process-timeline-grid {
    max-width: 100%;
    padding: 20px 0 40px 0;
    grid-template-columns: 1fr 40px 1fr;
  }
  .process-box .step-box {
    min-width: 220px;
    max-width: 98vw;
    padding: 18px 10px 14px 10px;
  }
}
@media (max-width: 700px) {
  .process-timeline-grid {
    grid-template-columns: 1fr;
    padding: 10px 0 20px 0;
  }
  .process-box, .process-box.right {
    flex-direction: column !important;
    align-items: flex-start;
    min-height: 80px;
    justify-content: flex-start;
  }
  .step-number {
    margin: 0 0 10px 0 !important;
    text-align: left !important;
  }
  .process-box .step-box {
    min-width: 0;
    max-width: 100vw;
    padding: 12px 6vw 10px 6vw;
  }
  .timeline-center {
    min-width: 32px;
    width: 32px;
  }
  .timeline-gradient-line {
    left: 16px;
    width: 4px;
  }
  .timeline-circle {
    width: 24px;
    height: 24px;
    border-width: 4px;
  }
} 
/* --- WE MAKE IT COUNT SECTION --- */
.we-make-it-count {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  height: 500px;
  text-align: center;
  overflow-x: hidden;
  background: linear-gradient(120deg, #edeaff 25%, #eaf3ff 75%);
  border-radius: 0;
}
.wmic-title {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 4rem;
  color: #092D53;
  font-weight: 350;
  margin-bottom: 0.1rem;
  letter-spacing: 1px;
}
.wmic-subtitle {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.18rem;
  color: #3C4D6C;
  margin-bottom: 38px;
  font-weight: 400;
}
.wmic-cards-wrapper {
  overflow-x: visible;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  position: relative;
  padding: 0;
}
.wmic-cards-track {
  display: flex;
  gap: 32px;
  width: 100vw;
  animation: wmic-marquee 18s linear infinite;
  will-change: transform;
}
.wmic-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.10);
  min-width: 270px;
  max-width: 300px;
  flex: 0 0 270px;
  padding: 32px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.wmic-card-title {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  background: linear-gradient(180deg, #2E66FC 51%, #5748FA 81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.wmic-card-desc {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.05rem;
  color: #3C4D6C;
  font-weight: 400;
  line-height: 1.5;
}
@keyframes wmic-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .wmic-cards-track {
    gap: 18px;
  }
  .wmic-card {
    min-width: 220px;
    max-width: 240px;
    padding: 22px 10px 18px 10px;
  }
}
@media (max-width: 600px) {
  .wmic-title {
    font-size: 2.1rem;
  }
  .wmic-cards-track {
    gap: 10px;
  }
  .wmic-card {
    min-width: 170px;
    max-width: 180px;
    padding: 14px 6px 12px 6px;
  }
} 
.who-we-are {
  background: linear-gradient(240deg, #edeaff 25%, #eaf3ff 75%);
  padding: 30px 0;
  text-align: center;
  position: relative;
  border-radius: 0;
}

.wwa-title {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 4rem;
  color: #092D53;
  font-weight: 350;
  margin-bottom: 0rem;
  letter-spacing: 1px;
}
.wwa-subtitle {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  background: linear-gradient(180deg, #2E66FC 51%, #5748FA 81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.wwa-desc {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  color: #3C4D6C;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 700px;
}
.wwa-team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.wwa-team-grid > .wwa-member {
  flex: 1 1 30%;
  max-width: 250px;
  min-width: 200px;
  box-sizing: border-box;
}
.wwa-team-row {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 24px 18px;
  margin-top: 0;
  padding: 10px 1px 1px 10px;
}
.wwa-team-row .wwa-member {
  flex: 1 1 30%;
  max-width: 230px;
  min-width: 220px;
}
.wwa-team-row img {
  width: 100%;
  max-width: 200px;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  margin: 1px 0 1px 0;
  box-shadow: 0 1px 8px rgba(15, 21, 27, 0.18);
  transition: none;
}
.wwa-member {
  background: rgba(255, 255, 255, 0.389);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.10);
  padding: 10px 1px 1px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.wwa-member:hover,
.wwa-member:hover img {
  transform: none !important;
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.10) !important;
}
.wwa-member img {
  width: 100%;
  max-width: 200px;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  margin: 1px 0 1px 0;
  box-shadow: 0 1px 8px rgba(15, 21, 27, 0.18);
  transition: none;
}
.wwa-member-name {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #092D53;
  margin-bottom: 2px;
}
.wwa-member-role {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 0.98rem;
  color: #3C4D6C;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .wwa-team-grid, .wwa-team-row {
    flex-direction: column;
    align-items: center;
    gap: 14px 0;
  }
  .wwa-team-grid > .wwa-member, .wwa-team-row .wwa-member {
    max-width: 80vw;
    min-width: 140px;
  }
  .wwa-member img {
    max-width: 80px;
    height: 80px;
  }
}
@media (max-width: 600px) {
  .wwa-team-grid, .wwa-team-row {
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
  }
  .wwa-team-grid > .wwa-member, .wwa-team-row .wwa-member {
    max-width: 98vw;
    min-width: 100px;
  }
  .wwa-member img {
    max-width: 60px;
    height: 60px;
  }
} 
.what-we-think {
  background: linear-gradient(120deg, #edeaff 0%, #eaf3ff 80%);
  padding: 20px 0;
  text-align: center;
  position: relative;
  border-radius: 0;
  
}
.wwt-title {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 4rem;
  color: #092D53;
  font-weight: 350;
  margin-bottom: 0rem;
  letter-spacing: 1px;
}
.wwt-desc {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  color: #3C4D6C;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 700px;
}
.wwt-highlight {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  background: linear-gradient(180deg, #2E66FC 51%, #5748FA 81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.clear-steps {
  padding-top: 0px;
  margin-bottom: 25px;
  text-align: center;
  border-radius: 0;
  background: linear-gradient(240deg, #edeaff 0%, #eaf3ff 80%), 
  url('assets/MapBg.png') center center/contain no-repeat;
}
.clear-steps::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.25); /* subtle overlay for readability */
  z-index: 0;
  pointer-events: none;
}
.clear-steps > * {
  position: relative;
  z-index: 1;
}
.cs-title {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 4rem;
  color: #092D53;
  font-weight: 350;
  margin-bottom: 0rem;
  letter-spacing: 1px;
}
.cs-desc {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.20rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  color: #3C4D6C;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 700px;
}
.cs-btn {
  background: linear-gradient(135deg, #2E66FC 0%, #5748FA 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 10px 70px;
  font-size: 1.25rem;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.cs-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5748FA 0%, #8B5CF6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cs-btn:hover::after {
  opacity: 1;
}
.cs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 102, 252, 0.3);
}
.cs-btn span {
  position: relative;
  z-index: 1;
}
.footer,
.footer * {
  box-sizing: border-box;
}
.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background: white;
  background-opacity: 0.8;
  position: relative;
  overflow: hidden;
}
.footer-logo-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.footer-logo {
  padding-top: 10px;
  height: 48px;

}
.footer-tagline {
  font-size: 1.15rem;
  color: #3C4D6C;
  margin-bottom: 0;
  max-width: 700px;
  text-align: center;
}
.footer-divider {
  border: none;
  border-top: 0.5px solid #0000002e;
  margin: 30px 0 15px 0;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  font-size: 1.08rem;
  gap: 18px;
  padding: 0 10px;
  margin-bottom: 10px;

}
.footer-copyright {
  flex: 1 1 250px;
  color: #3C4D6C;
  text-align: left;
  margin-left: 100px;
  font-weight: 300;

}
.footer-dev {
  flex: 1 1 250px;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  
  font-weight: 350;
  text-align: center;
  word-spacing: 2px;
  color: #3C4D6C;
}
.footer-links {
  flex: 1 1 250px;
  text-align: right;
  color: #092D53;
  font-weight: 350;
}
.footer-links a {
  color: #3C4D6C;
  text-decoration: none;
  margin-left: 24px;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:first-child {
  margin-left: 0;
}
.footer-links a:hover {
  color: #3462FC;
}
@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 0;
  }
  .footer-copyright, .footer-dev, .footer-links {
    flex: unset;
    text-align: center;
  }
  .footer-links a {
    margin-left: 12px;
  }
} 

/* Enhanced Button Hover Effects */
.hero-btn, .navbar-btn, .cs-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.hero-btn::before, .navbar-btn::before, .cs-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-btn:hover::before, .navbar-btn:hover::before, .cs-btn:hover::before {
  left: 100%;
}

.hero-btn:hover, .navbar-btn:hover, .cs-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46, 102, 252, 0.3);
}

/* Enhanced Card Hover Effects */
.whatwedo-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.whatwedo-card:hover {
  transform: translateY(-10px) rotateY(180deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.wmic-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.wmic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 102, 252, 0.1) 0%, rgba(87, 72, 250, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wmic-card:hover::before {
  opacity: 1;
}

.wmic-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(46, 102, 252, 0.15);
}

/* Enhanced Team Member Hover Effects */
.wwa-member {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.wwa-member::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2E66FC, #5748FA);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.wwa-member:hover::after {
  transform: scaleX(1);
}

.wwa-member:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.wwa-member:hover img {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(46, 102, 252, 0.2);
}

/* Enhanced Process Box Hover Effects */
.process-box .step-box {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.process-box .step-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 102, 252, 0.05) 0%, rgba(87, 72, 250, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.process-box:hover .step-box {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(46, 102, 252, 0.1);
}

/* Enhanced Hero Card Hover Effects */
.hero-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-card:hover::before {
  opacity: 1;
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Enhanced Navigation Link Hover Effects */
.navbar-links a {
  position: relative;
  transition: all 0.3s ease;
}

.navbar-links a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2E66FC, #5748FA);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-links a:hover::before {
  width: 100%;
}

.navbar-links a:hover {
  color: #2E66FC;
  transform: translateY(-2px);
}

/* Testimonials Section with Marquee */
.testimonials-section {
  padding: 5px 10px;
  background: linear-gradient(240deg, #edeaff 10%, #eaf3ff 50%);
  overflow: hidden;
  position: relative;
  border-radius: 0;
}


.testimonials-subtitle {
  font-size: 1.75rem;
  text-align: center;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  font-weight: 600;
  margin-right: auto;
  background: linear-gradient(180deg, #2E66FC 51%, #5748FA 81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.testimonials-marquee-wrapper {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.testimonials-marquee-track {
  display: flex;
  gap: 30px;
  animation: testimonials-marquee 18s linear infinite;
  width: max-content;
}

.testimonial-card {
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 350px;
  max-width: 350px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(46, 102, 252, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(46, 102, 252, 0.15);
}

.testimonial-content p {
  font-size: 1.1rem;
  color: #3C4D6C;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid rgba(46, 102, 252, 0.1);
  padding-top: 15px;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #092D53;
  margin-bottom: 5px;
}

.author-role {
  font-size: 0.9rem;
  color: #3C4D6C;
  font-weight: 500;
}

@keyframes testimonials-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.testimonials-marquee-wrapper:hover .testimonials-marquee-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .testimonials-marquee-track {
    animation: testimonials-marquee 25s linear infinite;
  }
  
  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 25px;
  }
  
  .testimonials-title {
    font-size: 2.5rem;
  }
} 

.hero-bg {
  width: 100%;
  min-height: 700px;
  background: linear-gradient(120deg, #edeaff 0%, #eaf3ff 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg::after {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.35) 0%, transparent 60%);
  z-index: 0;
}
.navbar, .hero {
  background: none !important;
  position: relative;
  z-index: 1;
}

.hero-bg .navbar {
  background: #ffffffb1 !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  z-index: 1001;
  position: relative;
}

/* Custom Hero Cards Layout */
.hero-cards-custom {
  position: relative;
  width: 100%;
  max-width: 900px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}
.hero-card-custom {
  position: absolute;
  background: rgba(255,255,255,0.10);
  border-radius: 18px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.18);
  pointer-events: auto;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hero-card-custom img {
  display: block;
  object-fit: contain;
  border-radius: 12px;
  margin: 0;
  box-shadow: none;
  border: none;
  padding: 0;
}
.hero-card-left img{
  width: 240px;
}
.hero-card-right img{
  height: 100px;
}
.hero-card-left {
  left: -150px;
  top: -40px;
  width: 245px;

}
.hero-card-right {
  right: -150px;
  top: -30px;
  width: 280px;
  margin: 0;

}

.hero-img-left {
  /* If you want to style this image specifically */
}
.hero-img-right {
  /* If you want to style this image specifically */
}

.hero-card-custom:hover {
  box-shadow: 0 8px 32px rgba(46, 102, 252, 0.13);
  transform: scale(1.04) translateY(-4px);
  z-index: 3;
}
@media (max-width: 900px) {
  .hero-cards-custom {
    min-height: 260px;
  }
  .hero-card-custom img {
    width: 120px;
    height: 120px;
  }
  .hero-card-left, .hero-card-right {
    top: 20px;
    transform: none;
    left: 10px;
    right: 10px;
  }
  .hero-card-left {
    left: 0;
    right: auto;
  }
  .hero-card-right {
    right: 0;
    left: auto;
  }
  .hero-card-center {
    top: 140px;
  }
}
@media (max-width: 600px) {
  .hero-cards-custom {
    min-height: 180px;
  }
  .hero-card-custom img {
    width: 80px;
    height: 80px;
  }
  .hero-card-left, .hero-card-right {
    top: 0;
  }
  .hero-card-center {
    top: 80px;
  }
} 

/* Fade-in animation for hero section */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content > * {
  opacity: 0;
  animation: heroFadeIn 0.9s cubic-bezier(0.4,0.2,0.2,1) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }
.hero-content > *:nth-child(5) { animation-delay: 1.0s; }

.hero-cards-custom {
  opacity: 0;
  animation: heroFadeIn 0.7s cubic-bezier(0.4,0.2,0.2,1) forwards;
  animation-delay: 1.2s;
}
.hero-card-custom {
  opacity: 0;
  animation: heroFadeInOpacity 0.7s cubic-bezier(0.4,0.2,0.2,1) forwards;
}
@keyframes heroFadeInOpacity {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-card-left { animation-delay: 1.4s; }
.hero-card-right { animation-delay: 1.6s; }

@keyframes sectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-section {
  opacity: 0;
  animation: sectionFadeIn 1.8s cubic-bezier(0.4,0.4,0.4,1) forwards;
}

@keyframes fadeInScroll {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.fade-in.visible {
  animation: fadeInScroll 1.2s cubic-bezier(0.4,0.2,0.2,1) forwards;
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(0.4,0.2,0.2,1), transform 0.7s cubic-bezier(0.4,0.2,0.2,1);
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.4,0.2,0.2,1), transform 0.7s cubic-bezier(0.4,0.2,0.2,1);
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4,0.2,0.2,1), transform 0.7s cubic-bezier(0.4,0.2,0.2,1);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}
.bounce-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s cubic-bezier(0.34,1.56,0.64,1), transform 0.8s cubic-bezier(0.34,1.56,0.64,1);
}
.bounce-in.visible {
  opacity: 1;
  transform: scale(1);
}
.stagger-1 { animation-delay: 0.2s !important; }
.stagger-2 { animation-delay: 0.5s !important; }
.stagger-3 { animation-delay: 0.8s !important; }
.stagger-4 { animation-delay: 1.1s !important; }
.stagger-5 { animation-delay: 1.4s !important; }

/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Mobile Navigation Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4,0.2,0.2,1);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

  .mobile-menu a {
    font-size: 1.8rem;
    font-weight: 600;
    color: #092D53;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 20px 40px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 300px;
  }

.mobile-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #2E66FC, #5748FA);
  transition: width 0.3s ease;
}

.mobile-menu a:hover::before {
  width: 80%;
}

.mobile-menu a:hover {
  color: #2E66FC;
  transform: translateY(-2px);
}

/* Mobile Breakpoints */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Improve touch targets */
  button, a {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Disable text selection on interactive elements */
  .mobile-menu-toggle,
  .mobile-menu a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  /* Navbar Mobile Styles */
  .navbar {
    padding: 15px 20px;
    top: 10px;
    margin-top: 5px;
    border-radius: 12px;
  }

  .navbar-links,
  .navbar-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Hero Section Mobile */
  .hero {
    height: auto;
    min-height: 70vh;
    padding: 120px 20px 60px 20px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .hero-support {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .hero-btn {
    padding: 12px 40px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
  }

  .hero-cards-custom {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .hero-card-custom {
    width: 100%;
    max-width: 280px;
  }

  .hero-card-custom img {
    width: 100%;
    height: auto;
  }

  .hero-gradient-bg {
    display: none;
  }

  /* Testimonials Mobile */
  .testimonials-section {
    padding: 20px 20px;
  }

  .testimonials-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .testimonial-card {
    min-width: 280px;
    padding: 20px;
    margin: 0 10px;
  }

  .testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* What We Do Mobile */
  .whatwedo {
    padding: 20px 20px;
  }

  .whatwedo-title,
  .whatwedo-subtitle,
  .whatwedo-desc {
    padding-left: 0;
    text-align: center;
  }

  .whatwedo-title {
    font-size: 3rem;
    margin-bottom: 1px;
    
  }

  .gradient-text2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .whatwedo-desc {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .whatwedo-cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    max-width: 100%;
  }

  .whatwedo-card {
    height: 200px;
    justify-items: center;
  }

  .whatwedo-card.placeholder {
    display: none;
  }

  /* Process Section Mobile */
  .process-section {
    padding: 40px 20px;
  }

  .process-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .process-subtitle {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 30px;
  }

  .process-timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .timeline-gradient-line {
    display: none;
  }

  .timeline-center {
    display: none;
  }

  .process-box,
  .process-box.right {
    width: 100%;
    margin: 0;
  }

  .step-number {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .process-box .step-box {
    padding: 20px;
    border-radius: 12px;
  }

  .process-box .step-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .process-box .step-desc {
    font-size: 0.95rem;
  }

  /* We Make It Count Mobile */
  .we-make-it-count {
    padding: 40px 20px;
  }

  .wmic-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .wmic-subtitle {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 30px;
  }

  .wmic-cards-wrapper {
    overflow-x: auto;
    padding: 0 10px;
  }

  .wmic-cards-track {
    display: flex;
    gap: 20px;
    animation: none;
  }

  .wmic-card {
    min-width: 280px;
    padding: 25px;
    flex-shrink: 0;
  }

  .wmic-card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .wmic-card-desc {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* Who We Are Mobile */
  .who-we-are {
    padding: 40px 20px;
  }

  .wwa-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .wwa-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .wwa-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .wwa-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .wwa-team-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .wwa-member {
    text-align: center;
  }

  .wwa-member img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }

  .wwa-member-name {
    font-size: 0.95rem;
    margin-bottom: 5px;
  }

  .wwa-member-role {
    font-size: 0.85rem;
  }

  /* What We Think Mobile */
  .what-we-think {
    padding: 40px 20px;
  }

  .wwt-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .wwt-desc {
    font-size: 1rem;
    line-height: 1.5;
  }

  .wwt-highlight {
    font-size: 1.1rem;
    margin-top: 20px;
  }

  /* Clear Steps Mobile */
  .clear-steps {
    padding: 40px 20px;
  }

  .cs-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .cs-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .cs-btn {
    padding: 12px 40px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
  }

  /* Footer Mobile */
  .footer {
    padding: 40px 20px;
  }

  .footer-logo-tagline {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-logo {
    height: 35px;
  }

  .footer-tagline {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-copyright,
  .footer-dev,
  .footer-links {
    font-size: 0.9rem;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-support {
    font-size: 1rem;
  }

  .whatwedo-title,
  .process-title,
  .wmic-title,
  .wwa-title,
  .wwt-title,
  .cs-title {
    font-size: 2rem;
  }

  .wwa-team-grid {
    grid-template-columns: 1fr;
  }

  .wwa-team-row {
    grid-template-columns: 1fr;
  }

  .testimonial-card,
  .wmic-card {
    min-width: 250px;
  }

  .whatwedo-card {
    height: 180px;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 80vh;
    padding: 100px 20px 40px 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-cards-custom {
    flex-direction: row;
    gap: 15px;
  }

  .hero-card-custom {
    max-width: 200px;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .whatwedo-cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 280px);
  }

  .wwa-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline-grid {
    gap: 40px;
  }

  .process-box .step-box {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  /* Navbar: center bar, left logo, right hamburger */
  .navbar {
    width: 100vw;
    max-width: 100vw;
    left: 0;
    transform: none;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: nowrap;
    position: relative;
    height: 56px;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    padding: 0 0 0 0;
  }
  .navbar-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    z-index: 2;
  }
  .navbar-logo img {
    height: 32px;
    max-width: 120px;
    width: auto;
    margin: 0;
    display: block;
  }
  .mobile-menu-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  /* Hero-bg: full width, no boxing */
  .hero-bg {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #EDEFF4 !important;
    padding: 0 !important;
    overflow-x: hidden;
  }

  /* Hero section: content fit, compact gap */
  .hero {
    width: 100vw;
    max-width: 100vw;
    height: auto !important;
    min-height: unset !important;
    padding: 70px 0 24px 0;
    gap: 14px;
    margin: 0 auto;
    box-sizing: border-box;
    background: none;
  }
  .hero-content {
    gap: 14px;
    width: 92vw;
    max-width: 420px;
    margin: 0 auto;
    padding: 0 0 0 0;
  }
  .hero-title {
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 2.1rem;
  }
  .hero-subtitle {
    margin-bottom: 8px;
    font-size: 1rem;
  }
  .hero-support {
    margin-bottom: 8px;
    font-size: 1rem;
  }
  .hero-btn {
    margin-bottom: 14px;
    width: 100%;
    max-width: 320px;
    font-size: 1.1rem;
    padding: 12px 0;
  }

  /* Hero cards: info1 below button, info2 below info1, both centered */
  .hero-cards-custom {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    gap: 14px;
    margin: 0 auto;
    width: 92vw;
    max-width: 420px;
    padding: 0;
  }
  .hero-card-custom {
    width: 100%;
    max-width: 420px;
    min-width: 0;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    box-shadow: none;
  }
  .hero-card-left {
    order: 1;
    margin-top: 0;
  }
  .hero-card-right {
    order: 2;
    margin-top: 0;
  }
  .hero-card-custom img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    padding: 0;
    box-sizing: border-box;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  /* ...existing code... */

  /* Prevent hero card overflow/cropping */
  .hero-bg,
  .hero {
    overflow-x: visible !important;
  }
  .hero-cards-custom {
    width: 100vw;
    max-width: 100vw;
    padding: 0 8px;
    box-sizing: border-box;
    overflow-x: visible;
  }
  .hero-card-custom {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    box-shadow: none;
    overflow: visible;
  }
  .hero-card-custom img {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    display: block;
    padding: 0;
    box-sizing: border-box;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  /* HERO SECTION MOBILE FIXES */
  .hero-cards-custom {
    flex-direction: column !important;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    padding: 0 8px;
    box-sizing: border-box;
    overflow-x: visible;
    position: static !important;
    min-height: unset !important;
  }
  .hero-card-custom {
    position: static !important;
    width: 100%;
    max-width: 420px;
    min-width: 0;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    box-shadow: none;
    overflow: visible;
    top: unset !important;
    left: unset !important;
    right: unset !important;
  }
  .hero-card-custom img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .hero-card-left, .hero-card-right {
    order: unset;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  /* HERO SECTION MOBILE FIXES - CARD SIZE AND PADDING */
  .hero-cards-custom {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-card-custom {
    max-width: 320px;
    min-width: 0;
    height: auto;
    min-height: 160px;
    padding: 12px 8px;
  }
  .hero-card-custom img {
    max-width: 90%;
    height: auto;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-cards-custom {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .hero-card-custom {
    max-width: 280px !important;
    min-width: 0 !important;
    min-height: 120px !important;
    height: auto !important;
    padding: 12px 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-card-custom img {
    max-width: 90% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
}

@media (max-width: 768px) {
  .hero-title,
  .hero-subtitle {
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  .hero-bg, .hero, .hero-cards-custom, .whatwedo, .process-section, .we-make-it-count, .who-we-are, .what-we-think, .clear-steps, .footer {
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
}

@media (max-width: 768px) {
  .whatwedo-card {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    min-height: 255px;
    height: auto;
    padding: 12px 0;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    box-shadow: none;
    border-radius: 12px;
  }
  .card-front img, .card-back img {
    width: 100%;
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    border-radius: 12px;
    box-sizing: border-box;
    display: block;
  }
}

@media (max-width: 768px) {
  /* Hide timeline */
  .timeline-gradient-line,
  .timeline-center {
    display: none !important;
  }
  /* Center align and enlarge step number */
  .step-number {
    text-align: center !important;
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
    width: 100%;
    display: block;
    font-weight: 580;
    letter-spacing: 1px;
  }
  /* Center process boxes and add gap */
  .process-timeline-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .process-box,
  .process-box.right {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 18px auto;
    box-sizing: border-box;
  }
  .process-box:last-child,
  .process-box.right:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  /* ...existing code... */
  .we-make-it-count {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .wmic-cards-wrapper {
    overflow-x: hidden;
    padding: 0;
    position: relative;
  }
  .wmic-cards-track {
    display: flex;
    gap: 20px;
    animation: wmic-marquee 40s linear infinite;
    will-change: transform;
    width: max-content;
  }
  .wmic-card {
    min-width: 280px;
    max-width: 300px;
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  .wwa-member {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    min-height: 120px;
    height: auto;
    padding: 10px 0;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    box-shadow: none;
    border-radius: 12px;
  }
  .wwa-member img {
    width: 100%;
    max-width: 90%;
    height: auto;
    max-height: 255px;
    margin: 0 auto;
    padding: 0;
    border-radius: 12px;
    box-sizing: border-box;
    display: block;
  }
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer-logo-tagline {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-logo {
    height: 48px;
    margin: 0 auto 10px auto;
    display: block;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
    margin-top: 0;
  }
  .footer-dev {
    order: -1;
    margin-bottom: 0;
  }
  .footer-copyright {
    margin: 0 auto 0 auto;
    text-align: center;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    margin-top: 0;
  }
  .footer-links a {
    margin: 0;
    padding: 0;
  }
}

.whatwedo-card.flipped .card-inner {
  transform: rotateY(180deg);
}

/* Show only the correct side when flipped (mobile and desktop) */
.whatwedo-card .card-front { opacity: 1; visibility: visible; }
.whatwedo-card .card-back { opacity: 0; visibility: hidden; }
.whatwedo-card.flipped .card-front,
.whatwedo-card:hover .card-front { opacity: 0; visibility: hidden; }
.whatwedo-card.flipped .card-back,
.whatwedo-card:hover .card-back { opacity: 1; visibility: visible; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  background: #fff;
  color: #2E66FC;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(46,102,252,0.15);
  transition: left 0.2s;
}
.skip-link:focus {
  left: 50%;
  top: 10px;
  width: auto;
  height: auto;
  outline: 2px solid #2E66FC;
  outline-offset: 2px;
  transform: translateX(-50%);
}

@media (max-width: 480px) {
  .testimonials-marquee-track {
    animation: testimonials-marquee 35s linear infinite;
  }
  .testimonial-card {
    min-width: 220px;
    max-width: 90vw;
    padding: 18px;
  }
  .testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
  }
}

.mobile-menu-back {
  display: none;
  background: none;
  border: none;
  color: #2E66FC;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  width: 100%;
  padding: 18px 40px 10px 40px;
  cursor: pointer;
  outline: none;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .mobile-menu-back {
    display: block;
  }
}

@media (max-width: 768px) {
  .card-inner {
    transition: transform 1.2s cubic-bezier(0.4,0.2,0.2,1);
  }
}

@media (max-width: 768px) {
  .whatwedo-card .card-inner {
    transition: none;
  }
  .whatwedo-card .card-front,
  .whatwedo-card .card-back {
    transition: opacity 1s;
    backface-visibility: visible;
  }
  .whatwedo-card .card-front {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }
  .whatwedo-card .card-back {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }
  .whatwedo-card.show-back .card-front {
    opacity: 0;
    visibility: hidden;
  }
  .whatwedo-card.show-back .card-back {
    opacity: 1;
    visibility: visible;
  }
  .whatwedo-card.flipped .card-inner {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  /* Remove all flip/rotateY transforms for mobile */
  .card-inner,
  .whatwedo-card .card-inner,
  .card-back,
  .whatwedo-card.flipped .card-inner,
  .card-inner.flipped {
    transform: none !important;
    transition: none !important;
  }
  .whatwedo-card.flipped .card-inner,
  .whatwedo-card.flipped .card-front,
  .whatwedo-card.flipped .card-back,
  .card-inner.flipped,
  .card-inner.flipped .card-front,
  .card-inner.flipped .card-back {
    all: unset !important;
  }
  .whatwedo-card .card-front,
  .whatwedo-card .card-back {
    transition: opacity 1s;
    backface-visibility: visible;
  }
  .whatwedo-card .card-front {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }
  .whatwedo-card .card-back {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }
  .whatwedo-card.show-back .card-front {
    opacity: 0;
    visibility: hidden;
  }
  .whatwedo-card.show-back .card-back {
    opacity: 1;
    visibility: visible;
  }
}
