/* About section including video blog CTA */

/* About Section */
.about {
    background: 
      radial-gradient(ellipse at 0% 0%, rgba(108, 171, 221, 0.08) 0%, transparent 50%),
      var(--dark);
  }
  
  .about-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
  }
  
  .about-text {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(240, 244, 248, 0.85);
  }
  
  .about-text .highlight {
    color: var(--sky-blue);
    font-weight: 600;
  }
  
  .profile-card {
    background: linear-gradient(135deg, rgba(28, 44, 91, 0.3) 0%, rgba(108, 171, 221, 0.1) 100%);
    border: 1px solid rgba(108, 171, 221, 0.2);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  
  .profile-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(10, 10, 15, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .profile-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(108, 171, 221, 0.15);
  }
  
  .profile-item-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .profile-item-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(240, 244, 248, 0.5);
    margin-bottom: 0.5rem;
  }
  
  .profile-item-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--light);
    letter-spacing: 1px;
  }
  
  /* Video Blog CTA */
  .video-blog-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(28, 44, 91, 0.4) 100%);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: var(--light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  .video-blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .video-blog-cta:hover::before {
    left: 100%;
  }
  
  .video-blog-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
  }
  
  .video-blog-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .video-blog-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
  }
  
  .video-blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .video-blog-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF6B6B;
  }
  
  .video-blog-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--light);
  }
  
  .video-blog-desc {
    font-size: 0.9rem;
    color: rgba(240, 244, 248, 0.7);
    line-height: 1.5;
  }
  
  .video-blog-arrow {
    font-size: 1.8rem;
    color: var(--gold);
    transition: transform 0.3s ease;
  }
  
  .video-blog-cta:hover .video-blog-arrow {
    transform: translateX(8px);
  }
  
  @media (max-width: 768px) {
    .video-blog-cta {
      flex-direction: column;
      text-align: center;
      padding: 1.5rem;
    }
  
    .video-blog-arrow {
      display: none;
    }
  }
