body {
      font-family: 'Poppins', sans-serif;
      color: #fff;
      overflow-x: hidden;
    }

    .section {
      min-height: 90vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem 2rem;
    }

    /* Animated Background Gradients */
    .learning-content {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      animation: gradientShift 8s ease infinite;
    }

    .digital-content {
      background: linear-gradient(135deg, #A2185B 0%, #8d5d74 100%);
      animation: gradientShift 8s ease infinite;
    }

    .visual-content {
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      animation: gradientShift 8s ease infinite;
    }

    @keyframes gradientShift {
      0%, 100% { filter: hue-rotate(0deg); }
      50% { filter: hue-rotate(20deg); }
    }

    .container {
      max-width: 1400px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Image Container with 3D Effect */
    .image-container {
      position: relative;
      perspective: 1000px;
    }

    .image-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      transform-style: preserve-3d;
      transition: transform 0.6s ease;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      background: rgba(255,255,255,0.1);
    }

    .image-wrapper:hover {
      transform: rotateY(5deg) rotateX(5deg) scale(1.02);
    }

    .image-wrapper img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
    }

    .image-overlay {
      position: absolute;
      height: 200px;
      inset: 0;
      background: linear-gradient(45deg, rgba(162,26,92,0.3), rgba(57,150,141,0.3));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .image-wrapper:hover .image-overlay {
      opacity: 1;
    }

    /* Content Area */
    .content {
      position: relative;
      z-index: 2;
    }

    .content h1 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: titleSlide 1s ease-out 0.2s both;
    }

    @keyframes titleSlide {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .content p {
      font-size: 1.15rem;
      line-height: 1.3;
      margin-bottom: 1.5rem;
      opacity: 0.95;
      animation: fadeIn 1s ease-out 0.4s both;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 0.95; }
    }

    /* Pop-out Button */
    .explore-btn {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
      color: #fff;
      padding: 1rem 2.5rem;
      text-decoration: none;
      border-radius: 50px;
      border: 2px solid rgba(255,255,255,0.3);
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      margin-top: 2rem;
      cursor: pointer;
    }

    .explore-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
      transform: translateX(-100%);
      transition: transform 0.4s ease;
    }

    .explore-btn:hover {
      transform: scale(1.05);
      border-color: rgba(255,255,255,0.8);
      box-shadow: 0 10px 30px rgba(255,255,255,0.2);
    }

    .explore-btn:hover::before {
      transform: translateX(0);
    }

    .explore-btn span {
      position: relative;
      z-index: 1;
    }

    /* Cards Container - Hidden by default */
    .cards-wrapper {
      position: relative;
      margin-top: 2rem;
    }

    .link-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s, max-height 0.4s ease;
      pointer-events: none;
      max-height: 0;
    }

    /* Show cards on button hover */
    .explore-btn:hover + .cards-wrapper .link-grid,
    .cards-wrapper:hover .link-grid {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: all;
      max-height: 600px;
    }

    .link-card {
      position: relative;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 1.5rem 1rem;
      text-align: center;
      text-decoration: none;
      color: #fff;
      transition: all 0.6s ease;
      transform-style: preserve-3d;
      perspective: 1000px;
      animation: breathe 3s ease-in-out infinite;
      animation-delay: calc(var(--i) * 0.3s);
    }

    .link-card:nth-child(1) { --i: 0; }
    .link-card:nth-child(2) { --i: 1; }
    .link-card:nth-child(3) { --i: 2; }
    .link-card:nth-child(4) { --i: 3; }

    @keyframes breathe {
      0%, 100% { 
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      }
      50% { 
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
      }
    }

    .link-card:hover {
      transform:  scale(1.05);
      animation: none;
    }

    .link-card .card-front,
    .link-card .card-back {
      backface-visibility: hidden;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.5rem 1rem;
    }

    .link-card .card-front {
      transform: rotateY(0deg);
    }

    .link-card .card-back {
      transform: rotateY(180deg);
      background: rgba(255,255,255,0.25);
      backdrop-filter: blur(15px);
      border-radius: 16px;
    }



    .link-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      border-radius: 16px;
    }

    .link-card:hover::before {
      opacity: 1;
    }

    .card-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      display: inline-block;
      transition: transform 0.6s ease;
    }

    .link-card:hover .card-icon {
      transform:  scale(1.2);
    }

    .link-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      position: relative;
      z-index: 1;
      color: black;
    }

    /* Floating Particles */
    .particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      background: rgba(255,255,255,0.5);
      border-radius: 50%;
      animation: particleFloat 15s linear infinite;
    }

    @keyframes particleFloat {
      0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
      }
    }

    /* Divider */
    .divider {
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .content h1 {
        font-size: 3rem;
      }

      .image-wrapper img {
        height: 400px;
      }

      .link-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .image-container {
        display: none;
      }

      .content h1 {
        font-size: 2.5rem;
      }

      .link-grid {
        grid-template-columns: 1fr;
      }
    }