:root {
  --warm-grey: #f5f4f2;
  --soft-orange: #ffb385;
  --rich-olive: #7a8c3e;
  --light-beige: #f9f6f1;
  --dusty-pink: #e9b7b7;
  --muted-jade: #b6d6c8;
  --text-dark: #2d2d2d;
  --text-light: #6a6a6a;
  --primary: var(--soft-orange);
  --secondary: var(--rich-olive);
  --accent: var(--dusty-pink);
  --white: #fff;
  --navbar-height: 64px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--warm-grey);
  color: var(--text-dark);
  min-height: 100%;
  scroll-behavior: smooth;
}

.animated-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  animation: float 12s ease-in-out infinite alternate;
}
.shape1 {
  width: 420px; height: 420px;
  background: linear-gradient(135deg, var(--soft-orange), var(--light-beige));
  top: -120px; left: -120px;
  animation-delay: 0s;
}
.shape2 {
  width: 260px; height: 260px;
  background: linear-gradient(120deg, var(--muted-jade), var(--white));
  bottom: 40px; right: -80px;
  animation-delay: 2s;
}
.shape3 {
  width: 180px; height: 180px;
  background: linear-gradient(120deg, var(--dusty-pink), var(--white));
  top: 60%; left: 70%;
  animation-delay: 4s;
}

@keyframes float {
  0% { transform: translateY(0) scale(1);}
  100% { transform: translateY(-30px) scale(1.08);}
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px 0 rgba(60,60,60,0.04);
  z-index: 10;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: var(--navbar-height);
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: var(--secondary);
}
.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: var(--transition);
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
  font-weight: 600;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--primary);
  width: 100%;
  border-radius: 1px;
  position: absolute;
  left: 0; bottom: -2px;
  transition: width var(--transition);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  margin-left: 1rem;
}
.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
  z-index: 1;
  gap: 2rem;
}
.hero-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: fadeInUp 1s 0.2s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
.headline {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin: 0;
}
.subtext {
  font-size: 1.25rem;
  color: var(--text-light);
  margin: 0;
  max-width: 480px;
}
.cta-buttons {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}
.btn {
  padding: 0.85rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px 0 rgba(60,60,60,0.06);
}
.btn.primary {
  background: var(--primary);
  color: var(--white);
}
.btn.primary:hover {
  background: var(--secondary);
  color: var(--white);
}
.btn.secondary {
  background: var(--white);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn.secondary:hover {
  background: var(--secondary);
  color: var(--white);
}

.hero-illustration {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  animation: fadeIn 1.2s 0.5s both;
}
@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}
.hero-illustration img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 8px 32px rgba(60,60,60,0.08));
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.7);
}

/* About Section */
.about {
  background: var(--light-beige);
  padding: 4rem 0 3rem 0;
  position: relative;
  z-index: 1;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-start; /* revert to normal alignment */
  min-height: unset;
}
.about-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-left h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.about-left p {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.beliefs-slider {
  position: relative;
  left: unset;
  top: unset;
  transform: none;
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding-right: 0; /* Remove extra padding */
  padding-left: 0;  /* Remove extra padding */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  overflow: hidden;
  z-index: 2;
}
.beliefs-slide {
  flex: 1 1 auto;
  min-width: 0;
  /* ...existing code... */
}
.beliefs-prev, .beliefs-next {
  position: static; /* Remove absolute positioning */
  margin: 0 0.5rem;
  z-index: 3;
  /* Keep other button styles */
}
.beliefs-slider {
  justify-content: flex-start;
}
/* Responsive: stack slider and buttons on small screens */
@media (max-width: 700px) {
  .beliefs-slider {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* About Right - Collage Images */
.about-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-collage {
  display: grid;
  grid-template-columns: 120px 120px;
  grid-template-rows: 120px 120px;
  gap: 1rem;
  position: relative;
}
.collage-img {
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(60,60,60,0.07);
  object-fit: cover;
  width: 120px;
  height: 120px;
  background: var(--white);
  opacity: 0.96;
  transition: transform 0.4s;
}
.img1 { grid-column: 1; grid-row: 1; z-index: 2;}
.img2 { grid-column: 2; grid-row: 1 / span 2; height: 250px;}
.img3 { grid-column: 1; grid-row: 2; z-index: 1; margin-top: -30px;}

/* Services Section */
.services {
  background: var(--warm-grey);
  padding: 4rem 0 3rem 0;
  position: relative;
  z-index: 1;
}
.services h2 {
  text-align: center;
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.services-flow {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  min-height: 120px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.service-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.zigzag-left {
  flex-direction: row;
}
.zigzag-right {
  flex-direction: row-reverse;
}
.service-icon {
  min-width: 70px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(60,60,60,0.07);
  margin: 0 0.5rem;
  animation: iconFloat 2.5s infinite alternate;
}
@keyframes iconFloat {
  0% { transform: translateY(0);}
  100% { transform: translateY(-10px);}
}
.service-content h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
}
.service-content p {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.6;
}

/* Case Studies Section */
.case-studies {
  background: var(--white);
  padding: 4rem 0 3rem 0;
  position: relative;
  z-index: 1;
}
.case-studies h2 {
  text-align: center;
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.case-studies-scroll {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  padding: 1rem 2rem 1rem 2rem;
  scroll-snap-type: x mandatory;
  justify-content: center; /* Center cards horizontally */
}
.case-study {
  min-width: 320px;
  max-width: 340px;
  background: var(--light-beige);
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(60,60,60,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  scroll-snap-align: start;
  transition: transform 0.3s;
}
.case-study img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 1.2rem 1.2rem 0 0;
}
.case-info {
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.case-info h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
}
.case-info .challenge,
.case-info .solution {
  color: var(--text-dark);
  font-size: 0.98rem;
  margin: 0;
}
.case-info .outcome {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}
.case-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Tech Stack Section */
.tech-stack {
  background: var(--warm-grey);
  padding: 4rem 0 3rem 0;
  position: relative;
  z-index: 1;
}
.tech-stack h2 {
  text-align: center;
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.tech-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.tech-category {
  flex: 1 1 220px;
  min-width: 220px;
}
.tech-category h3 {
  text-align: center;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.tech-grid {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.tech-hex {
  width: 70px;
  height: 70px;
  background: var(--white);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(60,60,60,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  margin-bottom: 0.5rem;
  position: relative;
}
.tech-hex img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.3s, transform 0.3s;
}
.tech-hex:hover {
  box-shadow: 0 4px 24px 0 var(--primary);
  transform: rotate(-6deg) scale(1.08);
}
.tech-hex:hover img {
  filter: drop-shadow(0 0 8px var(--primary)) brightness(1.1);
  transform: scale(1.1) rotate(6deg);
}

/* Why Choose Us Section */
.why-choose {
  background: var(--light-beige);
  padding: 4rem 0 3rem 0;
  position: relative;
  z-index: 1;
}
.why-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 0 2rem;
}
.why-left {
  flex: 1 1 0;
}
.why-left h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}
.why-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-points li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-dark);
  background: var(--white);
  border-radius: 1.2rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(60,60,60,0.07);
  animation: fadeInUp 0.8s;
}
.why-icon {
  font-size: 1.7rem;
  color: var(--primary);
  transition: transform 0.4s;
}
.why-points li:hover .why-icon {
  transform: scale(1.2) rotate(-8deg);
}

.why-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
}
.stat-block {
  width: 100%;
  margin-bottom: 1.2rem;
}
.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.stat-bar {
  width: 100%;
  height: 14px;
  background: var(--muted-jade);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.2rem;
}
.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0;
  border-radius: 8px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.stat-value {
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 700;
}

/* Process Timeline Section */
.process-timeline {
  background: var(--white);
  padding: 4rem 0 3rem 0;
  position: relative;
  z-index: 1;
}
.process-timeline h2 {
  text-align: center;
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.timeline-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  flex: 1 1 160px;
  position: relative;
  text-align: center;
}
.step-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px 0 rgba(60,60,60,0.08);
  position: relative;
  z-index: 1;
}
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 100%;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 0;
}
@media (max-width: 900px) {
  .timeline-steps {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    max-width: none;
    text-align: left;
    margin-bottom: 0.5rem;
  }
  .step-icon {
    margin-bottom: 0;
    margin-right: 1.2rem;
  }
  .timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
  }
}

/* Testimonials Section */
.testimonials {
  background: var(--light-beige);
  padding: 4rem 0 3rem 0;
  position: relative;
  z-index: 1;
}
.testimonials h2 {
  text-align: center;
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.testimonials-carousel {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  justify-content: center; /* Ensure children are centered */
  min-height: 320px; /* Ensures enough height for vertical centering */
}
.testimonial-bubble {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(60,60,60,0.10);
  padding: 2rem 2rem 1.5rem 2rem;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  display: none;
  flex-direction: column;
  gap: 1.2rem;
}
.testimonial-bubble.active {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}
.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px 0 rgba(60,60,60,0.10);
}
.testimonial-name {
  font-weight: 600;
  color: var(--secondary);
}
.testimonial-role {
  font-size: 0.95rem;
  color: var(--text-light);
}
.testimonial-rating {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}
.testimonial-prev,
.testimonial-next {
  background: var(--muted-jade);
  color: var(--secondary);
  border: none;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.2rem;
  cursor: pointer;
  margin: 0 0.5rem;
  transition: background var(--transition);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }
.testimonial-prev:hover, .testimonial-next:hover {
  background: var(--primary);
  color: var(--white);
}

/* Contact Section */
.contact {
  position: relative;
  background: var(--white);
  padding: 4rem 0 3rem 0;
  overflow: hidden;
  z-index: 1;
}
.contact-bg-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.contact-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.13;
  animation: contactFloat 14s ease-in-out infinite alternate;
}
.contact-shape.shape1 {
  width: 320px; height: 320px;
  background: linear-gradient(135deg, var(--soft-orange), var(--light-beige));
  top: -80px; left: -100px;
  animation-delay: 0s;
}
.contact-shape.shape2 {
  width: 180px; height: 180px;
  background: linear-gradient(120deg, var(--muted-jade), var(--white));
  bottom: 30px; right: -60px;
  animation-delay: 2s;
}
.contact-shape.shape3 {
  width: 120px; height: 120px;
  background: linear-gradient(120deg, var(--dusty-pink), var(--white));
  top: 60%; left: 70%;
  animation-delay: 4s;
}
@keyframes contactFloat {
  0% { transform: translateY(0) scale(1);}
  100% { transform: translateY(-24px) scale(1.08);}
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 0 2rem;
}
.contact-left, .contact-right {
  flex: 1 1 0;
  min-width: 0;
}
.contact-left h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form label {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.7rem;
  border: 1.5px solid var(--muted-jade);
  background: var(--light-beige);
  color: var(--text-dark);
  outline: none;
  transition: border 0.2s;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}
.contact-form button {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.contact-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-info {
  background: var(--light-beige);
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(60,60,60,0.07);
  padding: 2rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 240px;
  max-width: 340px;
  margin-top: 1.2rem;
}
.contact-info h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  color: var(--text-dark);
  word-break: break-all;
}
.info-icon {
  font-size: 1.3rem;
  color: var(--secondary);
}
.info-item a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.info-item a:hover {
  color: var(--primary);
}
.info-map {
  margin-top: 1rem;
  border-radius: 0.7rem;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(60,60,60,0.07);
}

/* Footer */
.footer {
  background: #f5f4f2;
  color: #2d2d2d;
  position: relative;
  padding-top: 0;
  margin-top: 0;
  font-size: 1rem;
  z-index: 1;
}
.footer-wave {
  width: 100%;
  height: 80px;
  overflow: hidden;
  position: relative;
  margin-bottom: -2px;
  z-index: 2;
  pointer-events: none;
}
.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-wave-path {
  stroke: #e9b7b7;
  stroke-width: 2;
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: waveDraw 2.5s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes waveDraw {
  to {
    stroke-dashoffset: 0;
  }
}
.footer-container {
  display: flex;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem 1.5rem 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1 1 180px;
  min-width: 160px;
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: var(--secondary);
  margin-bottom: 0.7rem;
}
.footer-logo span {
  color: var(--primary);
}
.footer-col h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--primary);
}
.footer-socials {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.5rem;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--light-beige);
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(60,60,60,0.04);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}
.footer .company p {
  font-size: 0.98rem;
  color: var(--text-light);
  margin-top: 0.7rem;
  line-height: 1.6;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-container {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-col {
    min-width: 140px;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0.7rem 0.7rem 0.7rem;
  }
  .footer-col {
    min-width: 0;
    margin-bottom: 1rem;
  }
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem 1.2rem 1.2rem 1.2rem;
  }
  .hero-illustration, .hero-content {
    width: 100%;
    min-width: 0;
  }
  .about-container, .services-flow {
    flex-direction: column;
    gap: 2.5rem;
    padding: 0 1rem;
  }
  .about-right, .about-left {
    width: 100%;
    min-width: 0;
  }
  .about-collage {
    grid-template-columns: 100px 100px;
    grid-template-rows: 100px 100px;
    gap: 0.7rem;
  }
  .collage-img, .img2 { width: 100px; height: 100px; }
  .img2 { height: 200px; }
  .case-studies-scroll {
    padding: 1rem 0.5rem;
    gap: 1.2rem;
  }
  .why-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  .why-left, .why-right {
    width: 100%;
    min-width: 0;
  }
  .tech-categories {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
}

@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: var(--navbar-height);
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 1.5rem;
    width: 220px;
    height: 100vh;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    box-shadow: -2px 0 16px 0 rgba(60,60,60,0.08);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 19;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .menu-toggle {
    display: flex;
  }
  .nav-container {
    padding: 0 1rem;
  }
  .about, .services {
    padding: 2.5rem 0 1.5rem 0;
  }
  .about-container, .services-flow {
    padding: 0 0.5rem;
  }
  .service-item {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .service-icon {
    margin: 0 0 0.5rem 0;
  }
  .case-study {
    min-width: 260px;
    max-width: 270px;
  }
  .why-container {
    padding: 0 0.5rem;
  }
}

@media (max-width: 500px) {
  .headline {
    font-size: 2rem;
  }
  .hero {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 0.7rem;
  }
  .hero-illustration img {
    max-width: 95vw;
  }
  .about-collage {
    grid-template-columns: 70px 70px;
    grid-template-rows: 70px 70px;
    gap: 0.4rem;
  }
  .collage-img, .img2 { width: 70px; height: 70px; }
  .img2 { height: 120px; }
  .tech-hex {
    width: 48px;
    height: 48px;
  }
  .tech-hex img {
    width: 26px;
    height: 26px;
  }
}
