/* tech-stack.css */
.tech-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
  }
  
  .tech-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
  }
  
  .tech-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .tech-section-title {
    color: #0b1c3e;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
 
.tech-box {
    background-color: #f8f9fa; 
    border: 1px solid #e9ecef; 
    border-radius: 20px; 
    padding: 40px; 
    height: 100%; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.03); 
  }