  
    :root {
      --primary-color: #0d6efd;
      --secondary-color: #6c757d;
      --success-color: #198754;
      --info-color: #0dcaf0;
      --warning-color: #ffc107;
      --danger-color: #dc3545;
      --light-color: #f8f9fa;
      --dark-color: #212529;
      --bg-secondary: #f8f9fa;
      --border-color: #dee2e6;
    }

    main {
      margin-top: 100px;
    }

    /* Placement Hero Section */
    .placement-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                  url('https://via.placeholder.com/1920x600?text=Placements+GPN') center/cover no-repeat;
      color: white;
      padding: 120px 0 80px;
      text-align: center;
    }

    /* Statistics Cards */
    .stat-card {
      text-align: center;
      padding: 2rem 1rem;
      border: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      height: 100%;
    }

    .stat-card:hover {
      transform: translateY(-5px);
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
    }

    /* Timeline */
    .timeline {
      position: relative;
      padding: 2rem 0;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: var(--primary-color);
      transform: translateX(-50%);
    }

    .timeline-item {
      display: flex;
      margin-bottom: 2rem;
      position: relative;
    }

    .timeline-dot {
      width: 20px;
      height: 20px;
      background: var(--primary-color);
      border-radius: 50%;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
    }

    .timeline-content {
      width: 45%;
      padding: 1.5rem;
      background: white;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .timeline-item:nth-child(odd) .timeline-content {
      margin-left: auto;
    }

    .timeline-item:nth-child(even) .timeline-content {
      margin-right: auto;
    }

    .recruiter-logo {
  height: 500px;
  width: 500px;
  object-fit: contain;
  transition: all 0.3s ease;
  padding: 20px;
}

    .recruiter-logo:hover {
      transform: scale(1.05);
    }

    /* Success Stories */
    .success-story-card {
      transition: transform 0.3s ease;
      height: 100%;
    }

    .success-story-card:hover {
      transform: translateY(-5px);
    }

    /* Section Titles */
    .section-title {
      position: relative;
      padding-bottom: 15px;
      margin-bottom: 30px;
      text-align: center;
      font-weight: 700;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--primary-color);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .timeline::before {
        left: 30px;
      }
      
      .timeline-dot {
        left: 30px;
      }
      
      .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
      }
      
      .placement-hero {
        padding: 100px 0 60px;
      }
      
      .stat-number {
        font-size: 2.5rem;
      }
    }
  