html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
  min-width: 0;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
}

section {
  width: 100%;
  box-sizing: border-box;
}

h1, h2, h3 {
  font-family: 'Inter', Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 0.7em;
  font-weight: 700;
  color: #343a40;
  letter-spacing: -1px;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
  color: #444;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #888;
}

/* Consistent section padding */
.hero,
.about-us,
.services,
.projects,
.team,
.technologies,
.contact {
  padding-top: 5vw;
  padding-bottom: 5vw;
}

@media (max-width: 900px) {
  .hero,
  .about-us,
  .services,
  .projects,
  .team,
  .technologies,
  .contact {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }
}

@media (max-width: 600px) {
  .hero,
  .about-us,
  .services,
  .projects,
  .team,
  .technologies,
  .contact {
    padding-top: 12vw;
    padding-bottom: 12vw;
  }
}

/* ...existing code for navbar, hero, about-us, services, projects, team, technologies, contact, footer... */

/* Fix layout glitches for mobile */
@media (max-width: 900px) {
  .hero,
  .about-us,
  .services,
  .projects,
  .team,
  .technologies,
  .contact {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .navbar-container {
    padding: 2vw;
  }
}

@media (max-width: 600px) {
  .hero,
  .about-us,
  .services,
  .projects,
  .team,
  .technologies,
  .contact {
    padding-left: 1vw;
    padding-right: 1vw;
  }
}

/* ...existing code... */

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 0 5vw;
  position: relative;
  background: #f8fafc;
}

.hero-content {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.company-name {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  animation: fadeInUp 1s cubic-bezier(.77,0,.175,1) 0.1s both;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #444;
  animation: fadeInUp 1s cubic-bezier(.77,0,.175,1) 0.3s both;
}

.cta-btn {
  padding: 0.9em 2em;
  font-size: 1.1rem;
  font-weight: 700;
  /* Deep slate to light gray gradient for button */
  background: linear-gradient(90deg, #343a40 0%, #e9ecef 100%);
  color: #fff;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  /* teal shadow */
  box-shadow: 0 4px 24px rgba(52,58,64,0.10);
  transition: background 0.2s, transform 0.2s;
  animation: fadeInUp 1s cubic-bezier(.77,0,.175,1) 0.5s both;
}

.cta-btn:hover {
  /* Soft gold-beige reverse gradient */
  background: linear-gradient(90deg, #23272b 0%, #e9ecef 100%);
  transform: translateY(-2px) scale(1.04);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}

.hero-image img {
  width: 420px;
  max-width: 90vw;
  border-radius: 32px;
  /* Deep slate shadow */
  box-shadow: 0 8px 32px rgba(52,58,64,0.12);
  object-fit: cover;
  animation: fadeIn 1.2s cubic-bezier(.77,0,.175,1) 0.2s both;
}

.scroll-arrow {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  animation: fadeIn 1.2s cubic-bezier(.77,0,.175,1) 0.7s both;
}

.scroll-arrow:hover {
  opacity: 1;
}

.about-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6vw 5vw 6vw 5vw;
  /* Light neutral gradient */
  background: linear-gradient(90deg, #f8fafc 70%, #e9ecef 100%);
  min-height: 70vh;
  gap: 4vw;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  animation: fadeInLeft 1.2s cubic-bezier(.77,0,.175,1) 0.2s both;
}

.about-image img {
  width: 370px;
  max-width: 90vw;
  border-radius: 40px 8px 40px 8px;
  /* Deep slate shadow */
  box-shadow: 0 8px 32px rgba(52,58,64,0.10);
  object-fit: cover;
}

.about-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInRight 1.2s cubic-bezier(.77,0,.175,1) 0.4s both;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #222;
  letter-spacing: -1px;
}

.about-intro {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-details {
  display: flex;
  gap: 3vw;
  flex-wrap: wrap;
}

.about-vision, .about-mission {
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 1.5rem;
}

.about-vision h3, .about-mission h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  /* Deep slate accent for headings */
  color: #343a40;
}

.about-vision p, .about-mission p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.services {
  position: relative;
  background: #f8fafc;
  padding: 0 0 7vw 0;
  overflow-x: hidden;
}

.services-diagonal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.services-content {
  position: relative;
  z-index: 1;
  padding: 5vw 5vw 0 5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #343a40;
  letter-spacing: -1px;
  text-align: left;
  animation: fadeInUp 1s cubic-bezier(.77,0,.175,1) 0.1s both;
}

.services-list {
  display: flex;
  gap: 3vw;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 2vw;
  scroll-snap-type: x mandatory;
}

.service {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  min-width: 260px;
  max-width: 320px;
  flex: 0 0 320px;
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  scroll-snap-align: start;
  position: relative;
  animation: fadeInUp 1s cubic-bezier(.77,0,.175,1) both;
}

.creative-service-1 { margin-top: 0vw; }
.creative-service-2 { margin-top: 3vw; }
.creative-service-3 { margin-top: 6vw; }
.creative-service-4 { margin-top: 9vw; }

.service-icon-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}

.service-icon {
  position: relative;
  z-index: 1;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.service h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.7rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}

.service p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.projects {
  width: 100%;
  background: #f8fafc;
  padding: 0 0 7vw 0;
}

.projects-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #343a40;
  margin: 0 0 3vw 5vw;
  letter-spacing: -1px;
  animation: fadeInUp 1s cubic-bezier(.77,0,.175,1) 0.1s both;
}

.project-block {
  position: relative;
  width: 100vw;
  min-height: 340px;
  max-height: 440px;
  display: flex;
  align-items: center;
  margin-bottom: 2vw;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.project-block-2 {
  flex-direction: row-reverse;
}

.project-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) grayscale(10%);
  transition: filter 0.3s;
  z-index: 1;
}

.project-block:hover .project-bg {
  filter: brightness(0.85) grayscale(0%);
}

.project-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3vw 8vw;
  display: flex;
  align-items: center;
  min-height: 340px;
}

.project-info {
  background: rgba(255, 255, 255, 0.815);
  color: #fff;
  border-radius: 24px 8px 24px 8px;
  padding: 2rem 2.5rem;
  max-width: 520px;
  box-shadow: 0 4px 32px rgba(52,58,64,0.10);
  animation: fadeInUp 1s cubic-bezier(.77,0,.175,1) both;
}

.project-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.project-industry {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.project-info p {
  font-size: 1.08rem;
  line-height: 1.6;
  margin-top: 0.7rem;
}

.projects-cta {
  display: flex;
  justify-content: center;
  margin-top: 3vw;
}

.projects-viewmore-btn {
  padding: 1em 2.5em;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #343a40 0%, #e9ecef 100%);
  color: #fff;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(52,58,64,0.10);
  transition: background 0.2s, transform 0.2s;
}

.projects-viewmore-btn:hover {
  background: linear-gradient(90deg, #23272b 0%, #e9ecef 100%);
  transform: translateY(-2px) scale(1.04);
}

.team {
  width: 100%;
  background: #f8fafc;
  padding: 6vw 0 7vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-quote {
  width: 100%;
  text-align: center;
  margin-bottom: 2vw;
}

.team-quote blockquote {
  font-size: 1.5rem;
  font-weight: 600;
  color: #343a40;
  font-style: italic;
  letter-spacing: -0.5px;
  margin: 0;
}

.team-members {
  display: flex;
  gap: 4vw;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 2vw;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 180px;
  max-width: 220px;
  margin-bottom: 2vw;
}

.team-photo {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(52,58,64,0.10);
  transition: box-shadow 0.2s;
  cursor: pointer;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.team-photo:hover,
.team-photo:focus {
  box-shadow: 0 8px 32px rgba(52,58,64,0.18);
}

.team-bio {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: #fff;
  color: #343a40;
  font-size: 0.98rem;
  font-weight: 400;
  padding: 1rem 1.2rem;
  border-radius: 16px 4px 16px 4px;
  box-shadow: 0 4px 24px rgba(52,58,64,0.10);
  width: 220px;
  max-width: 90vw;
  margin-top: 0.7rem;
  z-index: 10;
  animation: fadeInUp 0.4s cubic-bezier(.77,0,.175,1) both;
  pointer-events: none;
}

.team-photo:hover .team-bio,
.team-photo:focus .team-bio {
  display: block;
}

.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.team-name {
  font-size: 1.08rem;
  font-weight: 700;
  color: #343a40;
}

.team-title {
  font-size: 0.98rem;
  color: #888;
  font-weight: 500;
}

.team-linkedin {
  margin-top: 0.5rem;
  display: inline-block;
  transition: transform 0.2s;
}

.team-linkedin:hover {
  transform: scale(1.15);
}

.technologies {
  position: relative;
  background: linear-gradient(90deg, #f8fafc 70%, #f3f4f8 100%);
  padding: 0 0 6vw 0;
  overflow-x: hidden;
  width: 100%;
}

.tech-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.tech-title {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #343a40;
  margin: 0 0 2vw 5vw;
  letter-spacing: -1px;
  text-align: left;
}

.tech-list {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3vw;
  overflow-x: auto;
  padding: 2vw 5vw 2vw 5vw;
  scroll-snap-type: x mandatory;
  align-items: center;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  max-width: 120px;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.77,0,.175,1), transform 0.7s cubic-bezier(.77,0,.175,1);
}

.tech-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.tech-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 0.7rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(52,58,64,0.08);
  padding: 0.5rem;
  object-fit: contain;
}

.tech-name {
  font-size: 1rem;
  color: #343a40;
  font-weight: 600;
  margin-top: 0.2rem;
  text-align: center;
}

.contact {
  position: relative;
  background: linear-gradient(90deg, #f8fafc 70%, #f3f4f8 100%);
  padding: 0 0 7vw 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 5vw;
  width: 100%;
  max-width: 1100px;
  padding: 6vw 5vw 0 5vw;
  align-items: flex-start;
  justify-content: center;
}

.contact-info {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 1.2rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 1rem;
}

.contact-info a {
  color: #343a40;
  text-decoration: underline;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: #888;
}

.contact-form {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  max-width: 420px;
  background: transparent;
}

.form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1em 1.2em;
  font-size: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  background: #fff;
  color: #343a40;
  margin-bottom: 0.2rem;
  font-family: inherit;
  transition: border-color 0.2s;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #343a40;
  outline: none;
}

.contact-btn {
  padding: 0.9em 2em;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #343a40 0%, #e9ecef 100%);
  color: #fff;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(52,58,64,0.10);
  transition: background 0.2s, transform 0.2s;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #23272b 0%, #e9ecef 100%);
  transform: translateY(-2px) scale(1.04);
}

.form-msg {
  font-size: 1rem;
  color: #c0392b;
  margin-top: 0.5rem;
  min-height: 1.2em;
  display: block;
}

.footer {
  background: #23272b;
  color: #fff;
  padding: 4vw 0 2vw 0;
  width: 100%;
  margin-top: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3vw;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 2;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.footer-desc {
  font-size: 1.08rem;
  color: #e9ecef;
  margin-bottom: 1.2rem;
  max-width: 320px;
}

.footer-social {
  flex: 1;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  min-width: 120px;
  margin-bottom: 1.2rem;
}

.footer-social a {
  display: inline-block;
  transition: transform 0.2s;
}

.footer-social a:hover {
  transform: scale(1.15);
}

.footer-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-end;
  min-width: 120px;
}

.footer-link {
  color: #e9ecef;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #f6c453;
}

.footer-bottom {
  text-align: center;
  color: #bdbdbd;
  font-size: 0.98rem;
  margin-top: 2vw;
  padding: 0 5vw;
}

.navbar {
  width: 100%;
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 2px 16px rgba(52,58,64,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.2s;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7vw 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #343a40;
  text-decoration: none;
  letter-spacing: -1px;
}

.navbar-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(52,58,64,0.08);
}

.navbar-links {
  display: flex;
  gap: 2vw;
  align-items: center;
  transition: max-height 0.3s;
}

.navbar-links a {
  font-size: 1.08rem;
  color: #343a40;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5em 0.8em;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  background: #e9ecef;
  color: #23272b;
  transform: translateY(-2px) scale(1.07);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.navbar-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #343a40;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .navbar-container {
    padding: 1vw 2vw;
  }
  .navbar-links {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100vw;
    background: rgba(248,250,252,0.97);
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(52,58,64,0.10);
    transition: max-height 0.3s;
  }
  .navbar-links.open {
    max-height: 400px;
    padding: 1vw 0 2vw 0;
  }
  .navbar-links a {
    width: 100%;
    padding: 1em 2vw;
    border-radius: 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #e9ecef;
  }
  .navbar-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .navbar-logo span {
    font-size: 1rem;
  }
  .navbar-logo img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    padding: 0 2vw;
    text-align: center;
  }
  .hero-content {
    align-items: center;
    max-width: 100%;
    margin-top: 2rem;
  }
  .hero-image {
    justify-content: center;
    margin-bottom: 2rem;
  }
  .hero-image img {
    width: 90vw;
    max-width: 400px;
  }
  .about-us {
    flex-direction: column;
    padding: 8vw 2vw;
    gap: 2vw;
    min-height: unset;
  }
  .about-image {
    justify-content: center;
    margin-bottom: 2rem;
  }
  .about-image img {
    width: 90vw;
    max-width: 340px;
  }
  .about-content {
    align-items: center;
    text-align: center;
  }
  .about-details {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .services-content {
    padding: 7vw 2vw 0 2vw;
    align-items: center;
  }
  .services-title {
    text-align: center;
    width: 100%;
  }
  .services-list {
    gap: 2vw;
    padding-bottom: 4vw;
  }
  .service {
    min-width: 240px;
    max-width: 80vw;
    padding: 1.5rem 1rem 1.5rem 1rem;
    align-items: center;
    text-align: center;
  }
  .projects-title {
    margin: 0 0 3vw 2vw;
    text-align: left;
  }
  .project-overlay {
    padding: 3vw 2vw;
    min-height: 220px;
  }
  .project-info {
    padding: 1.2rem 1rem;
    max-width: 95vw;
  }
  .project-block {
    min-height: 220px;
    max-height: 320px;
  }
  .creative-service-2 { margin-top: 4vw; }
  .creative-service-3 { margin-top: 8vw; }
  .creative-service-4 { margin-top: 12vw; }
  .team-members {
    gap: 2vw;
  }
  .team-member {
    min-width: 140px;
    max-width: 180px;
  }
  .team-photo {
    width: 90px;
    height: 90px;
  }
  .team-bio {
    font-size: 0.92rem;
    width: 170px;
  }
  .tech-title {
    margin: 0 0 2vw 2vw;
    text-align: left;
  }
  .tech-list {
    gap: 2vw;
    padding: 2vw 2vw 2vw 2vw;
  }
  .contact-content {
    flex-direction: column;
    gap: 2vw;
    padding: 8vw 2vw 0 2vw;
    align-items: stretch;
  }
  .contact-info {
    max-width: 100%;
    margin-bottom: 2vw;
  }
  .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .services-list {
    gap: 4vw;
  }
  .service {
    min-width: 220px;
    max-width: 90vw;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .projects-title {
    font-size: 1.5rem;
    margin: 0 0 2vw 2vw;
  }
  .project-info h3 {
    font-size: 1.1rem;
  }
  .project-info {
    padding: 1rem 0.5rem;
  }
  .project-block {
    min-height: 160px;
    max-height: 220px;
  }
  .project-overlay {
    min-height: 160px;
    padding: 2vw 1vw;
  }
  .team-members {
    flex-direction: column;
    align-items: center;
    gap: 3vw;
  }
  .team-member {
    min-width: 120px;
    max-width: 95vw;
  }
  .team-photo {
    width: 70px;
    height: 70px;
  }
  .team-bio {
    font-size: 0.88rem;
    width: 140px;
  }
  .contact-content {
    padding: 10vw 2vw 0 2vw;
  }
  .contact-info h2 {
    font-size: 1.3rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.98rem;
    padding: 0.7em 1em;
  }
}

.bg-animated {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(120deg, #f8fafc 60%, #f3f4f8 100%);
}

.bg-animated::before,
.bg-animated::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.5;
  animation: bgMove 16s linear infinite alternate;
}

.bg-animated::before {
  width: 480px;
  height: 480px;
  left: -120px;
  top: -80px;
  background: radial-gradient(circle at 40% 40%, #e0e7ff 0%, #f8fafc 80%);
  animation-delay: 0s;
}

.bg-animated::after {
  width: 340px;
  height: 340px;
  right: -100px;
  bottom: -60px;
  background: radial-gradient(circle at 60% 60%, #ffe9c6 0%, #f3f4f8 80%);
  animation-delay: 8s;
}

.bg-animated svg {
  position: absolute;
  opacity: 0.18;
  pointer-events: none;
  animation: blobMove 22s ease-in-out infinite alternate;
}

.bg-animated .blob1 {
  left: 10vw;
  top: 12vh;
  width: 320px;
  height: 320px;
  animation-delay: 0s;
}
.bg-animated .blob2 {
  right: 8vw;
  top: 38vh;
  width: 220px;
  height: 220px;
  animation-delay: 6s;
}
.bg-animated .blob3 {
  left: 18vw;
  bottom: 10vh;
  width: 180px;
  height: 180px;
  animation-delay: 12s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bgMove {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(40px) scale(1.08); }
}

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