/* ===== Global Styles ===== */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f1a, #1a1a2e, #16213e);
    color: #e0e0e0;
    overflow-x: hidden;
  }
  
  /* ===== Container ===== */
  .about-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.3);
    animation: fadeIn 1.2s ease-in-out;
  }
  
  /* ===== Header Section ===== */
  .about-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .about-header h1 {
    font-size: 2.8em;
    background: linear-gradient(90deg, #00f2fe, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    animation: textGlow 2s infinite alternate;
  }
  
  .about-header p {
    color: #aaa;
    font-size: 1.2em;
    animation: fadeInUp 1.5s ease;
  }
  
  /* ===== Content Section ===== */
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    animation: slideUp 1.5s ease;
  }
  
  /* ===== Image Styling ===== */
  .about-image {
    flex: 1;
    text-align: center;
  }
  
  .about-image img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 4px solid #00f2fe;
    object-fit: cover;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.7);
    animation: floatImage 4s ease-in-out infinite;
    
  }
  
  /* ===== Text Styling ===== */
  .about-text {
    flex: 2;
    animation: fadeIn 2s ease;
  }
  
  .about-text h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #4facfe;
  }
  
  .about-text p {
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ddd;
  }
  
  /* ===== Skills Section ===== */
  .skills {
    margin-top: 25px;
  }
  
  .skills h3 {
    margin-bottom: 12px;
    color: #00f2fe;
  }
  
  .skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .skill {
    padding: 10px 18px;
    background: rgba(0, 242, 254, 0.15);
    color: #00f2fe;
    border-radius: 25px;
    font-size: 0.95em;
    border: 1px solid rgba(0, 242, 254, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
  }
  
  .skill:hover {
    background: #00f2fe;
    color: #0f0f1a;
    transform: scale(1.1);
    box-shadow: 0 0 20px #00f2fe, 0 0 40px #00f2fe;
  }
  
  /* ===== Button ===== */
  .btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    color: #0f0f1a;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
  }
  
  .btn:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    box-shadow: 0 0 25px #00f2fe, 0 0 50px #4facfe;
  }
  
  /* ===== Animations ===== */
  @keyframes textGlow {
    from { text-shadow: 0 0 5px #00f2fe, 0 0 15px #4facfe; }
    to { text-shadow: 0 0 20px #00f2fe, 0 0 40px #4facfe; }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text {
      flex: 1;
    }
  }
  