body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px 40px;
        }
        
/* Scroll to Top Button */
.scroll-top-btn {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(135deg, #667eea, #764ba2);
border: none;
color: white;
font-size: 1.2rem;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 1000;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.scroll-top-btn.show {
opacity: 1;
visibility: visible;
}
.scroll-top-btn:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}
        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }
        
        .card-header {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 15px 15px 0 0 !important;
            border: none;
            padding: 20px;
        }
        .dropdown-item.active, .dropdown-item:active{
           color:black !important;
           background:white !important;

       }
        .btn-primary {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            border-radius: 10px;
            padding: 10px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        .btn-success {
            background: linear-gradient(135deg, #56ab2f, #a8e6cf);
            border: none;
            border-radius: 10px;
            padding: 8px 16px;
            font-weight: 600;
        }
        
        .btn-danger {
            background: linear-gradient(135deg, #ff416c, #ff4b2b);
            border: none;
            border-radius: 10px;
            padding: 5px 10px;
        }
        
        .task-item {
            background: white;
            border: 2px solid transparent;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 15px;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .task-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .task-item:hover::before {
            left: 100%;
        }
        
        .task-item:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            border-color: rgba(102, 126, 234, 0.3);
        }
        
        .task-item.selected {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
        }
        
        .task-item.priority {
            border-left: 5px solid #ff416c;
        }

        .task-item.priority::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 50px 50px 0;
            border-color: transparent #ff416c transparent transparent;
            opacity: 0.1;
        }

        .task-header {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

        .task-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
            flex-grow: 1;
        }

        .task-description {
            color: #6c757d;
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .task-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .task-delete-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .task-item:hover .task-delete-btn {
            opacity: 1;
        }

        .selected-indicator {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .progress-ring {
            width: 48px;
            height: 42px;
            border-radius: 50%;
            background: conic-gradient(#667eea var(--progress, 0%), #e9ecef 0%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            position: relative;
        }

        .progress-ring::before {
            content: '';
            position: absolute;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: white;
        }

        .progress-text {
            position: relative;
            z-index: 1;
            font-size: 0.75rem;
            font-weight: bold;
            color: #667eea;
        }

        /* Pagination Styles */
        .pagination-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            gap: 10px;
        }

        .pagination-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 8px 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .pagination-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .pagination-btn:disabled {
            background: linear-gradient(135deg, #ccc, #ddd);
            cursor: not-allowed;
            opacity: 0.6;
        }

        .pagination-info {
            background: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            color: #667eea;
            border: 2px solid #667eea;
        }

        .tasks-header {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
        }

        .tasks-header > div:first-child {
            flex-wrap: wrap;
        }

        .tasks-header > div:last-child {
            display: flex;
            gap: 10px;
        }

        .tasks-count {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .timer-circle {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: conic-gradient(#667eea var(--progress, 0deg), #f0f0f0 0deg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto;
            position: relative;
        }
        
        .timer-display {
            font-size: 3rem;
            font-weight: bold;
            color: #667eea;
            background: white;
            border-radius: 50%;
            width: 180px;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            z-index: 1;
        }
        
        .badge {
            font-size: 0.8em;
            padding: 5px 10px;
            border-radius: 20px;
        }
        
        .modal-content {
            border-radius: 15px;
            border: none;
        }
        
        .modal-header {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 15px 15px 0 0;
            border: none;
        }
        
        .form-control, .form-select {
            border-radius: 10px;
            border: 2px solid #e9ecef;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }
        
        .timer-controls {
            text-align: center;
            margin: 20px 0;
        }
        
        .timer-controls .btn {
            margin: 0 10px;
            min-width: 120px;
        }
        
        .counter-card {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 10px;
            padding: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .counter-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        
        .counter-card h6 {
            margin-bottom: 5px;
            opacity: 0.9;
            font-size: 0.85rem;
        }
        
        .counter-card h3 {
            font-size: 1.5rem;
            margin: 0;
        }
        
        .dropdown-menu {
            min-width: 250px;
        }
        
        .dropdown-item input {
            width: 60px;
            margin-left: 10px;
        }
        
        .dropdown-item label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        
        .form-check.form-switch {
            padding: 10px 0;
        }

        /* Preset radio button styles */
        .preset-option {
            cursor: pointer;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            background: white;
        }

        .preset-option:hover {
            border-color: #667eea;
            background: rgba(102, 126, 234, 0.05);
        }

        .preset-option input[type="radio"] {
            margin-right: 10px;
            cursor: pointer;
        }

        .preset-option input[type="radio"]:checked {
            accent-color: #667eea;
        }

        .preset-option.selected {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
        }

        .preset-details {
            font-size: 0.85rem;
            color: #6c757d;
            margin-left: 28px;
        }

        .custom-inputs {
            margin-left: 28px;
            margin-top: 10px;
        }

        .custom-inputs .input-group {
            margin-bottom: 8px;
        }

        .custom-inputs label {
            width: 110px;
            font-size: 0.9rem;
        }

        .custom-inputs input {
            width: 80px;
        }

        .empty-state {
            text-align: center;
            padding: 40px 20px;
            color: #6c757d;
        }

        .empty-state i {
            font-size: 4rem;
            color: #667eea;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .empty-state h5 {
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .tasks-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .task-item {
            background: white;
            border: 2px solid transparent;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 0;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        /* Information Section Styles */
        .info-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            background: white;
            transition: all 0.3s ease;
        }

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

        .info-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #f0f0f0;
        }

        .icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            flex-shrink: 0;
        }

        .tomato-icon {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .steps-icon {
            background: linear-gradient(135deg, #56ab2f, #a8e6cf);
        }

        .features-icon {
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }

        .mistakes-icon {
            background: linear-gradient(135deg, #ff416c, #ff4b2b);
        }

        .info-header h3 {
            margin: 0;
            color: #2c3e50;
            font-weight: 700;
            font-size: 1.75rem;
        }

        .lead-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #34495e;
            font-weight: 500;
        }

        .info-card p {
            color: #5a6c7d;
            line-height: 1.8;
            font-size: 1rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border-left: 4px solid #667eea;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            gap: 15px;
        }

        .highlight-icon {
            font-size: 2rem;
            color: #667eea;
            flex-shrink: 0;
        }

        .highlight-box h5 {
            color: #2c3e50;
            font-weight: 600;
        }

        .highlight-box p {
            margin: 0;
        }

        .steps-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .step-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 20px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(86, 171, 47, 0.05), rgba(168, 230, 207, 0.05));
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            border-color: #56ab2f;
            background: linear-gradient(135deg, rgba(86, 171, 47, 0.1), rgba(168, 230, 207, 0.1));
            transform: translateX(5px);
        }

        .step-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #56ab2f, #a8e6cf);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(86, 171, 47, 0.3);
        }

        .step-content h5 {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1.15rem;
        }

        .step-content p {
            margin: 0;
            color: #5a6c7d;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .feature-item {
            padding: 25px;
            border-radius: 12px;
            background: white;
            border: 2px solid #f0f0f0;
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-item:hover {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
        }

        .feature-item i {
            font-size: 2.5rem;
            color: #667eea;
            margin-bottom: 15px;
            display: block;
        }

        .feature-item h6 {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .feature-item p {
            margin: 0;
            font-size: 0.95rem;
            color: #6c757d;
        }

        .mistakes-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mistake-item {
            display: flex;
            gap: 15px;
            padding: 18px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(255, 65, 108, 0.05), rgba(255, 75, 43, 0.05));
            border-left: 4px solid #ff416c;
            transition: all 0.3s ease;
        }

        .mistake-item:hover {
            background: linear-gradient(135deg, rgba(255, 65, 108, 0.1), rgba(255, 75, 43, 0.1));
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(255, 65, 108, 0.15);
        }

        .mistake-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff416c, #ff4b2b);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .mistake-content h6 {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 1.05rem;
        }

        .mistake-content p {
            margin: 0;
            color: #5a6c7d;
        }

        @media (max-width: 991px) {
            .container {
                padding: 20px;
            }
            
            .col-lg-6:first-child {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .tasks-grid {
                grid-template-columns: 1fr;
            }
            
            .counter-card h3 {
                font-size: 1.3rem;
            }
            
            .counter-card h6 {
                font-size: 0.75rem;
            }
            
            .timer-display {
                font-size: 2rem;
            }
            
            .timer-circle {
                width: 200px;
                height: 200px;
            }
            
            .timer-display {
                width: 140px;
                height: 140px;
                font-size: 2.5rem;
            }
            
            .timer-controls .btn {
                min-width: 100px;
                margin: 5px;
            }
            
            .task-item {
                padding: 15px;
            }
            
            .progress-ring {
                width: 40px;
                height: 40px;
            }
            
            .progress-ring::before {
                width: 30px;
                height: 30px;
            }

            .tasks-header {
                text-align: center;
            }
            
            .tasks-header > div:last-child {
                flex-direction: column;
            }
            
            .tasks-header .btn {
                width: 100%;
            }

            .info-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .info-header h3 {
                font-size: 1.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .step-item {
                flex-direction: column;
                text-align: center;
            }
            
            .highlight-box {
                flex-direction: column;
                text-align: center;
            }
            
            .mistake-item {
                flex-direction: column;
                text-align: center;
                border-left: none;
                border-top: 4px solid #ff416c;
            }
        }

        @media (min-width: 1400px) {
            .container {
                max-width: 1400px;
            }
        }

        .form-check.form-switch {
            padding: 10px 0;
            margin-left: 7% !important;
        }

        /* FAQ Icon */
.faq-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

/* FAQ Accordion Styles */
.accordion-flush .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.faq-item {
    background: white;
    border: 2px solid #f0f0f0 !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.faq-button {
    background: white;
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: none !important;
}

.faq-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
}

.faq-button:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.faq-button i {
    color: #667eea;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) i {
    transform: scale(1.1);
}

.faq-button::after {
    background-image: none;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #667eea;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    color: #667eea;
}

.faq-body {
    padding: 20px 25px 25px 60px;
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
    border-top: 1px solid #f0f0f0;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Smooth animation for accordion */
.accordion-collapse {
    transition: height 0.35s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .faq-button {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .faq-button i {
        font-size: 1rem;
        margin-right: 10px !important;
    }
    
    .faq-body {
        padding: 15px 20px 20px 20px;
        font-size: 0.95rem;
    }
}


/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
    padding: 60px 0 0;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
}

.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 3px !important;
}

/* .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px !important;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
} */

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 9px !important;
    width: 50px;
    margin-bottom: -12px !important;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.footer-text {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 5px;
}

.footer-links a i {
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-contact i {
    color: #667eea;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #667eea;
}

/* Newsletter Box */
.newsletter-box {
    margin-top: 20px;
}

.newsletter-box .input-group {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-box .form-control {
    border: none;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-box .form-control:focus {
    box-shadow: none;
    background: white;
}

.newsletter-box .btn-primary {
    border: none;
    padding: 10px 20px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links li {
    display: inline-block;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-links li:last-child a {
    border-right: none;
    padding-right: 0;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 50px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-bottom {
        text-align: center;
        padding: 20px 0;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
        gap: 10px;
    }

