:root {
  --color-bg: #ffffff;
  --color-accent: #0A84C6;
  --color-text: #1a1a1a;
  --color-text-muted: #555555;
  --font-primary: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glass-bg: rgba(0, 0, 0, 0.03);
  --glass-border: rgba(0, 0, 0, 0.1);
  --glass-blur: 10px;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Added shadow for light mode visibility */
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  background-color: var(--color-bg);
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  text-transform: uppercase;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Utilities */
.container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.text-gradient {
  background: linear-gradient(90deg, #333, var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#preloader .lottie-player {
  width: 200px;
  height: 200px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: background 0.3s ease;
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
}

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

.nav-links a {
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 0.5rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #4facfe);
  transition: width 0.3s ease;
}

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

.nav-links a.active {
  color: var(--color-accent);
}

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

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  /* Background Image */
  background-image: url('../images/hero_background.png');
  background-size: cover; /* Maintains aspect ratio, no stretching */
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f8f9fa; /* Fallback light background */
}

/* Very light overlay to blend with white theme */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(240, 248, 255, 0.9));
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #000; /* Dark text for readability */
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--color-text-muted); /* Standard text color */
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--color-accent);
}

.btn:hover {
  background: transparent;
  color: var(--color-accent);
}

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

.hero-visual dotlottie-player,
.hero-visual lottie-player {
  width: 100%;
  max-width: 600px;
}

/* Services */
.services {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #000;
}

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

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Service Card & Project Card Shared Styles */
.service-card, .project-card, .stat-card {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.27), border-color 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
  cursor: pointer; /* Interaction cue */
  padding: 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.5rem;
}

.service-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-bottom: 2px solid var(--color-accent);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 1.2rem 0.6rem 1.2rem;
}


/* Border Progress Animation Pseudo-element */
.service-card::after, .project-card::after, .stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px; /* Border thickness */
  /* Gradient Border */
  background: linear-gradient(135deg, var(--color-accent), #4facfe); 
  /* Mask to show only the border area */
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  mask-composite: exclude;
  
  /* Start hidden at Top Left */
  clip-path: circle(0% at 0 0);
  pointer-events: none;
  transition: clip-path 0.2s ease-in-out;
  z-index: 2;
}

.service-card:hover, .project-card:hover, .stat-card:hover {
  /* Move Up Effect - More pronounced */
  transform: translateY(-15px) !important;
  /* Enhanced Shadow on Lift - More visible */
  box-shadow: 0 20px 40px rgba(10, 132, 198, 0.3) !important;
  border-color: transparent; /* Turn off default border to let gradient show */
}

.service-card:hover::after, .project-card:hover::after, .stat-card:hover::after {
  /* Fill Border from Top Left Radial */
  clip-path: circle(150% at 0 0);
}

.service-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-accent), #4facfe);
  border-radius: 50%;
  padding: 0.4rem;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-icon lottie-player {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #000;
}

.service-card > p {
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0 1.2rem 1rem 1.2rem;
  font-size: 0.9rem;
}

.service-features {
  list-style: none;
  padding: 0 1.2rem 1.2rem 1.2rem;
  margin: 0;
}

.service-features li {
  padding: 0.4rem 0;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.service-features li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1rem;
}

/* Feature Section Styles */
.feature-section {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  width: 95%;
  padding: 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Left border for odd cards (1st, 3rd, 5th) */
.feature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent), #4facfe);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Right border for even cards (2nd, 4th, 6th) */
.feature-section.alt::before {
  left: auto;
  right: 0;
}

.feature-section:hover {
  box-shadow: 0 12px 40px rgba(10, 132, 198, 0.25), 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.feature-section:hover::before {
  opacity: 1;
}

.feature-section.alt {
  flex-direction: row-reverse;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(10, 132, 198, 0.05), rgba(79, 172, 254, 0.05));
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-section:hover .feature-visual {
  transform: scale(1.05);
}

.feature-visual img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(10, 132, 198, 0.2));
  transition: filter 0.3s ease;
}

.feature-section:hover .feature-visual img {
  filter: drop-shadow(0 15px 35px rgba(10, 132, 198, 0.3));
}

.feature-content {
  flex: 1.2;
}

.feature-title, .feature-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

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

.feature-list li {
  padding: 0.75rem 0;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #333;
  font-size: 1rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  padding-left: 1rem;
}

.feature-list li:hover {
  border-left-color: var(--color-accent);
  padding-left: 1.5rem;
  color: var(--color-accent);
}

.feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--color-accent), #4facfe);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(10, 132, 198, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .feature-section, .feature-section.alt {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    width: 95%;
  }
  
  .feature-title, .feature-content h2 {
    font-size: 1.8rem;
  }
}

/* Contact Page Animations */
.contact-info-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(10, 132, 198, 0.2);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 132, 198, 0.1);
}

.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 132, 198, 0.3);
}

.contact-form .btn:active {
  transform: translateY(0);
}

/* Footer */
footer {
  background: var(--color-bg);
  color: var(--color-text);
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--color-accent);
}

footer .container {
  max-width: 95%;
}

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

footer p, footer a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

footer a {
  transition: color 0.3s ease;
  text-decoration: none;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(10, 132, 198, 0.3);
}

/* Contact Form Global Styles */
.form-control {
    width: 100%;
    padding: 1rem;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #fff;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000;
}

/* Project Card Specifics */
.project-image {
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}
.project-content {
    padding: 1.5rem;
}
.project-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 6rem;
    height: auto;
  }

  .hero-content {
    padding-right: 0;
    margin-top: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none; 
  }

  .feature-section, .feature-section.alt {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-list li {
    justify-content: center;
  }
}

/* Animations & New Sections */

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease-out;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Tech Stack Marquee */
.tech-marquee {
  background: var(--color-bg);
  padding: 2rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-block;
  animation: scroll 20s linear infinite;
}

.tech-item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-muted);
  font-family: var(--font-primary);
}

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

/* Stats Section */
.stats-section {
  padding: 6rem 0;
  background: #f9f9f9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 2rem;
  /* Inherits shared styles from .service-card block above for animation consistency */
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-accent);
  font-family: var(--font-primary);
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* Process Section - Redesigned */
.process-section {
    padding: 6rem 0;
}

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

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

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-card {
    background: #fff;
    padding: 0;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--glass-border);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(10, 132, 198, 0.15);
}

.process-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-bottom: 2px solid var(--color-accent);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.process-icon {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 1.2rem 0.6rem 1.2rem;
}

.step-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-accent), #4facfe);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    font-family: var(--font-primary);
    flex-shrink: 0;
}

.process-card h3 {
    font-size: 1.15rem;
    margin: 0;
    color: #000;
}

.process-card > p {
    color: var(--color-text-muted);
    margin: 0 1.2rem 1rem 1.2rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.process-features {
    list-style: none;
    padding: 0 1.2rem 1.2rem 1.2rem;
    margin: 0;
}

.process-features li {
    padding: 0.4rem 0;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
}

.process-features li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Technologies Section */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.tech-category {
    text-align: center;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tech-tag {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.15s ease;
    cursor: default;
}

.tech-tag:hover {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

/* Team Section - Enhanced Design */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 132, 198, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    justify-items: center;
}

/* Second row with 2 items centered */
.team-card:nth-child(4) {
    grid-column: 1 / 2;
    justify-self: end;
    margin-right: 1.25rem;
}

.team-card:nth-child(5) {
    grid-column: 2 / 3;
    justify-self: start;
    margin-left: 1.25rem;
}

/* CEO card elevated (now in center - 2nd position) */
.team-card.ceo-card {
    transform: translateY(-30px);
}

.team-card.ceo-card:hover {
    transform: translateY(-42px) scale(1.02);
}

.team-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    padding: 2.5rem 2rem 2rem;
    width: 100%;
    max-width: 280px;
    border: 1px solid rgba(10, 132, 198, 0.1);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #4facfe);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(10, 132, 198, 0.25);
    border-color: var(--color-accent);
}

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

.team-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(10, 132, 198, 0.15);
    padding: 0;
    background: linear-gradient(135deg, var(--color-accent), #4facfe);
}

.team-image::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: #fff;
    border-radius: 16px;
    z-index: 1;
}

.team-card:hover .team-image {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(10, 132, 198, 0.3);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    position: relative;
    z-index: 2;
}

.team-info {
    position: relative;
}

.team-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: 700;
    transition: color 0.3s ease;
}

.team-card:hover .team-info h3 {
    color: var(--color-accent);
}

.team-info .role {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--color-accent), #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .team-card:nth-child(4),
    .team-card:nth-child(5) {
        grid-column: span 1;
        justify-self: center;
        margin: 0;
    }
    
    .team-card.ceo-card {
        transform: translateY(0);
    }
    
    .team-card.ceo-card:hover {
        transform: translateY(-12px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 2rem 1.5rem 1.5rem;
        justify-self: center;
    }
    
    .team-card:nth-child(4),
    .team-card:nth-child(5) {
        grid-column: span 1;
        justify-self: center;
        margin: 0;
    }
    
    .team-image {
        width: 120px;
        height: 120px;
    }
}
