.hero {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.875rem 2rem;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.approach-grid {
  display: flex;
  flex-wrap: wrap; /* allows items to wrap to the next row */
  justify-content: center; /* centers all rows including the last row */
  gap: 2rem; /* spacing between items */
  margin-top: 3rem;
}

.approach-grid > * {
  flex: 0 1 350px; /* do not grow, shrink if needed, base width 350px */
}

.panel {
  padding: 4rem 0;
}

.panel > h2 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-weight: 700;
}

.panel > p {
  font-size: 1.125rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.subsection {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #f0f0f0;
}

.subsection:first-of-type {
  margin-top: 3rem;
}

.subsection h3 {
  font-size: 1.5rem;
  color: #900013;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.subsection > p {
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.8;
}

.klist {
  list-style: none;
  padding: 0;
}

.klist li {
  font-size: 1.05rem;
  color: #4a4a4a;
  padding: 0.875rem 0 0.875rem 2.5rem;
  position: relative;
  line-height: 1.6;
}

.klist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #900013;
  border-radius: 50%;
}

ol.klist {
  counter-reset: item;
}

ol.klist li {
  counter-increment: item;
}

ol.klist li::before {
  content: counter(item);
  width: 32px;
  height: 32px;
  background: #900013;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.process-timeline {
  display: flex;
  flex-wrap: wrap; /* allows items to wrap to next row */
  justify-content: center; /* centers all rows including last row */
  gap: 2rem; /* spacing between steps */
  margin-top: 3rem;
  position: relative;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;

  /* flex item size */
  flex: 0 1 350px; /* do not grow, shrink if needed, base width 350px */
}

.process-visual {
  margin: 2rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 16px;
  text-align: center;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.process-step h4 {
  font-size: 1.125rem;
  color: #900013;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: #666;
}

.process-arrow {
  color: #900013;
  font-size: 1.5rem;
  font-weight: bold;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap; /* allows items to move to the next row */
  justify-content: center; /* centers items in each row, including last row */
  gap: 2rem; /* space between items */
  margin-top: 3rem;
}

.industry-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;

  /* flex item width */
  flex: 0 1 350px; /* do not grow, can shrink, base width 350px */
}

/* .industry-card:hover {
  border-color: var(--secondary);
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.1);
} */

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 1rem;
  justify-content: space-evenly;
}

.tech-tag {
  padding: 0.5rem 1rem;
  background: #fef2f2;
  color: #900013;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.tech-tag-image {
  max-width: 60px;
  flex: 1;
}

.impact-grid {
  display: flex;
  flex-wrap: wrap; /* allows items to wrap to next row */
  justify-content: center; /* centers all rows including the last row */
  gap: 2rem; /* spacing between cards */
  margin-top: 3rem;
}

.impact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary);

  /* flex item width */
  flex: 0 1 350px; /* do not grow, shrink if needed, base width 300px */
}

@media (max-width: 968px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .panel {
    padding: 2.5rem 0;
  }

  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 5rem 1.2rem 3rem;
  }

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

  .panel {
    padding: 2rem 0;
  }

  .panel > h2 {
    font-size: 1.5rem;
  }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background: var(--bg-light);
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Section */
.featured-section {
  background: var(--gradient-dark);
  padding: 5rem 0;
  position: relative;
}

.featured-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="4" cy="4" r="4"/><circle cx="36" cy="36" r="4"/></g></svg>')
    repeat;
}

.featured-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.featured-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.featured-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-red);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-red);
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card-text {
  color: var(--text-light);
  line-height: 1.6;
}

/* Challenge Section */
.solutions-grid {
  display: flex;
  flex-wrap: wrap; /* allows items to wrap to next row */
  justify-content: center; /* centers items in each row */
  gap: 2rem; /* spacing between items */
  margin-top: 3rem;
}

.challenge-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

  /* flex item size */
  flex: 0 1 350px; /* do not grow, can shrink, base width 300px */
}

.challenge-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-purple);
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.solution-image {
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.challenge-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.challenge-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.nav-arrow:hover {
  background: var(--deep-red);
  transform: scale(1.1);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap; /* allows items to move to next row */
  justify-content: center; /* centers items in each row */
  gap: 1.5rem; /* spacing between items */
  margin-top: 3rem;
}

.tech-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;

  /* flex item width */
  flex: 0 1 150px; /* do not grow, shrink if needed, base width 150px */
}

/* Clients Section */
.clients-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.client-logo {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-red);
}

/* Services Section */
.services-grid {
  display: flex;
  flex-wrap: wrap; /* allows items to wrap to the next row */
  justify-content: center; /* centers items in each row */
  gap: 2rem; /* space between items */
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;

  /* flex item size */
  flex: 0 1 350px; /* grow=0, shrink=1, basis=350px */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--secondary) !important;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Bottom CTA Section */
.bottom-cta {
  background: var(--gradient-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="7" cy="7" r="7"/><circle cx="53" cy="53" r="7"/></g></svg>')
    repeat;
  animation: float 20s infinite linear;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  text-align: center;
}

.footer-tagline {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary-red);
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.contact-icon {
  color: var(--primary-red);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-red);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--deep-red);
  transform: translateY(-2px);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-left {
    text-align: center;
  }

  .hero-right {
    align-items: center;
  }

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

  /* .solutions-grid,
  .services-grid {
    grid-template-columns: 1fr;
  } */

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .industry-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* Tech Items Hover Effect */
.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--secondary) !important;
}

/* Industry Cards Hover Effect */
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl) !important;
  border-color: var(--secondary) !important;
}

/* Impact Cards Hover Effect */
.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl) !important;
}

/* Process Steps Hover Effect */
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl) !important;
}

:root {
  --primary:#144A7C;
  --secondary:#3BB99F;
  --primary-red: #bc141a;
  --deep-red: #7f1d1d;
  --light-red: #ef4444;
  --red-accent: #b91c1c;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --gradient-hero: linear-gradient(90deg, #dc2626 0%, #900013 100%);
  --gradient-dark: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  --gradient-card: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: width 0.3s ease;
}

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

.partner-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.industry-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  color: white;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="7" cy="7" r="7"/><circle cx="53" cy="53" r="7"/></g></svg>')
    repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-60px);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--primary-red);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button-primary {
  background: var(--primary-red);
  color: white;
}

.cta-button-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

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

.process-icon{
   width: 80px;
                height: 80px;
                background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 1.5rem;
                color: white;
                font-size: 2rem;
}

.process-step h3{
   font-size: 1.2rem;
                font-weight: 700;
                color: var(--primary);
                margin-bottom: 0.5rem;
}

.process-step p{
    font-size: 0.9rem;
                color: var(--secondary);
                font-weight: 600;
                margin-bottom: 1rem;
}

.process-desc{
  color: var(--text-light) !important;
                line-height: 1.6 !important ;
                font-size: 0.95rem !important;
}


.impact-icon{
   font-size: 3rem;
                color: var(--secondary);
                margin-bottom: 1rem;
}

.impact-head{
  font-size: 1.2rem;
                font-weight: 600;
                color: var(--primary);
                margin-bottom: 1rem;
}

.industry-icon{
    font-size: 3rem;
                color: var(--secondary);
                margin-bottom: 1rem;
}

.industry-head{
   font-size: 1.2rem;
                font-weight: 700;
                color: var(--primary);
                margin-bottom: 1rem;
}

.tech-icon{
   font-size: 2.5rem;
                color: var(--secondary);
                margin-bottom: 1rem;
}