 /* Reset and Base Styles */
 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html, body {
  height: 100%;
}

body {
  background-color: #000;
  color: #fff;
  overflow-y: auto;
}

/* 🔥 Red glow background (same as landing page) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 95% 5%, rgba(255, 59, 59, 0.85) 0%, transparent 30%),
    radial-gradient(circle at 5% 95%, rgba(255, 20, 20, 0.6) 0%, transparent 30%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
        :root {
            /* Define soft red color variables */
            --primary-red: #f60000b6; /* Bright red for accents */
            --soft-red-glow: rgba(255, 77, 77, 0.4);
            --dark-background: #000;
            --card-background: rgba(17, 17, 17, 0.6); /* Slightly darker for card body */
            --glass-white: rgba(255, 255, 255, 0.05); /* Very light transparency for glass effect */
            --text-color: #fff;
            --border-color: #333;
        }

        .page-container {
        margin: auto;
            background-color: var(--dark-background);
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 20px;
            overflow-x: hidden;
            position: relative;
        }



        /* --- Page Container --- */
        .page-container {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1200px;
            margin-top: 100px; /* Space so dashboard doesn’t overlap */
        }

        /* --- Header Section --- */
        .alumni-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .alumni-header h1 {
            
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 10px;
            text-shadow: 0 0 15px var(--soft-red-glow);
        }

        .alumni-header p {
            font-size: 1em;
            color: #ccc;
        }

        /* --- Reviews Grid --- */
        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        /* --- Review Card --- */
        .review-card {
            background-color: var(--card-background);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 30px;
            transition: 0.3s ease;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(2px);
        }

        .review-card:hover {
            border-color: var(--primary-red);
            box-shadow: 0 0 25px var(--soft-red-glow);
            transform: translateY(-5px);
        }

        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            color: #ddd;
        }

        .alumnus-info {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }

        .alumnus-photo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-red);
            margin-right: 15px;
            border: 2px solid var(--primary-red);
        }

        .alumnus-details strong {
            display: block;
            font-weight: 600;
            color: var(--text-color);
        }

        .alumnus-details span {
            font-size: 0.9em;
            color: var(--primary-red);
        }

        .rating {
            color: gold;
            font-size: 1.2em;
            margin-bottom: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .alumni-header h1 {
                font-size: 2.2em;
            }

            .dashboard {
                top: auto;
                bottom: 20px;
                right: 50%;
                font-size: 1em;
                transform: translateX(50%);
                padding: 10px 15px;
            }

            .page-container {
                margin-top: 50px;
            }
        }