/* Custom Components */
.btn-glow {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 77, 46, 0.1);
}

.process-step {
    @apply text-center p-6 rounded-xl bg-white/5;
}

.step-number {
    @apply w-16 h-16 rounded-full flex items-center justify-center text-2xl font-bold mx-auto;
}

.stat {
    @apply bg-white/10 p-6 rounded-xl;
}

/* Animations */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

/* Process Step Animations */
.process-step {
    @apply p-8 rounded-2xl bg-white shadow-lg text-center transform transition-all duration-300;
    border: 2px solid transparent;
}

.process-step:hover {
    @apply shadow-xl -translate-y-2;
    border-color: #FFD700;
}

.step-number {
    @apply w-16 h-16 rounded-full flex items-center justify-center text-2xl font-bold mx-auto mb-6;
    transition: all 0.3s ease;
}

.step-icon {
    @apply mb-6;
    transition: all 0.3s ease;
}

/* Floating Animation */
@keyframes float-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

@keyframes float-3 {
    0%, 100% { transform: translateY(5px); }
    50% { transform: translateY(-15px); }
}

.animate-float-1 {
    animation: float-1 6s infinite ease-in-out;
}

.animate-float-2 {
    animation: float-2 8s infinite ease-in-out;
}

.animate-float-3 {
    animation: float-3 7s infinite ease-in-out;
}

/* Floating Animation */
@keyframes float-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

@keyframes float-3 {
    0%, 100% { transform: translateY(5px); }
    50% { transform: translateY(-15px); }
}

.animate-float-1 {
    animation: float-1 6s infinite ease-in-out;
}

.animate-float-2 {
    animation: float-2 8s infinite ease-in-out;
}

.animate-float-3 {
    animation: float-3 7s infinite ease-in-out;
}

/* Hover Effects */
.process-step {
    @apply relative bg-white rounded-2xl shadow-lg p-8 transform transition-all duration-300;
    border: 2px solid transparent;
}

.process-step:hover {
    @apply shadow-xl -translate-y-2;
    border-color: #FFD700;
}

.step-number {
    @apply bg-gradient-to-br from-[#FFD700] to-[#FFEC8E] text-[#004D2E] w-16 h-16 rounded-full flex items-center justify-center text-2xl font-bold mx-auto mb-6;
    transition: all 0.3s ease;
}

.step-icon {
    @apply text-[#006B3D] text-6xl mb-6;
    transition: all 0.3s ease;
}

/* Footer visibility fix */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  body > * {
    flex-shrink: 0;
  }
  
  main {
    flex: 1 0 auto;
  }
  
footer {
    position: relative !important;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f1f1f !important; /* <-- Change to black */
    color: white !important;
    display: block !important;
    visibility: visible !important;
    z-index: 100 !important;
  }

  /* Custom Hover Effects */
.hover-gold:hover {
    color: #FFD700;
    transition: color 0.3s ease;
}

.hover-light-gold:hover {
    color: #FFEC8E;
    transition: color 0.3s ease;
}

/* Enhanced Registration Button */
.btn-glow-register {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Registration Form Styles */
.registration-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(245,245,245,0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.form-input {
    @apply w-full px-6 py-4 border-2 border-[#004D2E]/20 rounded-xl focus:border-[#FFD700] focus:ring-2 focus:ring-[#FFEC8E] transition-all;
}

.form-label {
    @apply block text-lg font-semibold text-[#004D2E] mb-3;
}

.validation-error {
    @apply text-red-500 text-sm mt-2 font-medium;
}
/* Enhanced Animations */
@keyframes text-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes underline {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.animate-text-gradient {
    background-size: 200% auto;
    animation: text-gradient 3s linear infinite;
}

.animate-underline {
    animation: underline 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-shine {
    animation: shine 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-delayed {
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

/* Floating Labels */
.form-label-floating {
    @apply absolute left-4 top-3 text-[#004D2E]/60 pointer-events-none 
           transition-all duration-300 peer-placeholder-shown:text-lg 
           peer-placeholder-shown:top-4 peer-placeholder-shown:text-[#004D2E]/50
           peer-focus:top-3 peer-focus:text-sm peer-focus:text-[#004D2E]/80;
}

.form-input:focus ~ .form-label-floating {
    @apply text-sm text-[#004D2E]/80;
}

/* Enhanced Input Fields */
.form-input {
    @apply w-full px-6 py-4 bg-white/90 border-0 rounded-xl 
           shadow-md text-[#004D2E] text-lg font-medium
           transition-all duration-300 
           hover:bg-white hover:shadow-lg
           focus:ring-0 focus:bg-white focus:shadow-xl;
}

/* Enhanced Form Elements */
.form-input {
    @apply w-full px-6 py-4 bg-white/95 border-0 rounded-xl 
           shadow-lg text-[#004D2E] text-lg font-medium
           transition-all duration-300 
           hover:bg-white hover:shadow-xl
           focus:ring-0 focus:bg-white focus:shadow-2xl;
}

.form-label-floating {
    @apply absolute left-4 top-3 text-[#004D2E]/60 pointer-events-none 
           transition-all duration-300 peer-placeholder-shown:text-lg 
           peer-placeholder-shown:top-4 peer-placeholder-shown:text-[#004D2E]/50
           peer-focus:top-3 peer-focus:text-sm peer-focus:text-[#004D2E]/80
           flex items-center;
}

/* Enhanced Focus Effects */
.form-input:focus ~ .form-label-floating {
    @apply text-sm text-[#004D2E]/80;
}

/* Icon Transitions */
.form-label-floating i {
    @apply transition-all duration-300;
}

.form-input:focus ~ .form-label-floating i {
    @apply text-[#FFD700] scale-110;
}

/* Validation Indicators */
.form-input:valid:not(:placeholder-shown) {
    @apply border-2 border-[#006B3D]/20;
}

.form-input:valid:not(:placeholder-shown) ~ .form-label-floating {
    @apply text-sm text-[#006B3D]/80;
}

.form-input:valid:not(:placeholder-shown) ~ .form-label-floating i {
    @apply text-[#006B3D]/80;
}

/*Dasboard*/

.dashboard-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.case-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.case-container h2 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.table-responsive {
    overflow-x: auto;
}

/* Table Styling */
.case-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.case-table th {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid #e9ecef;
}

.case-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.case-table tbody tr {
    transition: background-color 0.2s ease;
}

.case-table tbody tr:hover {
    background-color: #f1f8fe;
}

/* Status Indicators */
.status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pending {
    background-color: #ffe9b3;
    color: #b7791f;
}

.investigation {
    background-color: #c3dafe;
    color: #4c51bf;
}

.additional {
    background-color: #fed7d7;
    color: #c53030;
}

.approved {
    background-color: #c6f6d5;
    color: #2f855a;
}

.denied {
    background-color: #fed7d7;
    color: #c53030;
}

/* Buttons */
.review-btn, .download-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-btn {
    background-color: #3498db;
    color: white;
}

.review-btn:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

.download-btn {
    background-color: #2ecc71;
    color: white;
}

.download-btn:hover {
    background-color: #27ae60;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .case-table th, .case-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .status {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .review-btn, .download-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Login */
:root {
    --primary-color: #4a6cf7;
    --primary-hover: #3a5bd9;
    --text-color: #2c3e50;
    --light-text: #6c757d;
    --border-color: #e9ecef;
    --error-color: #e74c3c;
    --input-bg: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-card {
    width: 100%;
    max-width: 450px;
    background-color: white;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.login-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.login-header h1 {
    color: var(--text-color);
    font-size: 28px;
    margin-bottom: 10px;
}

.login-header p {
    color: var(--light-text);
    font-size: 16px;
    margin: 0;
}

.login-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.user-icon {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E") no-repeat center center;
}

.password-icon {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
}

.input-with-icon input {
    width: 100%;
    padding: 15px 15px 15px 46px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--input-bg);
    transition: all 0.3s ease;
}

.input-with-icon input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
    background-color: white;
}

.input-with-icon input::placeholder {
    color: #adb5bd;
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E") no-repeat center center;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.toggle-password:hover {
    opacity: 0.8;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.remember-me label {
    font-size: 14px;
    color: var(--light-text);
    cursor: pointer;
}

.forgot-password {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(74, 108, 247, 0.2);
}

.login-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(74, 108, 247, 0.3);
}

.login-button:active {
    transform: translateY(0);
}

.login-footer {
    padding: 20px 30px;
    text-align: center;
    background-color: #f8f9fa;
    border-top: 1px solid var(--border-color);
}

.login-footer p {
    margin: 0;
    color: var(--light-text);
    font-size: 14px;
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-card {
        border-radius: 12px;
    }
    
    .login-header {
        padding: 25px 20px;
    }
    
    .login-header h1 {
        font-size: 24px;
    }
    
    .login-form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .input-with-icon input {
        padding: 12px 12px 12px 42px;
        font-size: 15px;
    }
    
    .login-button {
        padding: 12px 16px;
    }
}

/* Animated Gradient Text */
.bg-size-200 {
    background-size: 200% auto;
}

.bg-pos-0 {
    background-position: 0% center;
}

.bg-pos-100 {
    background-position: 100% center;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hover Effects */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #FFD700, #006B3D);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Add to your existing CSS */
.review-container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.download-btn {
    background-color: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
}

.summary-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

pre {
    white-space: pre-wrap;
    font-family: inherit;
}

.status.approved {
    background-color: #4CAF50;
    color: white;
}

.status.pending {
    background-color: #ff9800;
    color: white;
}