.gradient-bg {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-floating {
    position: relative;
}

.form-floating input,
.form-floating textarea,
.form-floating select {
    padding: 1rem 0.75rem 0.5rem;
}

.form-floating label {
    position: absolute;
    top: 0;
    left: 0.75rem;
    height: 100%;
    padding: 1rem 0;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.form-floating input:focus~label,
.form-floating input:not(:placeholder-shown)~label,
.form-floating textarea:focus~label,
.form-floating textarea:not(:placeholder-shown)~label,
.form-floating select:focus~label,
.form-floating select:not([value=""])~label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    font-size: 0.75rem;
}

.success-animation {
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.container-fluid {
    padding: 2rem;
    background: #f8f9fc;
    min-height: 100vh;
}

.d-sm-flex.align-items-center {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e3e6f0;
}

.h3.text-gray-800 {
    color: #2c3e50 !important;
    font-weight: 700;
    font-size: 2rem;
}

.text-muted {
    font-size: 0.9rem;
    color: #6c757d !important;
}

/* Statistics Cards */
.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card.shadow {
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.25rem 2rem 0 rgba(58, 59, 69, 0.25);
}

/* Border Colors for Cards */
.border-left-primary {
    border-left: 4px solid #4e73df !important;
    background: linear-gradient(45deg, #ffffff 0%, #f8f9ff 100%);
}

.border-left-success {
    border-left: 4px solid #1cc88a !important;
    background: linear-gradient(45deg, #ffffff 0%, #f0fff8 100%);
}

.border-left-info {
    border-left: 4px solid #36b9cc !important;
    background: linear-gradient(45deg, #ffffff 0%, #f0fcff 100%);
}

.border-left-warning {
    border-left: 4px solid #f6c23e !important;
    background: linear-gradient(45deg, #ffffff 0%, #fffcf0 100%);
}

/* Card Body */
.card-body {
    padding: 1.5rem;
}


.text-xs {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.text-primary {
    color: #4e73df !important;
}

.text-success {
    color: #1cc88a !important;
}

.text-info {
    color: #36b9cc !important;
}

.text-warning {
    color: #f6c23e !important;
}

.text-gray-800 {
    color: #2c3e50 !important;
}

.text-gray-300 {
    color: #dee2e6 !important;
}

/* Statistics Numbers */
.h5.font-weight-bold {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #2c3e50;
}

/* Icons */
.col-auto i {
    font-size: 2.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.card:hover .col-auto i {
    opacity: 1;
    transform: scale(1.1);
}

/* Chart Cards */
.card-header {
    border-bottom: 1px solid #e3e6f0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 15px 15px 0 0;
    padding: 1.25rem 1.5rem;
}

.card-header h6 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

/* Chart Areas */
.chart-area {
    position: relative;
    height: 300px;
    padding: 1rem 0;
}

.chart-pie {
    position: relative;
    height: 250px;
    margin: 1rem 0;
}

#myAreaChart,
#myPieChart {
    width: 100% !important;
    height: 100% !important;
}

/* Pie Chart Legend */
.mt-4.text-center.small {
    padding: 1rem;
    background: #f8f9fc;
    border-radius: 10px;
    margin-top: 1rem;
}

.mt-4.text-center.small span {
    display: inline-block;
    margin: 0.25rem 0.5rem;
    font-weight: 600;
}

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
}

.table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
    border: none;
    padding: 1rem 0.75rem;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background-color: #f8f9fc;
    transform: scale(1.01);
}

.table td {
    padding: 1rem 0.75rem;
    border-top: 1px solid #e3e6f0;
    border-bottom: none;
    vertical-align: middle;
}

/* Badges */
.badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.badge-primary {
    background: linear-gradient(45deg, #4e73df, #224abe);
    color: white;
}

.badge-success {
    background: linear-gradient(45deg, #1cc88a, #13855c);
    color: white;
}

.badge-info {
    background: linear-gradient(45deg, #36b9cc, #258391);
    color: white;
}


.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    border: 2px solid #4e73df;
    color: #4e73df;
}

.btn-outline-primary:hover {
    background: #4e73df;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
}

/* Empty State */
.text-center.py-4 {
    padding: 3rem 1rem;
    background: #f8f9fc;
    border-radius: 10px;
}

.text-center.py-4 p {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding: 1rem;
    }

    .h3.text-gray-800 {
        font-size: 1.5rem;
    }

    .h5.font-weight-bold {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 1rem;
    }

    .chart-area,
    .chart-pie {
        height: 200px;
    }
}

/* Animation for Loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease forwards;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

.card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #4e73df, #224abe);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #224abe, #1a365d);
}


.activity-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.25rem 2rem 0 rgba(58, 59, 69, 0.25);
}

/* Card Header */
.modern-card-header {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    padding: 1.5rem;
    color: white;
}

.modern-card-header h6 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-card-header i {
    font-size: 1.1rem;
}

/* Modern Table Container */
.modern-table-container {
    overflow: hidden;
}

.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
}

/* Table Header */
.modern-table thead {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.modern-table thead th {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: white;
    border: none;
    text-align: left;
    position: relative;
}

.modern-table thead th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

/* Table Body */
.modern-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e3e6f0;
}

.modern-table tbody tr:hover {
    background: linear-gradient(90deg, #f8f9fc 0%, #ffffff 50%, #f8f9fc 100%);
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modern-table tbody tr:last-child {
    border-bottom: none;
}

.modern-table td {
    padding: 1.25rem 1.25rem;
    vertical-align: middle;
    border: none;
    position: relative;
}

/* Employee Name Styling */
.employee-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

/* Theme Styling */
.theme-text {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 300px;
}

/* Status Badge */
.modern-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    background: linear-gradient(45deg, #4e73df, #224abe);
    color: white;
    box-shadow: 0 2px 4px rgba(78, 115, 223, 0.3);
    transition: all 0.3s ease;
}

.modern-status-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(78, 115, 223, 0.4);
}

.modern-status-badge.terdaftar {
    background: linear-gradient(45deg, #1cc88a, #13855c);
    box-shadow: 0 2px 4px rgba(28, 200, 138, 0.3);
}

.modern-status-badge.pending {
    background: linear-gradient(45deg, #f6c23e, #dda20a);
    box-shadow: 0 2px 4px rgba(246, 194, 62, 0.3);
}

/* Date Styling */
.date-text {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-text i {
    color: #4e73df;
    font-size: 0.8rem;
}

/* Action Button */
.modern-action-btn {
    background: linear-gradient(45deg, #36b9cc, #258391);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.modern-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(54, 185, 204, 0.4);
    background: linear-gradient(45deg, #258391, #1d6671);
    color: white;
}

.modern-action-btn:active {
    transform: translateY(0);
}

.modern-action-btn i {
    font-size: 0.8rem;
}

.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.custom-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

.modal-header {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: between;
    align-items: center;
}

.modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    justify-content: flex-end;
}

.btn-close-modal {
    background: linear-gradient(45deg, #6c757d, #495057);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-close-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4e73df;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Detail Cards in Modal */
.detail-card {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.detail-card.border-left-primary {
    border-left: 4px solid #4e73df;
}

.detail-card.border-left-success {
    border-left: 4px solid #1cc88a;
}

.detail-card.border-left-info {
    border-left: 4px solid #36b9cc;
}

.detail-card-body {
    padding: 1.5rem;
}

.detail-card h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-card h6.text-primary {
    color: #4e73df;
}

.detail-card h6.text-success {
    color: #1cc88a;
}

.detail-card h6.text-info {
    color: #36b9cc;
}

.detail-item {
    margin-bottom: 0.75rem;
}

.detail-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.detail-item span {
    color: #495057;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-table {
        font-size: 0.85rem;
    }

    .modern-table thead th,
    .modern-table td {
        padding: 0.75rem 0.5rem;
    }

    .theme-text {
        max-width: 200px;
    }

    .modern-action-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .modern-status-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {

    .modern-table thead th:nth-child(2),
    .modern-table td:nth-child(2) {
        display: none;
    }

    .theme-text {
        max-width: 150px;
    }
}

.pagination-wrapper {
    margin-top: 24px;
    padding-top: 20px;
    margin-bottom: 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: center;
}

/* Laravel Pagination Styles */
.pagination-wrapper nav {
    display: flex;
    justify-content: center;
}

.pagination-wrapper .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
    align-items: center;
}

.pagination-wrapper .pagination li {
    display: flex;
}

.pagination-wrapper .pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 6px 12px;
    color: #64748b;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: white;
}

.pagination-wrapper .pagination .page-link:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #475569;
}

.pagination-wrapper .pagination .page-item.active .page-link {
    background: #0891b2;
    border-color: #0891b2;
    color: white;
}

.pagination-wrapper .pagination .page-item.active .page-link:hover {
    background: #0e7490;
    border-color: #0e7490;
}

.pagination-wrapper .pagination .page-item.disabled .page-link {
    color: #cbd5e1;
    background: #f8fafc;
    border-color: #f1f5f9;
    cursor: not-allowed;
}

.pagination-wrapper .pagination .page-item.disabled .page-link:hover {
    color: #cbd5e1;
    background: #f8fafc;
    border-color: #f1f5f9;
}

/* Previous/Next arrows */
.pagination-wrapper .pagination .page-link[rel="prev"],
.pagination-wrapper .pagination .page-link[rel="next"] {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .pagination-wrapper .pagination .page-link {
        min-width: 32px;
        height: 32px;
        padding: 4px 8px;
        font-size: 13px;
    }

    .pagination-wrapper {
        margin-top: 16px;
        padding-top: 16px;
    }
}

.modern-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4299e1, #667eea, #764ba2, #f093fb, #4299e1);
    background-size: 300% 100%;
    animation: gradientShift 8s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4299e1, #667eea);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 80px;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #cbd5e0;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    color: #ffffff;
    background: rgba(66, 153, 225, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.1rem;
    margin-right: 1rem;
    color: #4299e1;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: #67d3f0;
    transform: scale(1.2);
}

/* Links Section */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 0.5rem 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4299e1, #667eea);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(8px);
}

/* Social Media Section */
.social-media {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
    z-index: -1;
}

.social-link.facebook {
    background: linear-gradient(135deg, #3b5998, #8b9dc3);
}

.social-link.facebook::before {
    background: linear-gradient(135deg, #8b9dc3, #3b5998);
    transform: translateY(100%);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #14171a);
}

.social-link.twitter::before {
    background: linear-gradient(135deg, #14171a, #1da1f2);
    transform: translateY(100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #833ab4, #f09433);
}

.social-link.instagram::before {
    background: linear-gradient(135deg, #f09433, #833ab4, #e4405f);
    transform: translateY(100%);
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4299e1, transparent);
}

.copyright {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.copyright strong {
    color: #ffffff;
    font-weight: 600;
}

/* Decorative Elements */
.footer-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.footer-decoration:nth-child(2) {
    top: 50%;
    left: 0;
    width: 150px;
    height: 150px;
    animation-delay: -3s;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .social-media {
        justify-content: center;
    }

    .contact-item {
        padding: 0.5rem;
    }

    .footer-decoration {
        width: 100px;
        height: 100px;
    }

    .footer-decoration:nth-child(2) {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link i {
        font-size: 1.1rem;
    }
}

/* Loading Animation for Demo */
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}