 {} *{} {} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } :root { --primary-blue: #0052CC; --primary-dark: #001F3F; --accent-gold: #FFB81C; --accent-teal: #00B8D4; --success-green: #36B37E; --gradient-primary: linear-gradient(135deg, #0052CC 0%, #00B8D4 100%); --gradient-dark: linear-gradient(135deg, #001F3F 0%, #0052CC 100%); --gradient-gold: linear-gradient(135deg, #FFB81C 0%, #FF9100 100%); --gradient-success: linear-gradient(135deg, #36B37E 0%, #2D9A3E 100%); --font-primary: 'Inter', sans-serif; --font-display: 'Playfair Display', serif; --shadow-sm: 0 2px 12px rgba(0,0,0,0.08); --shadow-md: 0 8px 24px rgba(0,0,0,0.12); --shadow-lg: 0 16px 48px rgba(0,0,0,0.16); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--font-primary); color: #1a1a1a; overflow-x: hidden; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); } h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 800; line-height: 1.2; } /* Navigation */ .navbar-custom { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; } .navbar-brand-custom { font-family: var(--font-display); font-size: 1.75rem; font-weight: 900; color: var(--primary-blue); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; } .navbar-brand-custom .brand-year { color: var(--accent-gold); font-size: 1.25rem; } /* Success Hero */ .success-hero { background: var(--gradient-success); color: white; padding: 140px 0 100px; position: relative; overflow: hidden; text-align: center; } .success-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%); pointer-events: none; } .success-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%); } .success-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; } .success-icon-wrapper { width: 150px; height: 150px; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; animation: successPulse 2s ease-in-out infinite; } @keyframes successPulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); } 50% { transform: scale(1.05); box-shadow: 0 0 0 30px rgba(255, 255, 255, 0); } } .success-icon { font-size: 5rem; color: white; } .success-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; color: white; } .success-hero p { font-size: clamp(1.125rem, 2vw, 1.5rem); color: rgba(255, 255, 255, 0.95); line-height: 1.7; margin-bottom: 2rem; } .celebration-badges { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; } .celebration-badge { background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); border: 2px solid rgba(255, 255, 255, 0.3); padding: 0.75rem 1.5rem; border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; } /* Progress Complete */ .progress-complete { background: white; padding: 2rem; border-radius: 20px; box-shadow: var(--shadow-md); margin: -60px auto 60px; max-width: 900px; position: relative; z-index: 10; } .steps-container { display: flex; justify-content: space-between; align-items: center; position: relative; } .steps-container::before { content: ''; position: absolute; top: 30px; left: 12%; right: 12%; height: 3px; background: var(--success-green); z-index: 0; } .progress-step { flex: 1; text-align: center; position: relative; z-index: 1; } .step-circle { width: 60px; height: 60px; border-radius: 50%; background: var(--success-green); color: white; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; font-weight: 900; border: 4px solid white; box-shadow: 0 4px 12px rgba(54, 179, 126, 0.3); } .step-circle::before { content: '✓'; } .step-label { font-size: 0.875rem; color: var(--success-green); font-weight: 700; } /* Confirmation Section */ .confirmation-section { padding: 60px 0 100px; } .confirmation-card { background: white; border-radius: 24px; padding: 3rem; box-shadow: var(--shadow-lg); margin-bottom: 2rem; } .section-title { color: var(--primary-blue); font-size: 2rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; } .section-title i { font-size: 2.5rem; color: var(--success-green); } /* Email Check Box */ .email-check-box { background: linear-gradient(135deg, rgba(0, 82, 204, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%); border: 3px solid var(--primary-blue); border-radius: 20px; padding: 2.5rem; text-align: center; margin-bottom: 3rem; } .email-icon-large { width: 100px; height: 100px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 3rem; color: white; animation: emailBounce 2s ease-in-out infinite; } @keyframes emailBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } .email-check-box h3 { color: var(--primary-blue); font-size: 1.75rem; margin-bottom: 1rem; } .email-check-box p { color: #555; font-size: 1.125rem; margin-bottom: 1.5rem; } .email-address-display { background: white; border: 2px solid var(--primary-blue); border-radius: 12px; padding: 1rem 1.5rem; display: inline-block; font-weight: 700; color: var(--primary-blue); font-size: 1.125rem; } /* Next Steps Timeline */ .next-steps-timeline { position: relative; padding-left: 3rem; margin: 2rem 0; } .next-steps-timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--success-green), var(--primary-blue), var(--accent-gold)); } .timeline-item { position: relative; padding-bottom: 3rem; } .timeline-item:last-child { padding-bottom: 0; } .timeline-marker { position: absolute; left: -2.65rem; width: 48px; height: 48px; background: white; border: 3px solid var(--success-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; z-index: 2; } .timeline-item:nth-child(2) .timeline-marker { border-color: var(--primary-blue); } .timeline-item:nth-child(3) .timeline-marker { border-color: var(--accent-gold); } .timeline-content { background: #f8f9fa; border-radius: 16px; padding: 1.5rem; } .timeline-content h5 { color: var(--primary-dark); font-size: 1.25rem; margin-bottom: 0.75rem; } .timeline-content p { color: #555; margin: 0; line-height: 1.7; } .timeline-badge { display: inline-block; background: var(--success-green); color: white; padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.875rem; font-weight: 700; margin-top: 0.75rem; } .timeline-item:nth-child(2) .timeline-badge { background: var(--primary-blue); } .timeline-item:nth-child(3) .timeline-badge { background: var(--accent-gold); color: var(--primary-dark); } /* Interview Details Card */ .interview-details-card { background: linear-gradient(135deg, rgba(255, 184, 28, 0.05) 0%, rgba(255, 145, 0, 0.05) 100%); border: 2px solid var(--accent-gold); border-radius: 20px; padding: 2.5rem; margin: 2rem 0; } .interview-details-card h4 { color: var(--accent-gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; } .interview-details-card h4 i { font-size: 2rem; } .detail-row { display: flex; align-items: center; padding: 1rem 0; border-bottom: 1px solid rgba(255, 184, 28, 0.2); } .detail-row:last-child { border-bottom: none; } .detail-icon { width: 48px; height: 48px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--accent-gold); margin-right: 1.5rem; flex-shrink: 0; } .detail-content { flex: 1; } .detail-label { font-size: 0.875rem; color: #666; margin-bottom: 0.25rem; } .detail-value { font-size: 1.125rem; font-weight: 700; color: var(--primary-dark); } /* Preparation Checklist */ .prep-checklist { background: white; border: 2px solid #e0e0e0; border-radius: 16px; padding: 2rem; margin: 2rem 0; } .prep-checklist h5 { color: var(--primary-blue); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; } .prep-checklist h5 i { font-size: 1.5rem; } .checklist-items { list-style: none; padding: 0; margin: 0; } .checklist-items li { display: flex; align-items: start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #f0f0f0; } .checklist-items li:last-child { border-bottom: none; } .checkbox-icon { width: 28px; height: 28px; border: 2px solid #e0e0e0; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; } .checklist-text { flex: 1; } .checklist-text strong { color: var(--primary-dark); display: block; margin-bottom: 0.25rem; } .checklist-text span { color: #666; font-size: 0.95rem; } /* Action Cards */ .action-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; } .action-card { background: white; border: 2px solid #e0e0e0; border-radius: 20px; padding: 2.5rem; text-align: center; transition: all 0.3s ease; } .action-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary-blue); } .action-card-icon { width: 80px; height: 80px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2.5rem; color: white; } .action-card h5 { color: var(--primary-blue); margin-bottom: 1rem; } .action-card p { color: #555; margin-bottom: 1.5rem; } /* Buttons */ .btn-primary-custom { background: var(--gradient-primary); color: white; border: none; padding: 1rem 2.5rem; font-size: 1rem; font-weight: 700; border-radius: 12px; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.75rem; box-shadow: 0 8px 24px rgba(0, 82, 204, 0.25); text-decoration: none; } .btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 82, 204, 0.35); color: white; } .btn-secondary-custom { background: white; color: var(--primary-blue); border: 2px solid var(--primary-blue); padding: 1rem 2.5rem; font-size: 1rem; font-weight: 700; border-radius: 12px; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 0.75rem; } .btn-secondary-custom:hover { background: var(--primary-blue); color: white; } .btn-gold { background: var(--gradient-gold); color: var(--primary-dark); } .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 184, 28, 0.35); color: var(--primary-dark); } /* Support Box */ .support-box { background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); border: 2px solid #e0e0e0; border-radius: 20px; padding: 2.5rem; text-align: center; margin: 3rem 0; } .support-box h4 { color: var(--primary-blue); margin-bottom: 1.5rem; } .contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; } .contact-method { background: white; border-radius: 12px; padding: 1.5rem; box-shadow: var(--shadow-sm); } .contact-method i { font-size: 2rem; color: var(--primary-blue); margin-bottom: 1rem; } .contact-method strong { display: block; color: var(--primary-dark); margin-bottom: 0.5rem; } .contact-method a { color: var(--primary-blue); text-decoration: none; font-weight: 600; } .contact-method a:hover { text-decoration: underline; } /* Social Share */ .social-share { background: linear-gradient(135deg, rgba(0, 82, 204, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%); border-radius: 20px; padding: 2.5rem; text-align: center; margin: 2rem 0; } .social-share h5 { color: var(--primary-blue); margin-bottom: 1.5rem; } .social-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; } .social-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; text-decoration: none; transition: all 0.3s ease; } .social-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); } .social-btn.linkedin { background: #0077B5; } .social-btn.twitter { background: #1DA1F2; } .social-btn.facebook { background: #1877F2; } .social-btn.email { background: var(--primary-blue); } /* Footer */ .footer { background: var(--primary-dark); color: rgba(255, 255, 255, 0.8); padding: 60px 0 20px; margin-top: 60px; } .footer h5 { color: white; font-size: 1.125rem; margin-bottom: 1rem; } .footer-links { list-style: none; padding: 0; } .footer-links li { margin-bottom: 0.5rem; } .footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--accent-gold); } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 2rem; padding-top: 1.5rem; text-align: center; font-size: 0.875rem; } /* Confetti Animation */ .confetti { position: fixed; width: 10px; height: 10px; background: var(--accent-gold); position: absolute; animation: confetti-fall 3s linear; } @keyframes confetti-fall { to { transform: translateY(100vh) rotate(360deg); opacity: 0; } } /* Responsive */ @media (max-width: 768px) { .success-hero { padding: 120px 0 80px; } .progress-complete { margin: -40px 1rem 40px; padding: 1.5rem 1rem; } .steps-container { flex-direction: column; gap: 1rem; } .steps-container::before { display: none; } .confirmation-card { padding: 2rem 1.5rem; } .next-steps-timeline { padding-left: 2.5rem; } .timeline-marker { left: -2.4rem; width: 40px; height: 40px; font-size: 1.25rem; } .action-cards { grid-template-columns: 1fr; } .contact-methods { grid-template-columns: 1fr; } .celebration-badges { flex-direction: column; align-items: center; } } @keyframes confettiFall { 0% { transform: translateY(-10px) rotate(0deg); opacity: 1; } 100% { transform: translateY(100vh) rotate(720deg); opacity: 0; } } .confetti { position: fixed; width: 10px; height: 10px; top: -10px; z-index: 9999; pointer-events: none; }
