/* Screenshot Protection for Users */
.no-screenshot {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
}

.no-screenshot::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    pointer-events: none;
}

/* Base Styles */
:root {
    --primary-blue: #2c3e50;
    --secondary-blue: #34495e;
    --accent-orange: #f39c12;
    --light-blue: #3498db;
    --success-green: #27ae60;
    --danger-red: #e74c3c;
    --warning-yellow: #f1c40f;
    --light-gray: #ecf0f1;
    --dark-gray: #7f8c8d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}
.amazing-navbar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.amazing-navbar .navbar-brand,
.amazing-navbar .nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.amazing-navbar .nav-link:hover {
    color: #f1c40f !important;
}
.amazing-profile-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.amazing-profile-header h4,
.amazing-profile-header i {
    color: white !important;
}

.amazing-profile-header .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    font-weight: 600;
}

.amazing-profile-header .btn-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.2);
}

.amazing-profile-header .btn-warning:hover {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    transform: translateY(-2px);
}

/* Login Page Styles */
.login-container {
    min-height: 100vh;
   background:
    linear-gradient(rgba(44,62,80,.4), rgba(44,62,80,.4)),
    url("../images/campus-bg.8b4e6029266c.png") center/cover no-repeat;

    background-attachment: fixed;
    position: relative;
}

.login-form-section {
    background: rgba(44, 62, 80, 0.9);
    min-height: 100vh;
}

.login-card {
    background: rgba(44, 62, 80, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: 420px;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header h2 {
    color: white;
    font-weight: 600;
}

.welcome-section {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.welcome-content h1 {
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    color: white !important;
}

.welcome-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Admin Login */
.admin-login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.admin-login-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Amazing Modern Registration Page */
.modern-registration-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.modern-registration-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
    /* FIX: don't block clicks */
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.amazing-registration-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.1),
        0 0 60px rgba(255, 255, 255, 0.3) inset;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    animation: cardEntrance 0.8s ease-out;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.amazing-registration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
    /* FIX: don't block clicks */
    pointer-events: none;
    z-index: 0;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.registration-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.registration-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.registration-icon i {
    font-size: 2rem;
    color: white;
}

.amazing-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.amazing-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
}

.info-title {
    color: white;
    font-weight: 600;
    line-height: 1.6;
}

.verification-text {
    color: var(--dark-gray);
    text-align: center;
    font-style: italic;
}

/* Directory Page */
.filter-card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-label {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.alumni-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.alumni-photo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
}

/* Profile Page */
.profile-card {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--light-blue);
}

.profile-photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    border: 5px solid var(--light-blue);
    margin: 0 auto;
}

.profile-label {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.profile-value {
    color: var(--secondary-blue);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: 5px;
}

/* Admin Panel */
.pending-request-item {
    transition: background-color 0.3s ease;
}

.pending-request-item:hover {
    background-color: var(--light-gray);
}

.filter-box {
    background: var(--secondary-blue);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 1rem;
}

.filter-label {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Admin Review */
.review-form {
    background: var(--primary-blue);
    padding: 1.5rem;
    border-radius: 10px;
}

.review-label {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.review-field {
    background: white;
    padding: 0.75rem;
    border-radius: 5px;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    min-height: 45px;
    display: flex;
    align-items: center;
}

.review-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.review-photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
}

.action-panel {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.action-title {
    color: var(--primary-blue);
    font-weight: 600;
    text-align: center;
}

/* Modern Button Styles */
.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border: none;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #e67e22, var(--accent-orange));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Message Styles */
.message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    max-width: 400px;
}

/* Modern Form Controls */
.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
    transform: translateY(-1px);
}

.form-control:hover, .form-select:hover {
    border-color: var(--light-blue);
}

/* Keep selects above decorative overlays */
.form-select {
    position: relative;   /* FIX */
    z-index: 1;           /* FIX */
}

.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

/* Input Groups */
.input-group {
    position: relative;
}

.input-group .form-control {
    padding-left: 45px;
}

.input-group-text {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--light-blue);
    z-index: 5;
}

/* Modern Table Styles */
.table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.table th {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: none;
    padding: 20px 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.table td {
    vertical-align: middle;
    padding: 18px 15px;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(44, 62, 80, 0.05));
    transform: scale(1.01);
}

/* Responsive */
@media (max-width: 768px) {
    .login-container .row {
        flex-direction: column;
    }
    
    .welcome-section {
        order: -1;
        min-height: 40vh;
    }
    
    .login-form-section {
        min-height: 60vh;
    }
    
    .registration-card .row {
        flex-direction: column;
    }
    
    .info-panel {
        margin-top: 1rem;
    }
    
    .filter-box {
        margin-bottom: 0.5rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Modern Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutRight {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(30px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.card {
    animation: fadeIn 0.6s ease-out;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 10px;
    border: 2px solid #f8f9fa;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
}

/* Modern Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Cards */
.modern-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Badge Enhancements */
.badge {
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    border: none;
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(52, 152, 219, 0.6);
}

/* Progress Steps for Registration */
.registration-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    transition: color 0.3s ease;
}

.progress-step.active .step-label {
    color: #495057;
    font-weight: 600;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: #e9ecef;
    margin: 0 1rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

/* Form Sections */
.form-grid {
    display: grid;
    gap: 2rem;
}

.form-section {
    background: rgba(248, 249, 250, 0.5);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    /* FIX: don't block clicks */
    pointer-events: none;
    z-index: 0;
}

.form-section:hover::before {
    transform: scaleX(1);
}

.form-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-title i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.modern-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.8rem;
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.input-container {
    position: relative;
}

.input-container input,
.input-container select,
.input-container textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    /* FIX: keep controls above overlays */
    position: relative;
    z-index: 1;
}

.input-container input:focus,
.input-container select:focus,
.input-container textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-container input:focus + .input-icon,
.input-container select:focus + .input-icon {
    color: #667eea;
}

/* Photo Upload */
.photo-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border: 2px dashed rgba(102, 126, 234, 0.3);
}

.photo-upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.photo-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.photo-preview:hover {
    transform: scale(1.05);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.photo-preview i {
    font-size: 3rem;
    color: #6c757d;
}

.photo-preview span {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
}

#id_photo {
    display: none;
}

/* Declaration */
.declaration-section {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(25, 135, 84, 0.05));
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.declaration-container {
    display: flex;
    justify-content: center;
}

.custom-checkbox {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.declaration-label {
    position: relative;
    padding-left: 2.5rem;
    font-weight: 500;
    color: #495057;
    line-height: 1.6;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.declaration-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid #28a745;
    border-radius: 4px;
    background: white;
    transition: all 0.3s ease;
}

.custom-checkbox input[type="checkbox"]:checked + .declaration-label::before {
    background: #28a745;
    transform: scale(1.1);
}

.declaration-label i {
    position: absolute;
    left: 3px;
    top: 5px;
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-checkbox input[type="checkbox"]:checked + .declaration-label i {
    opacity: 1;
}

/* Amazing Buttons */
.amazing-btn {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.amazing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.amazing-btn:hover::before {
    left: 100%;
}

.amazing-btn.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.amazing-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.amazing-btn.secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

.amazing-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(108, 117, 125, 0.4);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.amazing-btn:hover .btn-icon {
    transform: translateX(3px);
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Verification Step */
.verification-container {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.verification-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: verificationPulse 2s ease-in-out infinite;
}

@keyframes verificationPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(23, 162, 184, 0); }
}

.verification-icon i {
    font-size: 2.5rem;
    color: white;
}

.verification-title {
    font-size: 2rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 0.5rem;
}

.verification-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.otp-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.otp-group {
    text-align: left;
}

.otp-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.8rem;
}

.otp-label i {
    width: 20px;
    color: #667eea;
}

.otp-input-container {
    display: flex;
    gap: 1rem;
}

.otp-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.otp-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.resend-btn {
    padding: 1rem 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border: none;
    border-radius: 12px;
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.resend-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-1px);
}

.verification-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #dc3545;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Success Step */
.success-container {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.success-animation {
    margin-bottom: 2rem;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: successBounce 0.8s ease-out;
    position: relative;
}

@keyframes successBounce {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.success-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.3) 0%, transparent 70%);
    animation: successRipple 2s ease-out infinite;
}

@keyframes successRipple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.success-icon i {
    font-size: 3rem;
    color: white;
    z-index: 2;
    position: relative;
}

.success-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.success-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #155724;
    font-weight: 500;
}

.success-message i {
    color: #28a745;
    font-size: 1.2rem;
}

/* Back Link */
.back-link-container {
    text-align: center;
    margin-top: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.back-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Registration */
@media (max-width: 768px) {
    .amazing-registration-card {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .amazing-title {
        font-size: 2rem;
    }
    
    .registration-icon {
        width: 60px;
        height: 60px;
    }
    
    .registration-icon i {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .progress-line {
        width: 40px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .amazing-btn {
        width: 100%;
        justify-content: center;
    }
    
    .otp-input-container {
        flex-direction: column;
    }
    
    .resend-btn {
        align-self: stretch;
    }
}

/* Amazing Admin Panel Styles */
.amazing-admin-container {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.amazing-admin-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: adminBackgroundMove 25s ease-in-out infinite;
}

@keyframes adminBackgroundMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, -30px) rotate(1deg); }
    50% { transform: translate(30px, -20px) rotate(-1deg); }
    75% { transform: translate(-15px, 25px) rotate(0.5deg); }
}

/* Amazing Admin Navbar */
.amazing-admin-navbar {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.brand-icon i {
    font-size: 1.5rem;
    color: white;
}

.brand-text h4 {
    color: rgb(4, 1, 1);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); 
}

.brand-text span {
    color: rgba(10, 7, 7, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
}

.admin-nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgb(19, 16, 16);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar i {
    color: white;
    font-size: 1rem;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(31, 26, 26);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    background: rgba(231, 76, 60, 0.3);
    border: 1px solid rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.logout-btn:hover {
    color: white;
    background: rgba(231, 76, 60, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.header-content {
    flex: 1;
}

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dashboard-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
}

.dashboard-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 160px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.stat-icon.pending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.stat-icon.approved {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.stat-icon.total {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.stat-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.stat-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Admin Sections */
.admin-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.title-icon.pending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.title-icon.directory {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.title-text h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.title-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 400;
}

.section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Amazing Cards */
.amazing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.amazing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Pending Requests Grid */
.pending-requests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.pending-request-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pending-request-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.request-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.request-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.request-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.request-avatar i {
    font-size: 1.5rem;
    color: white;
}

.request-info {
    flex: 1;
}

.request-info h5 {
    color: white;
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.request-association {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.request-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.request-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.detail-item.full-width {
    margin-bottom: 0.8rem;
}

.detail-item i {
    width: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.request-actions {
    display: flex;
    justify-content: center;
}

.review-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.review-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Search Panel */
.search-panel {
    margin-bottom: 2rem;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.search-header h4 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.search-header h4 i {
    color: rgba(255, 255, 255, 0.8);
}

.toggle-search-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-search-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-content {
    display: block;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.search-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-label i {
    width: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.search-input {
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.search-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.search-btn.primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.search-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.search-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Alumni Results */
.alumni-results {
    
}

.results-header {
    margin-bottom: 2rem;
}

.results-header h4 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.results-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
}

.alumni-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.alumni-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.alumni-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.alumni-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.alumni-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-avatar i {
    font-size: 1.8rem;
    color: white;
}

.alumni-info {
    flex: 1;
}

.alumni-info h5 {
    color: white;
    margin: 0 0 0.3rem 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.alumni-association {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.alumni-status {
    display: flex;
    align-items: center;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.approved {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.alumni-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.alumni-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn.edit {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    box-shadow: 0 3px 12px rgba(243, 156, 18, 0.3);
}

.action-btn.edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.action-btn.remove {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 3px 12px rgba(231, 76, 60, 0.3);
}

.action-btn.remove:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.empty-state h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Amazing Modal */
.amazing-modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.amazing-modal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 20px 20px 0 0;
}

.amazing-modal .modal-header.remove {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
}

.modal-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.modal-title-content {
    flex: 1;
}

.modal-title-content .modal-title {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
}

.modal-subtitle {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.amazing-close {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amazing-modal .modal-body {
    padding: 1.5rem 2rem;
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
}

.amazing-modal .modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.modal-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn.primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.modal-btn.danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.modal-btn.danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.modal-btn.secondary {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.modal-btn.secondary:hover {
    background: rgba(108, 117, 125, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design for Admin Panel */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        text-align: center;
    }
    
    .dashboard-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pending-requests-grid,
    .alumni-grid {
        grid-template-columns: 1fr;
    }
    
    .search-grid {
        grid-template-columns: 1fr;
    }
    
    .search-actions {
        flex-direction: column;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .admin-nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .admin-nav-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .alumni-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Amazing Directory Styles */
.amazing-directory-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.amazing-directory-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 45% 65%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: directoryBackgroundMove 30s ease-in-out infinite;
}

@keyframes directoryBackgroundMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-25px, -35px) rotate(1deg); }
    50% { transform: translate(35px, -25px) rotate(-1deg); }
    75% { transform: translate(-20px, 30px) rotate(0.5deg); }
}

/* Directory Header */
.directory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.header-content {
    flex: 1;
}

.directory-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.directory-title i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.directory-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

.directory-stats {
    display: flex;
    align-items: center;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-bubble:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Search Section */
.search-section {
    margin-bottom: 3rem;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    animation: searchPulse 3s ease-in-out infinite;
}

@keyframes searchPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.search-text h3 {
    color: white;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.search-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 400;
}

.search-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.search-toggle i {
    transition: transform 0.3s ease;
}

.search-content {
    display: block;
    margin-top: 2rem;
}

/* Alumni Section */
.alumni-section {
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-info h3 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.results-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 400;
}

.view-toggles {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.view-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.view-btn.active,
.view-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-1px);
}

/* Alumni Grid */
/* Alumni Grid */
.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Alumni Profile Card */
.alumni-profile-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden; /* Hide overflow to ensure clean layout */
    height: auto; /* Allow height to adjust based on content */
    box-sizing: border-box;
}

/* Hover Effect on Alumni Profile Card */
.alumni-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.alumni-profile-card:hover::before {
    left: 100%;
}

.alumni-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Profile Card Header */
.profile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Profile Avatar */
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* Online Indicator */
.online-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #2ecc71;
    border-radius: 50%;
    border: 2px solid white;
    animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Profile Actions */
.profile-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

.action-btn.favorite:hover {
    color: #e74c3c;
}

.action-btn.connect:hover {
    color: #3498db;
}

/* Profile Content */
.profile-content {
    margin-bottom: 2rem;
}

/* Profile Name */
.profile-name h4 {
    color: white;
    margin: 0 0 0.3rem 0;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Profile Title */
.profile-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* Profile Details */
.profile-details {
    margin-top: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.detail-item i {
    width: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Profile Footer */
.profile-footer {
    display: flex;
    gap: 1rem;
}

/* Profile Buttons */
.profile-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-btn.primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.profile-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.profile-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .alumni-grid {
        grid-template-columns: 1fr; /* Switch to single column for smaller screens */
    }

    .alumni-profile-card {
        padding: 1.5rem; /* Adjust padding for smaller screens */
    }

    .profile-btn {
        font-size: 0.8rem; /* Adjust button font size for smaller screens */
    }
}


/* Alumni List View */
.alumni-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.alumni-list-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.alumni-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.list-item-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.list-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.list-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-info {
    flex: 1;
}

.list-main h4 {
    color: white;
    margin: 0 0 0.3rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.list-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.list-details {
    margin-top: 1rem;
}

.list-detail-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.list-detail-row span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.list-detail-row i {
    width: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.list-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.list-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.list-btn.primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 3px 12px rgba(52, 152, 219, 0.3);
}

.list-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.list-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.list-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Empty States */
.empty-directory-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
    animation: emptyFloat 3s ease-in-out infinite;
}

@keyframes emptyFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.empty-directory-state h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.empty-directory-state p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.empty-suggestions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.empty-suggestions h5 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.empty-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.empty-suggestions li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.empty-suggestions li::before {
    content: '•';
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.empty-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.search-suggestions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.suggestion-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.suggestion-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Profile Modal Enhancements */
.profile-modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 2rem;
}

.modal-profile-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.modal-details .modal-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.modal-subtitle {
    opacity: 0.9;
    font-size: 0.9rem;
    font-weight: 400;
}

.profile-loading {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.detailed-profile {
    padding: 1rem;
}

.profile-showcase {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 16px;
}

.showcase-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.showcase-info h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.6rem;
    font-weight: 700;
}

.showcase-info p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.profile-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.profile-sections {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section {
    background: rgba(248, 249, 250, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.section h4 {
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section h4 i {
    color: #667eea;
}

.section p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-action-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-action-btn.primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.profile-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.profile-action-btn.secondary {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.profile-action-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.profile-action-btn.tertiary {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.profile-action-btn.tertiary:hover {
    background: rgba(108, 117, 125, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design for Directory */
@media (max-width: 768px) {
    .directory-header {
        flex-direction: column;
        text-align: center;
    }
    
    .directory-title {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-header {
        flex-direction: column;
        text-align: center;
    }
    
    .alumni-grid {
        grid-template-columns: 1fr;
    }
    
    .list-item-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .list-detail-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
    }
    
    .list-actions {
        width: 100%;
        justify-content: center;
    }
    
    .profile-footer {
        flex-direction: column;
    }
    
    .search-suggestions {
        flex-direction: column;
        align-items: center;
    }
    
    .suggestion-btn {
        width: 200px;
        justify-content: center;
    }
    
    .view-toggles {
        width: 100%;
        justify-content: center;
    }
    
    .profile-showcase {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-actions {
        flex-direction: column;
    }
    
    .profile-action-btn {
        width: 100%;
        justify-content: center;
    }
}
/* --- form interactivity hot-fix --- */
.modern-registration-container,
.amazing-registration-card,
.form-section { position: relative; }

.modern-registration-container::before,
.amazing-registration-card::before,
.form-section::before {
  pointer-events: none !important;
  z-index: 0 !important;   /* overlays stay behind */
}

.input-container,
.input-container input,
.input-container select,
.input-container textarea,
.form-control,
.form-select,
button {
  position: relative;       /* create stacking context */
  z-index: 2;               /* always above overlays */
  pointer-events: auto;     /* explicitly clickable */
}

/* Optional: if your focus ring is being clipped by overflow */
.form-section { overflow: visible; }
