:root {
  /* Brand Colors Extracted from Images */
  --color-bg-dark: #050511; /* Deepest Navy/Black */
  --color-bg-purple: #1a0b2e;
  --color-primary: #8a2be2; /* Purple */
  --color-secondary: #ff9100; /* Orange */
  --color-accent-blue: #00d4ff; /* Cyan */
  --color-highlight: #ccff00; /* Lime Green/Yellow - High Vis */
  
  --color-text-main: #ffffff;
  --color-text-muted: #a0a0b0;
  
  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #8a2be2 0%, #ff9100 100%);
  --gradient-dark: linear-gradient(to bottom, #050511, #1a0b2e);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 50px;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  /* background-clip standard */
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.color-muted-text {
  color: var(--color-text-muted) !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: var(--color-highlight);
  color: #000;
  font-weight: 700;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(204, 255, 0, 0.3);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  backdrop-filter: blur(20px);
  background: rgba(5, 5, 17, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 30px;
  height: 30px;
  background: var(--gradient-brand);
  border-radius: 50% 0 50% 50%;
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #2a1b3d;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--color-highlight);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-subtitle {
  color: var(--color-accent-blue);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

.hero-visual {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(138, 43, 226, 0.2), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* 3D decorative circles */
.circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  filter: blur(80px);
  opacity: 0.4;
  animation: float 10s infinite ease-in-out;
}

.c1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.c2 { width: 300px; height: 300px; bottom: 10%; left: -50px; background: var(--color-accent-blue); animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

/* Services */
.services {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.card {
  background: var(--gradient-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-accent-blue);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Showcase/Portfolio */
.showcase {
  padding: var(--spacing-xl) 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md);
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transition: opacity 0.3s ease;
}


/* Footer */
footer {
  padding: var(--spacing-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  text-align: center;
}

/* Responsive */
/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive & Mobile Menu */
@media (max-width: 768px) {
  h1 { 
    font-size: 2.2rem; 
    line-height: 1.2;
    min-height: 120px; /* Space for dynamic text */
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .hero-cta .btn {
    margin-left: 0 !important;
    width: 100%;
    justify-content: center;
  }
  
  .menu-toggle {
    display: block !important;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 20, 0.98);
    backdrop-filter: blur(25px);
    padding: var(--spacing-xl) var(--spacing-md);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    font-size: 1.5rem;
  }
  
  .showcase-grid { grid-template-columns: 1fr; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* CSS for New Sections */

/* Tech Stack Marquee */
.tech-stack-marquee {
    background: var(--color-bg-dark);
    padding: var(--spacing-md) 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-content {
    display: flex;
    gap: var(--spacing-lg);
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    white-space: nowrap;
}

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

/* About Us Section */
.about-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
}

.about-image img {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.3));
    animation: float 6s ease-in-out infinite;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.about-text .subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--color-accent-blue);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image img {
        max-width: 150px;
        margin-bottom: var(--spacing-md);
    }
}

.process-section {
    padding: var(--spacing-xl) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    position: relative;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

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

/* Brand Colors for Steps */
.step-card:nth-child(1) { border-top: 4px solid var(--color-accent-blue); }
.step-card:nth-child(1):hover { box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15); border-color: var(--color-accent-blue); }
.step-card:nth-child(1) .step-number { color: var(--color-accent-blue); opacity: 0.8; text-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }

.step-card:nth-child(2) { border-top: 4px solid var(--color-primary); }
.step-card:nth-child(2):hover { box-shadow: 0 10px 30px rgba(138, 43, 226, 0.15); border-color: var(--color-primary); }
.step-card:nth-child(2) .step-number { color: var(--color-primary); opacity: 0.8; text-shadow: 0 0 20px rgba(138, 43, 226, 0.5); }

.step-card:nth-child(3) { border-top: 4px solid var(--color-secondary); }
.step-card:nth-child(3):hover { box-shadow: 0 10px 30px rgba(255, 145, 0, 0.15); border-color: var(--color-secondary); }
.step-card:nth-child(3) .step-number { color: var(--color-secondary); opacity: 0.8; text-shadow: 0 0 20px rgba(255, 145, 0, 0.5); }

.step-card:nth-child(4) { border-top: 4px solid var(--color-highlight); }
.step-card:nth-child(4):hover { box-shadow: 0 10px 30px rgba(204, 255, 0, 0.15); border-color: var(--color-highlight); }
.step-card:nth-child(4) .step-number { color: var(--color-highlight); opacity: 0.8; text-shadow: 0 0 20px rgba(204, 255, 0, 0.5); }

.step-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    line-height: 1;
    transition: all 0.3s ease;
}

.step-card h3 {
    color: var(--color-heading);
    margin-bottom: var(--spacing-xs);
}

.step-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, transparent, rgba(138, 43, 226, 0.05));
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    font-style: italic;
}

.testimonial-card p {
    color: var(--color-text-main);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.client-info strong {
    display: block;
    color: var(--color-secondary);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: normal;
}

/* Enhancements for Particles */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* Behind hero content but above bg color */
    pointer-events: none;
}
/* Feature Row (Zig-Zag) Layout */
.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.feature-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    padding: var(--spacing-md);
}

.feature-content h3 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    /* background-clip standard */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    transition: transform 0.5s ease;
}

.feature-row:hover .feature-image img {
    transform: scale(1.05) translateY(-10px);
}

/* Responsive adjustments for Feature Rows */
@media (max-width: 900px) {
    .feature-row, .feature-row:nth-child(even) {
        flex-direction: column !important;
        text-align: center;
        gap: var(--spacing-md);
    }

    .feature-image {
        order: -1; /* Image always visible on top of description */
        max-height: 300px;
    }

    .feature-image img {
        max-height: 250px;
        width: auto;
    }

    .feature-content h3 {
        font-size: 1.8rem;
    }
}

/* Floating WhatsApp Button Container */
.whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  pointer-events: none; /* Allows clicking through the gap */
}

.whatsapp-container * {
  pointer-events: auto;
}

.whatsapp-float {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25d366 0%, var(--color-accent-blue) 100%);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
  order: 2; /* Button on the right */
}

.whatsapp-label {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0.9;
  order: 1; /* Label on the left */
  animation: float-horizontal 3s infinite ease-in-out;
}

@keyframes float-horizontal {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-5px); }
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
  background: linear-gradient(135deg, var(--color-accent-blue) 0%, #25d366 100%);
}

.whatsapp-float i {
  position: relative;
  z-index: 2;
}

/* Pulse Animation */
.whatsapp-float {
  animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 212, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-container {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-label {
    display: none; /* Hide label on mobile */
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}

/* Team Section */
.team-section {
  padding: var(--spacing-xl) 0;
  position: relative;
  background: linear-gradient(to bottom, transparent, rgba(138, 43, 226, 0.03));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.team-card {
  background: var(--gradient-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

/* Gradient border effect on hover */
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-brand);
  -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;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.team-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 212, 255, 0.1));
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(20%);
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--spacing-md);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.team-social {
  display: flex;
  gap: 15px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.team-card:hover .team-social a {
  transform: translateY(0);
}

.team-social a:nth-child(1) {
  transition-delay: 0.1s;
}

.team-social a:nth-child(2) {
  transition-delay: 0.2s;
}

.team-social a:hover {
  background: var(--color-accent-blue);
  border-color: var(--color-accent-blue);
  transform: translateY(-5px) scale(1.1);
}

.team-info {
  padding: var(--spacing-md);
  text-align: center;
}

.team-info h3 {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-main);
}

.team-role {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-sm);
}

.team-info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Individual card accent colors */
.team-card:nth-child(1) .team-role {
  color: var(--color-primary);
}

.team-card:nth-child(2) .team-role {
  color: var(--color-secondary);
}

.team-card:nth-child(3) .team-role {
  color: var(--color-accent-blue);
}

.team-card:nth-child(4) .team-role {
  color: var(--color-highlight);
}

.team-card:nth-child(5) .team-role {
  color: var(--color-primary);
}

/* Responsive adjustments for team section */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
  }

  .team-card {
    margin-bottom: var(--spacing-sm);
  }

  .team-info h3 {
    font-size: 1.2rem;
  }

  .team-info p {
    font-size: 0.85rem;
  }
}

@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
/* Project Iframe Section */
.project-iframe-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  line-height: 0; /* Remove potential white space at bottom */
  position: relative;
}

.project-iframe-section iframe {
  width: 100%;
  height: 90vh; /* Responsive height */
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .project-iframe-section iframe {
    height: 60vh;
  }
}
