.social-hub-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .social-hub-title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    color: #333;
  }
  
  .social-hub-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-content: center;
    align-items: start;
  }
  
  .social-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .social-card:hover {
    transform: translateY(-8px);
  }
  
  .social-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .social-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .social-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #555;
  }
  
  .social-card iframe {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  .social-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5722;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .social-btn:hover {
    background-color: #e64a19;
  }
  
  /* Card colors */
  .instagram-card i { color: #E4405F; }
  .youtube-card i { color: #FF0000; }
  .facebook-card i { color: #3b5998; }
  