
  /* 3D Neon Logo */
  .footer-brand {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
  }
  
  .brand-name {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #64ffda;
    text-transform: uppercase;
    text-shadow: 0 0 5px #64ffda, 0 0 10px #64ffda,
      0 0 20px rgba(100, 255, 218, 0.8), 0 0 40px rgba(100, 255, 218, 0.5);
    position: relative;
    animation: neonFlow 6s infinite alternate ease-in-out;
  }
  /* Smooth Neon Flow Animation */
  @keyframes neonFlow {
    0% {
      text-shadow: 0 0 5px #64ffda, 0 0 10px #64ffda,
        0 0 15px rgba(100, 255, 218, 0.8);
    }
    100% {
      text-shadow: 0 0 10px #64ffda, 0 0 20px rgba(100, 255, 218, 1),
        0 0 30px rgba(100, 255, 218, 0.6);
    }
  }
  
  /* Subtle Glitch Flicker (Refined, Not Chaotic) */
  .brand-name::before {
    content: "CODYMAKE";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: rgba(100, 255, 218, 0.5);
    text-shadow: 0px 0px 5px rgba(100, 255, 218, 0.8),
      0px 0px 10px rgba(100, 255, 218, 0.6);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    animation: glitchFlicker 3s infinite alternate ease-in-out;
  }
  
  /* Glitch Effect */
  .glitch {
    position: relative;
  }
  
  .glitch::before,
  .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  
  .glitch::before {
    color: #a8ff78;
    z-index: -1;
    animation: glitch-effect 3s infinite;
  }
  
  .glitch::after {
    color: #ff64da;
    z-index: -2;
    animation: glitch-effect 2s reverse infinite;
  }
  
  @keyframes glitch-effect {
    0% {
      transform: translate(0);
    }
    20% {
      transform: translate(-5px, 5px);
    }
    40% {
      transform: translate(-5px, -5px);
    }
    60% {
      transform: translate(5px, 5px);
    }
    80% {
      transform: translate(5px, -5px);
    }
    100% {
      transform: translate(0);
    }
  }
  /* Refined Glitch Effect */
  @keyframes glitchFlicker {
    0% {
      transform: translate(0);
      opacity: 0.8;
    }
    20% {
      transform: translate(-2px, 2px);
    }
    40% {
      transform: translate(2px, -2px);
    }
    60% {
      transform: translate(-1px, 1px);
      opacity: 0.7;
    }
    80% {
      transform: translate(1px, -1px);
    }
    100% {
      transform: translate(0);
      opacity: 0.8;
    }
  }
  /* Typing Tagline */
  .tagline {
    font-size: 1.3rem;
    color: #a8b2d1;
    font-family: "Courier New", monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .typing-effect {
    display: inline-block;
    border-right: 2px solid #64ffda;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 4s steps(40) infinite, blink-caret 0.75s step-end infinite;
  }
  
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  
  @keyframes blink-caret {
    from,
    to {
      border-color: transparent;
    }
    50% {
      border-color: #64ffda;
    }
  }
  
  /* Holographic Navigation */
  .cyber-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
  }
  
  .nav-link {
    position: relative;
    color: #64ffda;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 15px;
    overflow: hidden;
  }
  
  .link-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }
  
  .link-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(100, 255, 218, 0.2),
      transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
  }
  
  .nav-link:hover .link-text {
    text-shadow: 0 0 10px #64ffda;
  }
  
  .nav-link:hover .link-hover {
    transform: translateX(100%);
  }
  
  /* Interactive Social Icons (Holo-Projected) */
  .cyber-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
  }
  
  .social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #64ffda;
    font-size: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
  }
  
  .social-icon i {
    position: relative;
    z-index: 2;
  }
  
  .icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #64ffda;
    border-radius: 50%;
    animation: pulseRing 2s infinite;
    opacity: 0;
  }
  
  .social-icon:hover {
    transform: translateY(-5px) scale(1.2);
    color: #0a192f;
    background: #64ffda;
    box-shadow: 0 0 30px #64ffda;
  }
  
  .social-icon:hover .icon-ring {
    animation: none;
    opacity: 1;
    border-color: rgba(100, 255, 218, 0.5);
  }
  
  @keyframes pulseRing {
    0% {
      transform: scale(0.8);
      opacity: 0.5;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }
  
  /* AI-Powered Copyright */
  .cyber-copyright {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .binary-effect {
    font-family: "Courier New", monospace;
    color: rgba(168, 255, 120, 0.3);
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
  }
  
  .cyber-copyright p {
    color: #a8b2d1;
    font-size: 0.9rem;
  }
  
  .year {
    color: #64ffda;
    font-weight: bold;
  }
  
  /* Scanning Laser Effect */
  .laser-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #64ffda, transparent);
    box-shadow: 0 0 10px #64ffda;
    animation: scan 6s linear infinite;
    opacity: 0.7;
    z-index: 1;
  }
  
  @keyframes scan {
    0% {
      top: 0;
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      top: 100%;
      opacity: 0;
    }
  }
  
  /* Adjust orbs for small screens */
  @media (max-width: 768px) {
    .orb-1 {
      width: 120px;
      height: 120px;
      top: 30%;
      left: 5%;
    }
  
    .orb-2 {
      width: 100px;
      height: 100px;
      top: 70%;
      left: 60%;
    }
  
    .orb-3 {
      width: 80px;
      height: 80px;
      top: 40%;
      left: 45%;
    }
  }
  
  /* Typography for mobile */
  @media (max-width: 600px) {
    .brand-name {
      font-size: 2rem;
      letter-spacing: 2px;
    }
  
    .tagline {
      font-size: 1rem;
      letter-spacing: 1px;
    }
  
    .nav-link {
      font-size: 0.95rem;
    }
  
    .cyber-nav {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
  
    .cyber-social {
      justify-content: center;
    }
  
    .social-icon {
      width: 45px;
      height: 45px;
      font-size: 1rem;
    }
  }
  
  /* Responsive tweaks for very large screens */
  @media (min-width: 1400px) {
    .brand-name {
      font-size: 4rem;
    }
  
    .tagline {
      font-size: 1.4rem;
    }
  
    .nav-link {
      font-size: 1.2rem;
    }
  
    .social-icon {
      width: 70px;
      height: 70px;
      font-size: 1.8rem;
    }
  }
  
  /* ========= Background Animation ========= */
  @keyframes floating {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  /* Floating Dots Effect */
  .floating-dots {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #64ffda;
    border-radius: 50%;
    opacity: 0.3;
    animation: floating 6s infinite ease-in-out;
  }
  
  .dots1 {
    top: 20%;
    left: 10%;
    animation-delay: 1s;
  }
  .dots2 {
    top: 50%;
    left: 80%;
    animation-delay: 2s;
  }
  .dots3 {
    top: 80%;
    left: 30%;
    animation-delay: 3s;
  }
  .dots4 {
    top: 10%;
    left: 60%;
    animation-delay: 4s;
  }
  
  /* ========= Scroll Reveal JS ========= */
  @media (max-width: 1024px) {
    .service-cards,
    .portfolio-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .card,
    .portfolio-item {
      width: 80%;
    }
  }
  
  @media (max-width: 768px) {
    .btn {
      padding: 10px 18px;
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .btn {
      padding: 8px 15px;
      font-size: 14px;
    }
  
    h1 {
      font-size: 28px;
    }
  
    p {
      font-size: 14px;
    }
  }



    /* ===== Main Content Styles ===== */
    .main-content {
      padding-top: 80px; /* Offset for fixed header */
    }
    
    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Quantum Core Section */
    .quantum-core {
      position: relative;
      overflow: hidden;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .section-header h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      background: linear-gradient(90deg, #4fc3f7, #ba68c8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-top: 64px;
    }
    
    .section-header p {
      font-size: 1.2rem;
      color: #94a3b8;
    }
    
    .core-animation {
      width: 300px;
      height: 300px;
      margin: 0 auto 45px;
      position: relative;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(20,30,80,0.8) 0%, rgba(0,0,30,0.9) 70%);
      box-shadow: 0 0 60px rgba(100, 150, 255, 0.3);
    }
    
    .quantum-particle {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #4fc3f7;
      box-shadow: 0 0 15px #4fc3f7;
      opacity: 0.8;
      top: 50%;
      left: 50%;
      transform-origin: center;
    }
    
    @keyframes orbit {
      from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg);
      }
      to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg);
      }
    }
    
    .core-center {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(79, 195, 247, 0.5);
      box-shadow: 0 0 30px rgba(79, 195, 247, 0.7);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
    }
    
    .core-statement {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      font-size: 1.1rem;
    }
    
    /* Philosophy Section */
    .philosophy-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin: 60px 0;
    }
    
    .philosophy-card {
      background: rgba(15, 23, 42, 0.7);
      border-radius: 15px;
      padding: 30px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(100, 150, 255, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .philosophy-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 50, 0.3);
    }
    
    .philosophy-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(100, 150, 255, 0.05) 0%, transparent 100%);
      z-index: -1;
    }
    
    .philosophy-icon {
      font-size: 2rem;
      color: #4fc3f7;
      margin-bottom: 20px;
    }
    
    .philosophy-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
    }
    
    /* Tech Evolution Section */
    .tech-evolution {
      padding: 80px 0;
      background: linear-gradient(to right, #0f172a, #1e293b, #0f172a);
    }
    
    .evolution-path {
      height: 4px;
      background: linear-gradient(to right, #4fc3f7, #ba68c8, #ff8a65);
      margin: 60px auto;
      position: relative;
      max-width: 800px;
      border-radius: 2px;
    }
    
    .evolution-marker {
      position: absolute;
      width: 20px;
      height: 20px;
      background: #fff;
      border-radius: 50%;
      top: -8px;
      transform: translateX(-50%);
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    }
    
    .evolution-marker::after {
      content: attr(data-year);
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-weight: bold;
    }
    
    .evolution-marker::before {
      content: attr(data-milestone);
      position: absolute;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      color: #94a3b8;
      width: 200px;
      text-align: center;
    }

    .evolution-description p {
      margin-top: 110px;
      text-align: center;
    }
    
    /* Manifesto Section */
    .manifesto-section {
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(15, 23, 42, 0.8)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
      background-size: 100% 100%;
      background-repeat: no-repeat;
      padding: 120px 0 80px;
      margin-top: -1px;
    }
    
    .manifesto-item {
      max-width: 800px;
      margin: 0 auto 50px;
      padding: 30px;
      border-left: 3px solid #4fc3f7;
      position: relative;
    }
    
    .manifesto-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(20, 30, 80, 0.3) 0%, transparent 100%);
      z-index: -1;
    }
    
    .manifesto-number {
      position: absolute;
      top: -20px;
      left: -20px;
      width: 40px;
      height: 40px;
      background: #4fc3f7;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #0f172a;
      box-shadow: 0 0 20px rgba(79, 195, 247, 0.5);
    }
    
    /* Future Horizons Section */
    .future-horizons {
      padding: 80px 0;
    }
    
    .horizon-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }
    
    .horizon-card {
      background: rgba(15, 23, 42, 0.7);
      border-radius: 15px;
      padding: 30px;
      border: 1px solid rgba(100, 150, 255, 0.1);
    }
    
    .horizon-icon {
      font-size: 2rem;
      color: #4fc3f7;
      margin-bottom: 20px;
    }
    
    /* CTA Section */
    .cta-section {
      text-align: center;
      margin: 60px 0;
    }
    
    .cta-section p {
      font-size: 1.3rem;
      margin-bottom: 30px;
      color: #94a3b8;
    }
    
    .btn-contact {
      display: inline-block;
      padding: 15px 40px;
      background: linear-gradient(135deg, #4fc3f7 0%, #3a7bd5 100%);
      color: white;
      border-radius: 30px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(63, 81, 181, 0.3);
      text-decoration: none !important;
    }
    
    .btn-contact:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(63, 81, 181, 0.4);
    }
    
    
    /* ===== Responsive Adjustments ===== */
    @media (max-width: 992px) {
      .core-animation {
        width: 250px;
        height: 250px;
      }
      
      @keyframes orbit {
        from {
          transform: translate(-50%, -50%) rotate(0deg) translateX(120px) rotate(0deg);
        }
        to {
          transform: translate(-50%, -50%) rotate(360deg) translateX(120px) rotate(-360deg);
        }
      }
    }
    
    @media (max-width: 768px) {

      
      .core-statement br {
        display: none;
      }
      
      .evolution-marker::before,
      .evolution-marker::after {
        width: 40px;
        font-size: 0.8rem;
      }
    }
    





/* ===== Founders Section Styles ===== */
/* ===== Visionary Team Section ===== */
.cm-visionary-team {
  padding: 60px 0;
  background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
  position: relative;
  overflow: hidden;
  margin-top: 75px;
}

.cm-team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cm-team-title {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #ccd6f6;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cm-team-highlight {
  color: #64ffda;
}

.cm-team-subtitle {
  text-align: center;
  color: #8892b0;
  font-size: clamp(0.9rem, 3vw, 1.2rem);
  margin-bottom: 40px;
  line-height: 1.4;
}

.cm-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  perspective: 1000px;
}

.cm-team-member {
  height: auto;
  min-height: 350px;
  perspective: 1000px;
}

.cm-member-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  border-radius: 15px;
}

.cm-team-member:hover .cm-member-card {
  transform: rotateY(180deg);
}

.cm-member-front,
.cm-member-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cm-member-front {
  background: rgba(10, 25, 47, 0.8);
  border: 1px solid rgba(100, 255, 218, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cm-member-back {
  background: rgba(10, 25, 47, 0.95);
  transform: rotateY(180deg);
  border: 1px solid #64ffda;
  padding: 20px;
  display: flex;
  align-items: center;
  overflow-y: auto;
}

.cm-member-image {
  height: 78%;
  position: relative;
  overflow: hidden;
}

.cm-member-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.5s;
}

.cm-team-member:hover .cm-member-image img {
  transform: scale(1.1);
}

.cm-tech-tags {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.cm-tag {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.cm-member-basic {
  padding: 15px;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

.cm-member-basic h3 {
  color: #64ffda;
  font-size: clamp(1.1rem, 4vw, 1.3rem);
  margin-bottom: 5px;
}

.cm-member-basic p {
  color: #8892b0;
  font-size: clamp(0.8rem, 3vw, 0.9rem);
}

.cm-pulse-indicator {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.cm-pulse-indicator span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #64ffda;
  opacity: 0.5;
  animation: cm-pulse 1.5s infinite ease-in-out;
}

.cm-member-details {
  width: 100%;
}

.cm-member-details h3 {
  color: #64ffda;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  margin-bottom: 5px;
  text-align: center;
}

.cm-member-role {
  color: #8892b0;
  font-size: clamp(0.8rem, 3vw, 0.9rem);
  text-align: center;
  font-style: italic;
  margin-bottom: 12px;
}

.cm-divider-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #64ffda, transparent);
  margin: 12px auto;
}

.cm-member-bio {
  color: #ccd6f6;
  font-size: clamp(0.8rem, 3vw, 0.9rem);
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: center;
}

.cm-key-points {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.cm-key-points li {
  color: #a8b2d1;
  font-size: clamp(0.7rem, 3vw, 0.8rem);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.cm-key-points i {
  color: #64ffda;
  margin-right: 8px;
  font-size: 0.8rem;
  min-width: 16px;
}

.cm-social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cm-social-links a {
  color: #ccd6f6;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 255, 218, 0.3);
  font-size: 0.9rem;
}

/* Tag colors remain the same as before */
.cm-python { background: rgba(55, 118, 171, 0.9); border: 1px solid #3776ab; }
.cm-django { background: rgba(9, 46, 32, 0.9); border: 1px solid #092e20; }
.cm-react { background: rgba(97, 218, 251, 0.2); border: 1px solid #61dafb; color: #61dafb; }
.cm-aws { background: rgba(35, 47, 62, 0.9); border: 1px solid #232f3e; }
.cm-node { background: rgba(51, 153, 51, 0.9); border: 1px solid #339933; }
.cm-agile { background: rgba(0, 115, 177, 0.9); border: 1px solid #0073b1; }
.cm-devops { background: rgba(36, 150, 237, 0.2); border: 1px solid #2496ed; color: #2496ed; }

@keyframes cm-pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .cm-team-container {

    padding: 72px;
  }
  .cm-visionary-team {
    padding: 50px 0;
  }
  
  .cm-team-grid {
    gap: 20px;
  }
  
  .cm-member-card {
    min-height: 320px;
  }
  
  .cm-member-back {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .cm-team-container {
    padding: 67px;
  }
  .cm-visionary-team {
    padding: 40px 0;
  }
  
  .cm-team-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .cm-team-member {
    min-height: 300px;
  }
  
  .cm-member-card {
    min-height: 300px;
  }
  
  .cm-member-image {
    height: 72%;
  }
  
  .cm-tech-tags {
    bottom: 8px;
  }
  
  .cm-tag {
    padding: 3px 8px;
    font-size: 0.6rem;
  }
  
  .cm-member-basic {
    padding: 12px;
  }
  
  .cm-key-points li {
    flex-wrap: wrap;
  }
}

@media (max-width: 375px) {
  .cm-team-container {
    padding: 50px;
  }
  }


@media (max-width: 360px) {
  .cm-team-grid {
    max-width: 300px;
  }
  
  .cm-member-card {
    min-height: 280px;
  }
  
  .cm-member-back {
    padding: 12px;
  }
  
  .cm-key-points li {
    font-size: 0.65rem;
  }
}


@media (max-width: 375px) {
  .cm-team-container {
    padding: 30px;
  }
  }

