* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Outfit', sans-serif;
    background: #a8c4e9;
    overflow-x: hidden;
    color: #333;
  }
  
  .experience-section {
    position: relative;
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
  }
  
  .experience-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
  }
  
  .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(90deg, rgb(1, 55, 136), #010c68);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }
  
  .experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    width: 100%;
  }
  
  .experience-card {
    background: #ffffffdd;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 25px rgba(8, 8, 8, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    animation: pulseGlow 6s ease-in-out infinite;
    border-left: 5px solid #113157;
  }
  
  .experience-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 24px 55px rgba(0,0,0,0.12);
  }
  
  @keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0px); }
  }
  
  .experience-card::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -30%;
    width: 160%;
    height: 160%;
    
    transform: rotate(25deg);
    pointer-events: none;
  }
  
  .experience-card h3 {
    font-size: 1.5rem;
    color: #022c6b;
    margin-bottom: 8px;
  }
  
  .experience-card .company {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
  }
  
  .experience-card .duration {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 16px;
  }
  
  .experience-card ul {
    list-style: none;
    padding-left: 0;
  }
  
  .experience-card ul li {
    font-size: 0.95rem;
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
  }
  
  .experience-card ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #fffaff;
    font-size: 1.4rem;
    top: -2px;
  }
  
  .icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffffff;
    font-size: 24px;
  }
  
  @keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(2, 119, 189, 0.2); }
    50% { box-shadow: 0 0 40px rgba(10, 10, 10, 0.4); }
    100% { box-shadow: 0 0 20px rgba(2, 119, 189, 0.2); }
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 2.2rem;
    }
  }