/* Base Styles and Variables */
:root {
  --bg-main: #18181b;
  --bg-card: #232329;
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --accent: #a259ff;
  --accent-hover: #8a3dee;
  --border: #2a2a2e;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Provides space for fixed header */
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%2318181B"/><path d="M0 20 L100 20" stroke="%23232329" stroke-width="0.5"/><path d="M0 40 L100 40" stroke="%23232329" stroke-width="0.5"/><path d="M0 60 L100 60" stroke="%23232329" stroke-width="0.5"/><path d="M0 80 L100 80" stroke="%23232329" stroke-width="0.5"/><path d="M20 0 L20 100" stroke="%23232329" stroke-width="0.5"/><path d="M40 0 L40 100" stroke="%23232329" stroke-width="0.5"/><path d="M60 0 L60 100" stroke="%23232329" stroke-width="0.5"/><path d="M80 0 L80 100" stroke="%23232329" stroke-width="0.5"/></svg>');
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) 0;
}

section {
  padding: var(--space-xl) 0;
}

section[id] {
  padding-top: calc(
    var(--space-xl) + 20px
  ); /* Extra top padding for anchored sections */
  margin-top: calc(-20px); /* Offset to maintain visual spacing */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600; /* Slightly lighter weight for Outfit */
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em; /* Slight letter spacing adjustment for Outfit */
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

p {
  margin-bottom: var(--space-md);
}

/* Utility Classes */
.text-white {
  color: var(--text-primary);
}

.text-accent {
  color: var(--accent);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 300; /* Lighter weight for secondary text with Outfit */
  letter-spacing: 0.01em;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500; /* Adjusted for Outfit */
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  letter-spacing: 0.02em; /* Slight letter spacing for buttons */
}

.btn-primary {
  background-color: var(--accent);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(24, 24, 27, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: var(--space-sm) 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xs) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    var(--text-primary) 0%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em; /* Custom letter spacing for logo with Outfit */
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  font-weight: 400; /* Lighter weight for Outfit */
  position: relative;
  letter-spacing: 0.02em;
}

.nav-desktop a:hover {
  color: var(--accent);
}

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

.nav-desktop a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--bg-card);
  z-index: 999;
  transition: right 0.3s ease;
  padding: 6rem var(--space-lg) var(--space-lg);
  box-shadow: var(--shadow);
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-mobile a {
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: var(--space-xs) 0;
}

.nav-mobile a:hover {
  color: var(--accent);
}

/* Hero Section */
.hero {
  padding-top: 5rem;
}

.hero-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  padding-top: var(--space-lg);
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards 0.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  order: 2;
  padding: var(--space-md) var(--space-lg);
  position: relative;
}

.hero-content h2 {
  font-size: 2rem;
  text-align: left;
  margin-bottom: var(--space-sm);
}

.hero-break {
  display: none;
}

@media (min-width: 576px) {
  .hero-break {
    display: inline;
  }
}

.hero-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  font-weight: 300; /* Lighter weight for Outfit */
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-image {
  order: 1;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  height: 250px;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transition: transform 0.5s ease;
  display: block; /* Ensure proper display of AVIF format */
}

@media (min-width: 768px) {
  .hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 780px;
    margin-bottom: 0;
    order: 2;
    border-radius: 0;
    border-top-right-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    overflow: hidden;
  }

  .hero-img {
    height: 100%;
    width: 100%;
    border-radius: 0;
    border-top-right-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    object-position: right center;
    object-fit: cover;
  }

  /* Add an overlay to ensure text readability */
  .hero-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-card), transparent);
    z-index: 1;
  }
}

.hero-img:hover {
  transform: scale(1.05);
}

/* Partners Section */
.partners {
  padding: var(--space-lg) 0;
}

.partners h3 {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.partner-logo {
  opacity: 0.6;
  transition: var(--transition);
}

.partner-logo:hover {
  opacity: 1;
}

/* Services Section */
.services {
  background-color: var(--bg-main);
  margin: var(--space-xl) auto;
  padding: var(--space-xl) 0;
}

/* Modern Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.service-card-modern {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.service-card-modern:hover {
  transform: translateY(-5px);
}

.service-card-modern:hover .arrow-link {
  transform: translateX(5px);
}

.service-content {
  z-index: 2;
  position: relative;
}

.service-card-modern h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.service-card-modern h4 {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-lg);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  z-index: 2;
}

.service-card-modern p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
}

.arrow-link {
  display: inline-block;
  background-color: var(--accent);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.arrow-icon {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.service-icon-modern {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  opacity: 0.15;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

/* Service Icons */
.service-icon-modern.mobile-app {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23A259FF"><path d="M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"/></svg>');
}

.service-icon-modern.web-dev {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23A259FF"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 14H4v-4h11v4zm0-5H4V9h11v4zm5 5h-4V9h4v9z"/></svg>');
}

.service-icon-modern.desktop-app {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23A259FF"><path d="M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z"/></svg>');
}

.service-icon-modern.saas {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23A259FF"><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z"/></svg>');
}

.service-icon-modern.ai {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23A259FF"><path d="M12 3L1 9l11 6 9-4.91V17h2V9L12 3z M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82z"/></svg>');
}

.service-icon-modern.enterprise {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23A259FF"><path d="M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z"/></svg>');
}

/* Industries section */
.industries-served {
  margin-top: var(--space-xl);
  text-align: center;
}

.industries-served h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.industry-tag {
  background-color: rgba(162, 89, 255, 0.1);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.industry-tag:hover {
  background-color: rgba(162, 89, 255, 0.2);
  transform: translateY(-2px);
}

/* About Section */
.about .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-content {
  order: 2;
}

.about-content h2 {
  text-align: left;
}

.about-content p {
  color: var(--text-secondary);
}

.about-image {
  order: 1;
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background-color: var(--bg-card);
  background-image: linear-gradient(
    135deg,
    var(--bg-card) 25%,
    rgba(162, 89, 255, 0.2) 100%
  );
  border-radius: var(--radius-md);
}

/* Team Section */
.team {
  padding: var(--space-xl) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.team-member {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  opacity: 1; /* Make sure it's visible */
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  background-color: var(--accent);
  background-image: linear-gradient(
    135deg,
    var(--accent) 0%,
    rgba(162, 89, 255, 0.2) 100%
  );
  opacity: 0.8;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.team-role {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.team-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
  background-color: rgba(35, 35, 41, 0.3);
  border-radius: var(--radius-md);
  margin: var(--space-xl) auto;
  padding: var(--space-xl) 0;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: 0 auto;
  max-width: 700px;
  box-shadow: var(--shadow);
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.testimonial-content {
  position: relative;
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  opacity: 0.1;
  color: var(--accent);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
}

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

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.testimonial-author p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.prev,
.next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.prev:hover,
.next:hover {
  background-color: var(--accent);
}

.prev::before,
.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--text-primary);
  border-bottom: 2px solid var(--text-primary);
}

.prev::before {
  transform: translate(-30%, -50%) rotate(45deg);
}

.next::before {
  transform: translate(-70%, -50%) rotate(225deg);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--accent);
}

/* Contact Section */
.contact {
  padding-bottom: var(--space-xl);
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-form {
  background-color: var(--bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(162, 89, 255, 0.2);
}

.contact-form .btn {
  margin-top: var(--space-sm);
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.info-item {
  padding: var(--space-md);
  background-color: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.info-item h4 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.info-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Footer Styles */
.footer {
  background-color: var(--bg-card);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo h3 {
  font-size: 1.3rem;
  margin-bottom: 0;
  font-weight: 700;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-divider {
  height: 1px;
  background-color: var(--border);
  margin-bottom: var(--space-md);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.legal-links {
  display: flex;
  gap: var(--space-md);
}

.legal-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

/* Animation Class */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-card {
    min-height: 400px;
    padding: var(--space-xl);
    padding-right: 0;
  }

  .hero-content {
    order: 1;
    width: 50%;
    padding: var(--space-lg);
    z-index: 2; /* Ensure content is above image */
  }

  .hero-content h2 {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em; /* Tighter letter spacing for headings with Outfit */
    line-height: 1.2;
  }

  .hero-content .text-accent {
    display: inline-block; /* Special handling for hero section */
  }

  .contact-wrapper {
    flex-direction: row;
  }

  .contact-form {
    flex: 2;
  }

  .contact-info {
    flex: 1;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .about .container {
    flex-direction: row;
    align-items: center;
  }

  .about-content {
    order: 1;
    flex: 1;
  }

  .about-image {
    order: 2;
    flex: 1;
  }
}

@media (min-width: 992px) {
  .nav-desktop {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

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

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

  .industry-tag {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}
