/* Global Styles */
:root {
    --primary-color: #F1C245; /* Updated */
    --secondary-color: #F1C245;
    --accent-color: #F1C245;
    --dark-color: #34495e;
    --light-color: #ecf0f1;
    --success-color: #27ae60;
    --danger-color: #F1C245;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --text-color: #333;
    --text-light: #7f8c8d;
    --bg-color: #f9f9f9;
    --white: #fff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--dark-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #2c3e50;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 100px;
}

.multi-select select[multiple] {
    height: auto;
    min-height: 100px;
}

.multi-select small {
    display: block;
    color: var(--text-light);
    font-size: 12px;
    margin-top: 5px;
}

.star {
    color: #f1c40f;
    font-size: 18px;
}

.star.empty {
    color: #ddd;
}

.star.half {
    position: relative;
}

.star.half:before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #f1c40f;
}

.verified-badge {
    display: inline-block;
    padding: 3px 8px;
    background-color: var(--success-color);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 5px;
}

.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 5px;
}

.badge.verified {
    background-color: var(--success-color);
    color: white;
}

.badge.not-verified {
    background-color: var(--danger-color);
    color: white;
}

.signature-badge {
    display: inline-block;
    padding: 3px 8px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 5px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.user-actions {
    display: flex;
    align-items: center;
}

.user-actions a {
    margin-left: 15px;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 30px 0;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Search Form Styles */
.search-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

/* Chef Cards Styles */
.chef-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.chef-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.chef-card:hover {
    transform: translateY(-5px);
}

.chef-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--dark-color);
    color: var(--white);
}

.chef-photo {
    height: 200px;
    overflow: hidden;
}

.chef-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-photo .no-photo {
    width: 100%;
    height: 100%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.chef-info {
    padding: 15px;
}

.chef-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.chef-info p {
    margin-bottom: 8px;
}

.more-cuisines {
    color: var(--text-light);
    font-size: 12px;
}

/* Chef Profile Styles */
.chef-profile {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.profile-header {
    display: flex;
    margin-bottom: 30px;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 30px;
    position: relative;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-photo .no-photo {
    width: 100%;
    height: 100%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.rating-overview {
    margin-bottom: 15px;
}

.avg-rating {
    font-size: 24px;
    font-weight: bold;
}

.quick-info p {
    margin-bottom: 8px;
}

.profile-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.profile-section:last-child {
    border-bottom: none;
}

.profile-section h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.expertise-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.expertise-item ul {
    list-style: none;
}

.expertise-item ul li {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cuisine-list .rating {
    font-size: 14px;
}

.menu-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.menu-item, .gallery-item {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    position: relative;
}

.menu-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

.gallery-item .caption {
    margin-top: 5px;
    font-size: 14px;
    color: var(--text-light);
}

.pricing-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
}

.pricing-card h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 10px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.reviews-list {
    margin-top: 20px;
}

.review-item {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

.add-review {
    margin-top: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.add-review h3 {
    margin-bottom: 15px;
}

/* Dashboard Styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.dashboard-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.dashboard-card h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.profile-card .profile-header {
    display: flex;
    margin-bottom: 20px;
}

.profile-card .profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.profile-card .profile-info h3 {
    margin-bottom: 5px;
}

.profile-card .profile-details {
    margin-bottom: 20px;
}

.profile-card .profile-details p {
    margin-bottom: 8px;
}

.stats-card .stat {
    margin-bottom: 15px;
}

.stats-card .stat h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-light);
}

.stats-card .stat p {
    font-size: 24px;
    font-weight: bold;
}

.cuisines-list, .reviews-list, .menu-list {
    margin-bottom: 20px;
}

.cuisine-item, .review-item, .menu-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cuisine-item:last-child, .review-item:last-child, .menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cuisine-item h4 {
    margin-bottom: 5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.gallery-item {
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 15px;
    }
    
    .nav-links li {
        margin: 0 10px;
    }
    
    .profile-header {
        flex-direction: column;
    }
    
    .profile-photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.scrollable-checkbox-container {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    background: white;
}

.scrollable-checkbox-list {
    max-height: 200px;
    overflow-y: auto;
    padding: 5px;
}

.scrollable-checkbox-list label {
    display: block;
    padding: 5px 10px;
    margin: 2px 0;
    border-radius: 3px;
    cursor: pointer;
}

.scrollable-checkbox-list label:hover {
    background-color: #f5f5f5;
}

.scrollable-checkbox-list input[type="checkbox"] {
    margin-right: 10px;
}

/* Style the scrollbar */
.scrollable-checkbox-list::-webkit-scrollbar {
    width: 8px;
}

.scrollable-checkbox-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.scrollable-checkbox-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.scrollable-checkbox-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .loader-logo {
            width: 150px;
            animation: pulse 2s ease-in-out;
        }
        @keyframes pulse {
            0% { transform: scale(0.8); opacity: 0; }
            50% { transform: scale(1.1); opacity: 1; }
            100% { transform: scale(1); opacity: 0; }
        }
        .chef-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .chef-card-horizontal {
            display: flex;
            width: 100%;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .chef-photo {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }
        .chef-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .chef-details {
            padding: 20px;
            flex: 1;
        }
        .detail-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        .detail-item i {
            width: 20px;
            color: #ff6b6b;
            margin-right: 10px;
        }
        .pagination {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }
        .pagination a {
            margin: 0 5px;
            padding: 5px 10px;
            border: 1px solid #ddd;
            text-decoration: none;
        }
        .pagination a.active {
            background: #ff6b6b;
            color: white;
        }
        .logo-image {
    max-height: 50px;  /* Maximum height */
    height: auto;      /* Maintain aspect ratio */
    width: auto;       /* Maintain aspect ratio */
    max-width: 180px;  /* Maximum width */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-image {
        max-height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-height: 30px;
        max-width: 120px;
    }
}
  .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero.jpg');
            background-size: cover;
            background-position: center;
        }
        
        .scrollable-checkbox-container {
            max-height: 200px;
            overflow-y: auto;
            border: 1px solid #e5e7eb;
            border-radius: 0.375rem;
            padding: 0.5rem;
            background-color: white;
        }
        
        .scrollable-checkbox-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 0.5rem;
        }
        
        .scrollable-checkbox-list label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.25rem;
            cursor: pointer;
        }
        
        .chef-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }
        
        @media (max-width: 768px) {
            .scrollable-checkbox-list {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }
        }
        /*style-header.css*/
         @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, rgba(245,158,11,0.9) 0%, rgba(217,119,6,0.9) 100%);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1606787366852-de278663ea96?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .scrollable-checkbox-container {
            max-height: 200px;
            overflow-y: auto;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            padding: 1rem;
            background-color: white;
            scrollbar-width: thin;
            scrollbar-color: #f59e0b #fef3c7;
        }
        
        .scrollable-checkbox-container::-webkit-scrollbar {
            width: 6px;
        }
        
        .scrollable-checkbox-container::-webkit-scrollbar-track {
            background: #fef3c7;
            border-radius: 10px;
        }
        
        .scrollable-checkbox-container::-webkit-scrollbar-thumb {
            background-color: #f59e0b;
            border-radius: 10px;
        }
        
        .scrollable-checkbox-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 0.75rem;
        }
        
        .scrollable-checkbox-list label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0.375rem;
        }
        
        .scrollable-checkbox-list label:hover {
            background-color: #fef3c7;
        }
        
        .chef-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .chef-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .cuisine-chip {
            transition: all 0.2s ease;
        }
        
        .cuisine-chip:hover {
            background-color: #fcd34d;
            transform: translateY(-2px);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #f59e0b;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .pulse {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .btn-glow:hover {
            box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
        }
        
        .menu-toggle {
            transition: all 0.3s ease;
        }
        
        .menu-toggle.active {
            transform: rotate(90deg);
        }
        
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }
        
        .mobile-menu.open {
            max-height: 500px;
        }
        
        @media (max-width: 768px) {
            .scrollable-checkbox-list {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            
            .hero-section {
                background-attachment: scroll;
            }
        }
   
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, rgba(245,158,11,0.9) 0%, rgba(217,119,6,0.9) 100%);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1606787366852-de278663ea96?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .scrollable-checkbox-container {
            max-height: 200px;
            overflow-y: auto;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            padding: 1rem;
            background-color: white;
            scrollbar-width: thin;
            scrollbar-color: #f59e0b #fef3c7;
        }
        
        .scrollable-checkbox-container::-webkit-scrollbar {
            width: 6px;
        }
        
        .scrollable-checkbox-container::-webkit-scrollbar-track {
            background: #fef3c7;
            border-radius: 10px;
        }
        
        .scrollable-checkbox-container::-webkit-scrollbar-thumb {
            background-color: #f59e0b;
            border-radius: 10px;
        }
        
        .scrollable-checkbox-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 0.75rem;
        }
        
        .scrollable-checkbox-list label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0.375rem;
        }
        
        .scrollable-checkbox-list label:hover {
            background-color: #fef3c7;
        }
        
        .chef-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .chef-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .cuisine-chip {
            transition: all 0.2s ease;
        }
        
        .cuisine-chip:hover {
            background-color: #fcd34d;
            transform: translateY(-2px);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #f59e0b;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .pulse {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .btn-glow:hover {
            box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
        }
        
        .menu-toggle {
            transition: all 0.3s ease;
        }
        
        .menu-toggle.active {
            transform: rotate(90deg);
        }
        
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }
        
        .mobile-menu.open {
            max-height: 500px;
        }
        
        @media (max-width: 768px) {
            .scrollable-checkbox-list {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            
            .hero-section {
                background-attachment: scroll;
            }
        }
 /*how-it-works.php style paste*/
     .step-card {
        background: white;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(237, 137, 54, 0.1);
        position: relative;
        z-index: 1;
    }
    
    .step-number {
        display: inline-block;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        border-radius: 50%;
        text-align: center;
        line-height: 50px;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
        box-shadow: 0 4px 10px rgba(237, 137, 54, 0.3);
    }
    
    @media (max-width: 767px) {
        .step-card {
            margin-left: 40px;
        }
        
        .step-card::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(to bottom, #f59e0b, #d97706);
        }
    }
 /* Profile Visibility Toggle */
.profile-visibility-toggle {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 10px 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-handle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-handle:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + label .toggle-handle {
    background-color: #10b981;
}

input:checked + label .toggle-handle:before {
    transform: translateX(30px);
}

.toggle-text {
    position: absolute;
    left: 70px;
    top: 6px;
    font-weight: bold;
    color: #333;
}

.visibility-note {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}
.verification-checks input[type="checkbox"]:disabled {
    cursor: not-allowed;
    accent-color: #4caf50; /* green tick for verified */
    opacity: 0.8;
}

.verification-checks label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
