/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}


 :root {
            --primary-color: #ff6b35;
            --secondary-color: #2c5aa0;
            --accent-color: #f7931e;
            --dark-color: #1a1a1a;
            --light-gray: #f8f9fa;
            --text-dark: #2c3e50;
            --gradient-1: linear-gradient(135deg, #ff6b35, #f7931e);
            --gradient-2: linear-gradient(135deg, #2c5aa0, #4a90e2);
            --shadow-soft: 0 10px 40px rgba(0,0,0,0.1);
            --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .navbar {
            background: rgba(8, 0, 0, 0.95) !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            padding: 1rem 0;
            color: #0bee44;
        }


        

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--gradient-1);
            transition: all 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }

        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #f0edee 0%, #d4cddb 100%);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            animation: slideInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .btn-hero {
            background: var(--gradient-1);
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
            animation: slideInUp 1s ease-out 0.4s both;
            margin: 0.5rem;
        }

        .btn-hero:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            color: white;
        }

        .btn-hero.secondary {
            background: transparent;
            border: 2px solid white;
        }

        .categories-section {
            padding: 5rem 0;
            background: var(--light-gray);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 3rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .category-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
            height: 100%;
            border: none;
            position: relative;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .category-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto 1.5rem;
            font-size: 2.5rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .category-icon.food { background: var(--gradient-1); }
        .category-icon.fashion { background: var(--gradient-2); }
        .category-icon.beauty { background: linear-gradient(135deg, #e91e63, #ad1457); }
        .category-icon.events { background: linear-gradient(135deg, #9c27b0, #673ab7); }

        .category-card h4 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .category-card p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .features-section {
            padding: 5rem 0;
            background: white;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .cta-section {
            padding: 5rem 0;
            background: var(--gradient-2);
            color: black;
            text-align: center;
        }

        .footer {
            background: black;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer h5 {
            color: orange;
            margin-bottom: 1rem;
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--primary-color);
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: orange;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            background: var(--accent-color);
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
        .floating-element:nth-child(3) { top: 40%; left: 70%; animation-delay: 4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .category-card {
                margin-bottom: 2rem;
            }
            
            .btn-hero {
                display: block;
                margin: 0.5rem auto;
                text-align: center;
            }
        }

        div{
            border: 0px solid rgb(6, 245, 38);
            background-size: auto;
        }

        /*For the images in cart to display well*/

        .cart-image-container {
    position: relative;
    width: 70%;
    height: 80px;
    overflow: hidden;
}

.cart-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Hide broken images */
.cart-item-image[src=""],
.cart-item-image:not([src]),
.cart-item-image[src*="undefined"] {
    display: none;


/* Start  profiel html*/

:root {
            --primary-color: #e22454;
            --secondary-color: #667eea;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --info-color: #17a2b8;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            color: #333;
        }

        .dashboard-container {
            display: flex;
            min-height: 100vh;
        }

        /* Sidebar Styles */
        .sidebar {
            width: 280px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1000;
        }

        .sidebar-header {
            padding: 2rem;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .sidebar-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.05) 10px,
                rgba(255,255,255,0.05) 20px
            );
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
            100% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
        }

        .sidebar-header h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }

        .sidebar-header p {
            opacity: 0.9;
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }

        .sidebar-menu {
            padding: 1rem 0;
        }

        .sidebar-menu .nav-link {
            display: flex;
            align-items: center;
            padding: 1rem 2rem;
            color: #555;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .sidebar-menu .nav-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--primary-color);
            transform: translateX(-100%);
            transition: all 0.3s ease;
        }

        .sidebar-menu .nav-link:hover,
        .sidebar-menu .nav-link.active {
            background: linear-gradient(90deg, rgba(226, 36, 84, 0.1) 0%, transparent 100%);
            color: var(--primary-color);
        }

        .sidebar-menu .nav-link:hover::before,
        .sidebar-menu .nav-link.active::before {
            transform: translateX(0);
        }

        .sidebar-menu .nav-link i {
            width: 20px;
            margin-right: 1rem;
            font-size: 1.1rem;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            padding: 2rem;
            overflow-x: auto;
        }

        .dashboard-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .dashboard-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            opacity: 0.1;
            border-radius: 50%;
            transform: translateX(50%) translateY(-50%);
        }

        .welcome-text {
            position: relative;
            z-index: 2;
        }

        .welcome-text h2 {
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .welcome-text p {
            color: #666;
            font-size: 1.1rem;
        }

        /* Stats Cards */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .stats-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stats-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .stats-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .stats-card .icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .stats-card.orders .icon {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
        }

        .stats-card.spent .icon {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
        }

        .stats-card.pending .icon {
            background: linear-gradient(135deg, #ffc107, #fd7e14);
            color: white;
        }

        .stats-card.wishlist .icon {
            background: linear-gradient(135deg, #e22454, #ff6b6b);
            color: white;
        }

        .stats-card h3 {
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .stats-card p {
            color: #666;
            margin: 0;
        }

        /* Content Sections */
        .content-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: none;
        }

        .content-section.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-header {
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }

        .section-header h3 {
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        /* Tables */
        .table {
            margin: 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .table thead {
            background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
        }

        .table thead th {
            border: none;
            color: white;
            font-weight: 600;
            padding: 1rem;
        }

        .table tbody td {
            padding: 1rem;
            border-color: #f0f0f0;
            vertical-align: middle;
        }

        .table tbody tr:hover {
            background-color: #f8f9fa;
        }

        /* Status Badges */
        .status-badge {
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-pending { background: #fff3cd; color: #856404; }
        .status-processing { background: #d1ecf1; color: #0c5460; }
        .status-delivered { background: #d4edda; color: #155724; }
        .status-cancelled { background: #f8d7da; color: #721c24; }

        /* Form Styles */
        .form-floating .form-control {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .form-floating .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(226, 36, 84, 0.15);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
            border: none;
            border-radius: 12px;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(226, 36, 84, 0.3);
            background: linear-gradient(135deg, #c41e3a, #e22454);
        }

        .btn-outline-danger {
            border: 2px solid #dc3545;
            color: #dc3545;
            border-radius: 12px;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-danger:hover {
            background: #dc3545;
            border-color: #dc3545;
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .dashboard-container {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                height: auto;
                transform: translateX(-100%);
                position: fixed;
                z-index: 1000;
            }

            .sidebar.show {
                transform: translateX(0);
            }

            .main-content {
                padding: 1rem;
                margin-left: 0;
                padding-top: 80px;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .table-responsive {
                border-radius: 15px;
            }
        }

        .mobile-menu-toggle {
            display: none;
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
        }

        /* Card Styles */
        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .card-img-top {
            border-radius: 15px 15px 0 0;
            height: 200px;
            object-fit: cover;
        }

        /* Profile Image */
        .profile-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--primary-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

/* End profile html  */


/*  For table and its details*/

.table-row-clickable {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.table-row-clickable:hover {
    background-color: #f8f9fa !important;
    transform: translateY(-1px);
}

.detail-modal .modal-dialog {
    max-width: 800px;
}


/* Hero Section  DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD*/
.hero-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-section .badge {
    font-size: 1rem;
    padding: 8px 15px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.promo-badge {
    background-color: #ffc107;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin: 15px 0;
}

.price {
    margin: 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    margin-right: 10px;
}

.discounted-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc3545;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    color: #333;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0d6efd;
}

/* Image Slider */
.image-slider {
    position: relative;
    max-width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-slider img.active {
    opacity: 1;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 20% ;
}

.slider-nav button {
    background: rgba(255,255,255,0.7);
    border: none;
    padding: 5px 15px;
    margin: 0 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-nav button:hover {
    background: #0bee44;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: #fff;
}

.service-card {
    text-align: center;
    padding: 30px 15px;
    border-radius: 10px;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.service-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Offers Section */
.offers-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.offer-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    height: 100%;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.reward-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    margin-top: 40px;
    color: #0bee44;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.price-timer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #dc3545;
}

.timer {
    color: #6c757d;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    color: #6c757d;
}

.fruit-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.fruit-categories h3 {
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .col-md-6 {
        margin-bottom: 30px;
    }
    
    .fruit-categories {
        flex-direction: column;
        align-items: center;
    }
}

.service-image {
    /* Set the background image using the same Flask path */
    background-image: url("{{ url_for('static', filename='assets/images/vegetable/poster/2.png') }}");

    /* Define the size of the div */
    width: 30%; /* As specified in your original img tag */
    height: 300px; /* You must set a height for the div to be visible */

    /* Control how the background image behaves */
    background-size: cover; /* This makes the image cover the entire div */
    background-position: center; /* This centers the image within the div */
    background-repeat: no-repeat; /* This prevents the image from repeating */
  }


  .product-grid {
            padding: 20px;
        }

        .product-card {
            background: white;
            border: none;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            height: 100%;
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .badge-new {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #000;
            color: white;
            padding: 4px 12px;
            font-size: 11px;
            font-weight: 600;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .badge-discount {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #4CAF50;
            color: white;
            padding: 4px 12px;
            font-size: 11px;
            font-weight: 600;
            border-radius: 4px;
        }

        .product-image {
            width: 200px;
            height: 150px;
            object-fit: contain;
            margin: 10px auto;
            display: block;
        }

        .price-section {
            margin: 15px 0;
        }

        .current-price {
            color: #4CAF50;
            font-size: 24px;
            font-weight: 700;
            margin-right: 8px;
        }

        .original-price {
            color: #999;
            font-size: 16px;
            text-decoration: line-through;
        }

        .product-name {
            font-size: 16px;
            font-weight: 600;
            margin: 10px 0;
            color: #333;
        }

        .product-details {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 13px;
            color: #666;
            margin: 10px 0;
        }

        .rating {
            display: flex;
            gap: 2px;
            justify-content: center;
            margin: 10px 0;
        }

        .star {
            color: #ffc107;
            font-size: 14px;
        }

        .star.empty {
            color: #ddd;
        }

        @media (max-width: 768px) {
            .product-image {
                width: 120px;
                height: 120px;
            }
        }


        #hero-section {
    background-image: url("../assets/images/food/egusi-soup3.jpg");
    background-size: cover;
    background-position: center;
    height: 200px;
    width: 100%;
}

 #hero-section2 {
    background-image: url("../assets/images/food/just_stew.png");
    background-size: cover;
    background-position: center;
    height: 200px;
    width: 100%;
}


/* for orders*/

.orders-header {
            background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
            color: white;
            padding: 2rem 0;
            margin-bottom: 2rem;
        }
        
        .order-card {
            border: 1px solid #dee2e6;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .order-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }
        
        .order-header {
            background: #f8f9fa;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #dee2e6;
        }
        
        .order-body {
            padding: 1.5rem;
        }
        
        .order-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid #f8f9fa;
        }
        
        .order-item:last-child {
            border-bottom: none;
        }
        
        .status-badge {
            font-size: 0.875rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
        }
        
        .status-pending {
            background: #fff3cd;
            color: #856404;
            border: 1px solid #ffeaa7;
        }
        
        .status-confirmed {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .status-preparing {
            background: #cce5ff;
            color: #004085;
            border: 1px solid #99d6ff;
        }
        
        .status-delivered {
            background: #d1ecf1;
            color: #0c5460;
            border: 1px solid #b8daff;
        }
        
        .delivery-status {
            font-size: 0.8rem;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
        }
        
        .delivery-pending {
            background: #ffc107;
            color: #000;
        }
        
        .delivery-delivered {
            background: #28a745;
            color: white;
        }
        
        .empty-orders {
            text-align: center;
            padding: 4rem 0;
        }
        
        .order-total {
            font-size: 1.25rem;
            font-weight: bold;
            color: #28a745;
        }
        
        .order-actions {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #f8f9fa;
        }
        
        .filter-section {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }






/*About Us .product-image
*/

    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-black: #1a1a1a;
            --brand-orange: #ff6b35;
            --brand-gold: #ffd700;
            --food-green: #4ade80;
            --light-gray: #f8f9fa;
            --dark-gray: #2d3748;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--primary-black);
            overflow-x: hidden;
        }

        .hero-section {
            background: rgb(255, 255, 255);
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--brand-orange), var(--brand-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            opacity: 0.8;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            background: linear-gradient(45deg, var(--brand-orange), var(--brand-gold));
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: -2s;
        }

        .shape:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 10%;
            animation-delay: -4s;
        }

        .shape:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 20%;
            animation-delay: -1s;
        }

        .sectors-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 3rem;
            color: var(--primary-black);
        }

        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            text-align: center;
        }

        .sector-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            
        }

        .sector-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s;
        }

        .sector-card:hover::before {
            left: 100%;
        }

        .sector-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .sector-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .food-card .sector-icon {
            background: linear-gradient(135deg, var(--food-green), #22c55e);
        }

        .fashion-card .sector-icon {
            background: linear-gradient(135deg, var(--brand-orange), #ff8f65);
        }

        .beauty-card .sector-icon {
            background: linear-gradient(135deg, var(--brand-gold), #ffed4a);
        }

        .events-card .sector-icon {
            background: linear-gradient(135deg, var(--primary-black), var(--dark-gray));
        }

        .sector-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--primary-black);
        }

        .sector-description {
            color: #666;
            line-height: 1.7;
        }

        .company-values {
            padding: 100px 0;
            background: var(--primary-black);
            color: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-item {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .value-item:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--brand-orange), var(--brand-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .value-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .location-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--brand-orange));
            text-align: center;
            color: white;
        }

        .location-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .location-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
        }

        .location-text {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .cta-section {
            padding: 80px 0;
            background: var(--light-gray);
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.2rem; }
            .section-title { font-size: 2rem; }
            .sectors-grid { grid-template-columns: 1fr; }
            .values-grid { grid-template-columns: 1fr; }
        }




/*For Food section 1 Display */

 .hero-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%234ade80" opacity="0.1"/><circle cx="40" cy="80" r="2.5" fill="%23ffd700" opacity="0.1"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            background: linear-gradient(135deg, #4ade80, #22c55e) !important;
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 25px;
            display: inline-block;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
            animation: pulse 2s infinite;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1.2;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #4a5568 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #6b7280;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            font-weight: 400;
        }

        .order-button {
            background: linear-gradient(135deg, #ff6b35, #ff8f65) !important;
            border: none;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 15px 35px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
            position: relative;
            overflow: hidden;
        }

        .order-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .order-button:hover::before {
            left: 100%;
        }

        .order-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
            color: white;
        }

        .social-container {
            margin-top: 3rem;
        }

        .social-label {
            font-size: 0.9rem;
            color: #6b7280;
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icons a.facebook {
            background: linear-gradient(135deg, #1877f2, #42a5f5);
            box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
        }

        .social-icons a.instagram {
            background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
            box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
        }

        .social-icons a.twitter {
            background: linear-gradient(135deg, #1da1f2, #0d8bd9);
            box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
        }

        .social-icons a:hover {
            transform: translateY(-3px) scale(1.05);
        }

        .image-showcase {
            position: relative;
            height: 600px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .image-slider {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 25px;
            overflow: hidden;
        }

        .image-slider img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .image-slider img.active {
            opacity: 1;
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
        }

        .slider-nav button {
            background: rgba(0,0,0,0.7);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .slider-nav button:hover {
            background: rgba(255, 107, 53, 0.9);
            border-color: #ff6b35;
            transform: translateY(-2px);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(255,107,53,0.1) 100%);
            z-index: 2;
        }

        .food-stats {
            position:relative;
            top: 30px;
            right: 30px;
            background: rgba(255,255,255,0.95);
            padding: 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            z-index: 4;
            min-width: 200px;
        }

        .food-stats h6 {
            color: #ff6b35;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .stat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

         .stat-item  span{
            color: #000;
        }

        .stat-item:last-child {
            margin-bottom: 0;
        }

        .stat-value {
            font-weight: 600;
            color: #4ade80;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-section {
                min-height: auto;
                padding: 60px 0 40px;
            }
            
            .image-showcase {
                height: 400px;
                margin-top: 2rem;
            }
            
            .food-stats {
                position: relative;
                top: auto;
                right: auto;
                margin-top: 1rem;
            }

            .social-icons {
                justify-content: center;
            }
        }



    /* For the image display in food sector*/

    .authentic-food-showcase {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .authentic-food-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .showcase-header-section {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .showcase-main-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #ff6b35;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }

        .showcase-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }

        .showcase-subtitle {
            font-size: 1.3rem;
            color: #e0e0e0;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .showcase-description {
            font-size: 1rem;
            color: #b0b0b0;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .food-display-card {
            background: rgba(45, 45, 45, 0.9);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 1px solid rgba(255, 107, 53, 0.2);
            position: relative;
            margin-bottom: 30px;
            height: 100%;
        }

        .food-display-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
            border-color: rgba(255, 107, 53, 0.5);
        }

        .card-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .food-showcase-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            filter: brightness(0.9) contrast(1.1);
        }

        .food-display-card:hover .food-showcase-image {
            transform: scale(1.1);
            filter: brightness(1) contrast(1.2);
        }

        .image-overlay-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            pointer-events: none;
        }

        .card-content-area {
            padding: 25px;
            position: relative;
        }

        .dish-category-badge {
            position: absolute;
            top: -15px;
            left: 25px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        .dish-name-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            margin-top: 10px;
        }

        .dish-description-text {
            font-size: 0.95rem;
            color: #b8b8b8;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .dish-features-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .feature-tag {
            background: rgba(255, 107, 53, 0.2);
            color: #ff6b35;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(255, 107, 53, 0.3);
        }

        .dish-rating-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .rating-stars {
            color: #f7931e;
            font-size: 1.1rem;
        }

        .rating-text {
            color: #888;
            font-size: 0.9rem;
            margin-left: 8px;
        }

        .order-now-btn {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .order-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
            color: white;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .authentic-food-showcase {
                padding: 50px 0;
            }

            .showcase-main-title {
                font-size: 2.5rem;
                letter-spacing: 1px;
            }

            .showcase-subtitle {
                font-size: 1.1rem;
            }

            .food-display-card {
                margin-bottom: 25px;
            }

            .card-image-wrapper {
                height: 220px;
            }

            .card-content-area {
                padding: 20px;
            }

            .dish-category-badge {
                top: -12px;
                left: 20px;
                padding: 6px 12px;
                font-size: 0.75rem;
            }
        }

        @media (max-width: 576px) {
            .showcase-main-title {
                font-size: 2rem;
            }

            .showcase-subtitle {
                font-size: 1rem;
            }

            .card-image-wrapper {
                height: 200px;
            }

            .dish-rating-section {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        /* Animation */
        .food-display-card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .food-display-card:nth-child(1) { animation-delay: 0.1s; }
        .food-display-card:nth-child(2) { animation-delay: 0.3s; }
        .food-display-card:nth-child(3) { animation-delay: 0.5s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        #CSS FOR LOGIN   
        
        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            font-family: 'Inter', sans-serif;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Animated Background Elements */
        body::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: float 20s infinite linear;
            z-index: 0;
        }
        
        @keyframes float {
            0% { transform: translateX(0) translateY(0) rotate(0deg); }
            100% { transform: translateX(-50px) translateY(-50px) rotate(360deg); }
        }
        
        .login-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
            position: relative;
            z-index: 1;
        }
        
        .login-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            overflow: hidden;
            max-width: 450px;
            width: 100%;
            position: relative;
            animation: slideUp 0.8s ease-out;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .login-header {
            background: linear-gradient(135deg, #e22454 0%, #ff6b6b 100%);
            color: white;
            padding: 3rem 2rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .login-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.1) 10px,
                rgba(255,255,255,0.1) 20px
            );
            animation: shimmer 15s infinite linear;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(360deg); }
        }
        
        .login-header .brand-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .login-header h2 {
            margin: 0;
            font-weight: 700;
            font-size: 2rem;
            position: relative;
            z-index: 2;
        }
        
        .login-header p {
            margin: 0.5rem 0 0 0;
            opacity: 0.95;
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
        }
        
        .login-body {
            padding: 2.5rem;
        }
        
        .form-floating {
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .form-floating > .form-control {
            border: 2px solid #e9ecef;
            border-radius: 15px;
            padding: 1.2rem 1rem;
            height: calc(3.8rem + 2px);
            transition: all 0.4s ease;
            background: rgba(248, 249, 250, 0.8);
            backdrop-filter: blur(10px);
        }
        
        .form-floating > .form-control:focus {
            border-color: #e22454;
            box-shadow: 0 0 0 0.25rem rgba(226, 36, 84, 0.15);
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(-2px);
        }
        
        .form-floating > .form-control:not(:placeholder-shown) {
            background: rgba(255, 255, 255, 0.95);
        }
        
        .form-floating > label {
            padding: 1.2rem 1rem;
            color: #6c757d;
            transition: all 0.3s ease;
        }
        
        .form-floating > .form-control:focus ~ label,
        .form-floating > .form-control:not(:placeholder-shown) ~ label {
            color: #e22454;
            font-weight: 500;
        }
        
        .password-container {
            position: relative;
        }
        
        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #6c757d;
            cursor: pointer;
            z-index: 10;
            padding: 0.5rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .password-toggle:hover {
            color: #e22454;
            background: rgba(226, 36, 84, 0.1);
        }
        
        .btn-login {
            background: linear-gradient(135deg, #e22454 0%, #ff6b6b 100%);
            border: none;
            border-radius: 15px;
            padding: 1rem 2rem;
            font-weight: 600;
            font-size: 1.1rem;
            width: 100%;
            color: white;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            margin-top: 1rem;
        }
        
        .btn-login::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-login:hover::before {
            left: 100%;
        }
        
        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(226, 36, 84, 0.4);
            color: white;
        }
        
        .btn-login:active {
            transform: translateY(-1px);
        }
        
        .form-check {
            margin: 1.5rem 0;
        }
        
        .form-check-input {
            border-radius: 6px;
            border: 2px solid #e9ecef;
            width: 1.2em;
            height: 1.2em;
            margin-top: 0.125em;
            transition: all 0.3s ease;
        }
        
        .form-check-input:checked {
            background-color: #e22454;
            border-color: #e22454;
        }
        
        .form-check-label {
            margin-left: 0.5rem;
            color: #6c757d;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .form-check-input:checked + .form-check-label {
            color: #495057;
        }
        
        .forgot-password {
            text-align: center;
            margin: 1.5rem 0;
        }
        
        .forgot-password a {
            color: #e22454;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .forgot-password a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #e22454;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .forgot-password a:hover::after {
            width: 100%;
        }
        
        .forgot-password a:hover {
            color: #c41e3a;
        }
        
        .signup-link {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e9ecef;
            position: relative;
        }
        
        .signup-link::before {
            content: 'OR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            padding: 0 1rem;
            color: #6c757d;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .signup-link p {
            margin: 0;
            color: #6c757d;
        }
        
        .signup-link a {
            color: #e22454;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            display: inline-block;
        }
        
        .signup-link a:hover {
            background: rgba(226, 36, 84, 0.1);
            transform: translateY(-1px);
        }
        
        .social-login {
            margin: 1.5rem 0;
        }
        
        .btn-social {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            background: rgba(248, 249, 250, 0.8);
            transition: all 0.3s ease;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }
        
        .btn-social:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-google {
            color: #db4437;
            border-color: #db4437;
        }
        
        .btn-google:hover {
            background: #db4437;
            color: white;
        }
        
        .is-invalid {
            border-color: #dc3545 !important;
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15) !important;
        }
        
        .is-valid {
            border-color: #198754 !important;
            box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.15) !important;
        }
        
        .invalid-feedback {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.875rem;
            color: #dc3545;
        }
        
        .valid-feedback {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.875rem;
            color: #198754;
        }
        
        /* Loading State */
        .btn-login.loading {
            pointer-events: none;
        }
        
        .btn-login.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .btn-login.loading .btn-text {
            opacity: 0;
        }
        
        @media (max-width: 768px) {
            .login-container {
                padding: 15px;
            }
            
            .login-header {
                padding: 2rem 1.5rem 1.5rem;
            }
            
            .login-header h2 {
                font-size: 1.6rem;
            }
            
            .login-body {
                padding: 2rem 1.5rem;
            }
            
            .form-floating > .form-control {
                height: calc(3.5rem + 2px);
                padding: 1rem 0.75rem;
            }
            
            .form-floating > label {
                padding: 1rem 0.75rem;
            }
        }
        
        /* Flash Messages */
        .flash-message {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1050;
            min-width: 300px;
            animation: slideInRight 0.3s ease;
        }
        
        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
/*for signup form */

 .signup-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
        }
        
        .signup-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            overflow: hidden;
            max-width: 500px;
            width: 100%;
        }
        
        .signup-header {
            background: linear-gradient(135deg, #e22454 0%, #ff6b6b 100%);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        
        .signup-header h2 {
            margin: 0;
            font-weight: 600;
            font-size: 1.8rem;
        }
        
        .signup-header p {
            margin: 0.5rem 0 0 0;
            opacity: 0.9;
        }
        
        .signup-body {
            padding: 2rem;
        }
        
        .form-floating {
            margin-bottom: 1.2rem;
        }
        
        .form-floating > .form-control {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 1rem 0.75rem;
            height: calc(3.5rem + 2px);
            transition: all 0.3s ease;
        }
        
        .form-floating > .form-control:focus {
            border-color: #e22454;
            box-shadow: 0 0 0 0.2rem rgba(226, 36, 84, 0.15);
        }
        
        .form-floating > label {
            padding: 1rem 0.75rem;
            color: #6c757d;
        }
        
        .input-group {
            margin-bottom: 1.2rem;
        }
        
        .input-group .form-control {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 1rem;
            height: calc(3.5rem + 2px);
            transition: all 0.3s ease;
        }
        
        .input-group .form-control:focus {
            border-color: #e22454;
            box-shadow: 0 0 0 0.2rem rgba(226, 36, 84, 0.15);
        }
        
        .input-group-text {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-right: none;
            border-radius: 12px 0 0 12px;
            color: #6c757d;
        }
        
        .btn-signup {
            background: linear-gradient(135deg, #e22454 0%, #ff6b6b 100%);
            border: none;
            border-radius: 12px;
            padding: 0.875rem 2rem;
            font-weight: 600;
            font-size: 1.1rem;
            width: 100%;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(226, 36, 84, 0.3);
            color: white;
        }
        
        .btn-signup:active {
            transform: translateY(0);
        }
        
        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #6c757d;
            cursor: pointer;
            z-index: 10;
        }
        
        .password-toggle:hover {
            color: #e22454;
        }
        
        .form-text {
            font-size: 0.875rem;
            color: #6c757d;
            margin-top: 0.5rem;
        }
        
        .login-link {
            text-align: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e9ecef;
        }
        
        .login-link a {
            color: #e22454;
            text-decoration: none;
            font-weight: 500;
        }
        
        .login-link a:hover {
            text-decoration: underline;
        }
        
        .is-invalid {
            border-color: #dc3545 !important;
        }
        
        .is-valid {
            border-color: #198754 !important;
        }
        
        .invalid-feedback {
            display: block;
            margin-top: 0.25rem;
            font-size: 0.875rem;
        }
        
        .valid-feedback {
            display: block;
            margin-top: 0.25rem;
            font-size: 0.875rem;
        }
        
        @media (max-width: 768px) {
            .signup-container {
                padding: 10px;
            }
            
            .signup-header {
                padding: 1.5rem;
            }
            
            .signup-body {
                padding: 1.5rem;
            }
        }


/* For profile html page*/


        :root {
            --prof-primary-black: #1a1a1a;
            --prof-accent-orange: #ff6b35;
            --prof-accent-green: #4CAF50;
            --prof-light-gray: #f8f9fa;
            --prof-medium-gray: #e9ecef;
            --prof-dark-gray: #495057;
            --prof-white: #ffffff;
            --prof-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --prof-shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
            --prof-border-radius: 12px;
            --prof-transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .profile_container{
             font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--prof-light-gray) 0%, var(--prof-medium-gray) 100%);
            min-height: 100vh;
            color: var(--prof-primary-black);

        }

        

        .prof-mobile-toggle {
            display: none;
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1050;
            background: var(--prof-accent-orange);
            color: var(--prof-white);
            border: none;
            padding: 12px 16px;
            border-radius: var(--prof-border-radius);
            font-size: 18px;
            box-shadow: var(--prof-shadow);
            transition: var(--prof-transition);
        }

        .prof-mobile-toggle:hover {
            background: #e55a2b;
            transform: scale(1.05);
        }

        .prof-dashboard-wrapper {
            display: flex;
            min-height: 100vh;
        }

        .prof-navigation {
            width: 280px;
            background: var(--prof-primary-black);
            color: var(--prof-white);
            position: fixed;
            height: 100vh;
            overflow-y: auto;
            transition: var(--prof-transition);
            z-index: 1000;
        }

        .prof-nav-header {
            padding: 2rem 1.5rem;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            background: linear-gradient(135deg, var(--prof-primary-black) 0%, #2d2d2d 100%);
        }

        .prof-nav-header i {
            color: var(--prof-accent-orange);
            margin-bottom: 1rem;
        }

        .prof-nav-header h4 {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .prof-nav-header p {
            color: var(--prof-accent-green);
            margin: 0;
            font-size: 0.9rem;
        }

        .prof-nav-menu {
            padding: 1.5rem 0;
        }

        .prof-nav-item {
            display: block;
            width: 100%;
            padding: 1rem 1.5rem;
            background: transparent;
            border: none;
            color: var(--prof-white);
            text-decoration: none;
            text-align: left;
            transition: var(--prof-transition);
            cursor: pointer;
            font-size: 1rem;
            border-left: 4px solid transparent;
        }

        .prof-nav-item:hover {
            background: rgba(255, 107, 53, 0.1);
            border-left-color: var(--prof-accent-orange);
            color: var(--prof-accent-orange);
        }

        .prof-nav-item.prof-active {
            background: rgba(255, 107, 53, 0.2);
            border-left-color: var(--prof-accent-orange);
            color: var(--prof-accent-orange);
        }

        .prof-nav-item i {
            width: 20px;
            margin-right: 12px;
        }

        .prof-nav-item.prof-logout {
            color: #dc3545;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 1rem;
        }

        .prof-nav-item.prof-logout:hover {
            background: rgba(220, 53, 69, 0.1);
            border-left-color: #dc3545;
        }

        .prof-main-area {
            flex: 1;
            margin-left: 280px;
            padding: 2rem;
            transition: var(--prof-transition);
        }

        .prof-header-section {
            background: var(--prof-white);
            padding: 2rem;
            border-radius: var(--prof-border-radius);
            margin-bottom: 2rem;
            box-shadow: var(--prof-shadow);
        }

        .prof-header-section h2 {
            color: var(--prof-primary-black);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .prof-header-section p {
            color: var(--prof-dark-gray);
            margin: 0;
        }

        .prof-metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .prof-metric-card {
            background: var(--prof-white);
            padding: 2rem;
            border-radius: var(--prof-border-radius);
            box-shadow: var(--prof-shadow);
            transition: var(--prof-transition);
            position: relative;
            overflow: hidden;
        }

        .prof-metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--prof-accent-orange);
        }

        .prof-metric-card.prof-orders::before {
            background: var(--prof-accent-orange);
        }

        .prof-metric-card.prof-spent::before {
            background: var(--prof-accent-green);
        }

        .prof-metric-card.prof-pending::before {
            background: #ffc107;
        }

        .prof-metric-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--prof-shadow-hover);
        }

        .prof-metric-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--prof-accent-orange);
        }

        .prof-metric-card.prof-spent .prof-metric-icon {
            color: var(--prof-accent-green);
        }

        .prof-metric-card.prof-pending .prof-metric-icon {
            color: #ffc107;
        }

        .prof-metric-card h3 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--prof-primary-black);
        }

        .prof-metric-card p {
            color: var(--prof-dark-gray);
            margin: 0;
            font-weight: 500;
        }

        .prof-content-panel {
            display: none;
            background: var(--prof-white);
            padding: 2rem;
            border-radius: var(--prof-border-radius);
            box-shadow: var(--prof-shadow);
            margin-bottom: 2rem;
        }

        .prof-content-panel.prof-active {
            display: block;
            animation: profFadeIn 0.5s ease-in-out;
        }

        @keyframes profFadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .prof-panel-header {
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--prof-medium-gray);
        }

        .prof-panel-header h3 {
            color: var(--prof-primary-black);
            font-weight: 600;
            margin: 0;
        }

        .prof-data-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 1rem;
        }

        .prof-data-table th {
            background: var(--prof-light-gray);
            color: var(--prof-primary-black);
            font-weight: 600;
            padding: 1rem;
            text-align: left;
            border-bottom: 2px solid var(--prof-medium-gray);
        }

        .prof-data-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--prof-medium-gray);
            vertical-align: middle;
        }

        .prof-data-table tr:hover {
            background: rgba(255, 107, 53, 0.05);
        }

        .prof-status-label {
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .prof-status-pending {
            background: rgba(255, 193, 7, 0.2);
            color: #856404;
        }

        .prof-status-delivered {
            background: rgba(76, 175, 80, 0.2);
            color: #2e7d32;
        }

        .prof-status-cancelled {
            background: rgba(220, 53, 69, 0.2);
            color: #c62828;
        }

        .prof-btn {
            padding: 0.6rem 1.2rem;
            border: none;
            border-radius: var(--prof-border-radius);
            font-weight: 500;
            transition: var(--prof-transition);
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .prof-btn-primary {
            background: var(--prof-accent-orange);
            color: var(--prof-white);
        }

        .prof-btn-primary:hover {
            background: #e55a2b;
            transform: translateY(-2px);
        }

        .prof-btn-outline {
            background: transparent;
            color: var(--prof-accent-orange);
            border: 2px solid var(--prof-accent-orange);
        }

        .prof-btn-outline:hover {
            background: var(--prof-accent-orange);
            color: var(--prof-white);
        }

        .prof-btn-danger {
            background: #dc3545;
            color: var(--prof-white);
        }

        .prof-btn-danger:hover {
            background: #c82333;
        }

        .prof-btn-sm {
            padding: 0.4rem 0.8rem;
            font-size: 0.875rem;
        }

        .prof-form-control {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--prof-medium-gray);
            border-radius: var(--prof-border-radius);
            font-size: 1rem;
            transition: var(--prof-transition);
        }

        .prof-form-control:focus {
            outline: none;
            border-color: var(--prof-accent-orange);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }

        .prof-grid-row {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .prof-quick-actions {
            background: var(--prof-light-gray);
            padding: 1.5rem;
            border-radius: var(--prof-border-radius);
        }

        .prof-quick-actions h5 {
            margin-bottom: 1rem;
            color: var(--prof-primary-black);
        }

        .prof-action-grid {
            display: grid;
            gap: 0.75rem;
        }

        .prof-summary-list {
            margin-top: 1.5rem;
        }

        .prof-summary-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--prof-medium-gray);
        }

        .prof-summary-item:last-child {
            border-bottom: none;
        }

        .prof-profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--prof-accent-orange);
        }

        .prof-form-section {
            margin-bottom: 2rem;
        }

        .prof-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .prof-form-group {
            margin-bottom: 1rem;
        }

        .prof-form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--prof-primary-black);
        }

        .prof-settings-card {
            background: var(--prof-white);
            border: 2px solid var(--prof-medium-gray);
            border-radius: var(--prof-border-radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .prof-settings-card h5 {
            margin-bottom: 1rem;
            color: var(--prof-primary-black);
        }

        .prof-switch-group {
            margin-bottom: 1rem;
        }

        .prof-switch {
            display: flex;
            align-items: center;
        }

        .prof-switch input[type="checkbox"] {
            margin-right: 0.75rem;
            transform: scale(1.2);
        }

        .prof-danger-zone {
            border-color: #dc3545;
        }

        .prof-danger-zone h5 {
            color: #dc3545;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .prof-mobile-toggle {
                display: block;
            }

            .prof-navigation {
                transform: translateX(-100%);
            }

            .prof-navigation.prof-open {
                transform: translateX(0);
            }

            .prof-main-area {
                margin-left: 0;
                padding: 1rem;
                padding-top: 80px;
            }

            .prof-metrics-grid {
                grid-template-columns: 1fr;
            }

            .prof-grid-row {
                grid-template-columns: 1fr;
            }

            .prof-form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .prof-main-area {
                padding: 0.5rem;
                padding-top: 80px;
            }

            .prof-header-section {
                padding: 1.5rem;
            }

            .prof-content-panel {
                padding: 1.5rem;
            }

            .prof-data-table {
                font-size: 0.875rem;
            }

            .prof-data-table th,
            .prof-data-table td {
                padding: 0.5rem;
            }
        }

        /* Flash Messages Styles */
        .prof-flash-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1100;
            max-width: 400px;
        }

        .prof-flash-message {
            padding: 1rem 1.5rem;
            margin-bottom: 0.5rem;
            border-radius: var(--prof-border-radius);
            box-shadow: var(--prof-shadow);
            display: flex;
            justify-content: space-between;
            align-items: center;
            animation: profSlideIn 0.3s ease-out;
        }

        .prof-flash-success {
            background: var(--prof-accent-green);
            color: var(--prof-white);
        }

        .prof-flash-warning {
            background: #ffc107;
            color: #212529;
        }

        .prof-flash-error {
            background: #dc3545;
            color: var(--prof-white);
        }

        .prof-flash-close {
            background: none;
            border: none;
            color: inherit;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0;
            margin-left: 1rem;
            opacity: 0.7;
        }

        .prof-flash-close:hover {
            opacity: 1;
        }

        @keyframes profSlideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes profSlideOut {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }}

/*for Signup */
.acc-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        .acc-body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
                              radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .acc-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 165, 0, 0.2);
            padding: 40px;
            width: 100%;
            max-width: 500px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
            animation: acc-slideUp 0.6s ease-out;
        }

        @keyframes acc-slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .acc-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .acc-title {
            color: #fff;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #fff 0%, #ff9500 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .acc-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            font-weight: 300;
        }

        .acc-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .acc-form-row {
            display: flex;
            gap: 15px;
        }

        .acc-form-group {
            position: relative;
            flex: 1;
        }

        .acc-form-group.acc-full-width {
            flex: 1 1 100%;
        }

        .acc-input {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 165, 0, 0.3);
            border-radius: 12px;
            color: #fff;
            font-size: 1rem;
            font-weight: 400;
            outline: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .acc-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 300;
        }

        .acc-input:focus {
            border-color: #ff9500;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 4px rgba(255, 149, 0, 0.1), 0 8px 25px rgba(255, 149, 0, 0.15);
            transform: translateY(-1px);
        }

        .acc-input:valid {
            border-color: rgba(46, 204, 113, 0.6);
        }

        .acc-input.acc-error {
            border-color: #e74c3c;
            background: rgba(231, 76, 60, 0.1);
        }

        .acc-btn {
            width: 100%;
            padding: 18px 24px;
            background: linear-gradient(135deg, #ff9500 0%, #ff7300 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
        }

        .acc-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 149, 0, 0.6);
            background: linear-gradient(135deg, #ff7300 0%, #ff5500 100%);
        }

        .acc-btn:active {
            transform: translateY(0);
        }

        .acc-divider {
            margin: 30px 0 20px;
            text-align: center;
            position: relative;
        }

        .acc-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.3), transparent);
        }

        .acc-divider-text {
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.6);
            padding: 0 20px;
            font-size: 0.9rem;
            position: relative;
        }

        .acc-login-link {
            text-align: center;
        }

        .acc-login-link a {
            color: #ff9500;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .acc-login-link a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(255, 149, 0, 0.6);
        }

        .acc-alert {
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .acc-alert-success {
            background: rgba(46, 204, 113, 0.15);
            border: 1px solid rgba(46, 204, 113, 0.3);
            color: #2ecc71;
        }

        .acc-alert-danger {
            background: rgba(231, 76, 60, 0.15);
            border: 1px solid rgba(231, 76, 60, 0.3);
            color: #e74c3c;
        }

        .acc-field-error {
            color: #e74c3c;
            font-size: 0.8rem;
            margin-top: 5px;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .acc-container {
                padding: 30px 25px;
                margin: 10px;
            }

            .acc-form-row {
                flex-direction: column;
                gap: 20px;
            }

            .acc-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .acc-container {
                padding: 25px 20px;
            }

            .acc-input {
                padding: 14px 16px;
                font-size: 0.95rem;
            }

            .acc-btn {
                padding: 16px 20px;
                font-size: 1rem;
            }
        }


        /*For Login*/

        .acc-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        .acc-body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
                              radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .acc-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 165, 0, 0.2);
            padding: 50px 40px;
            width: 100%;
            max-width: 450px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
            animation: acc-slideUp 0.6s ease-out;
        }

        @keyframes acc-slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .acc-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .acc-title {
            color: #fff;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #fff 0%, #ff9500 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .acc-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            font-weight: 300;
        }

        .acc-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .acc-form-group {
            position: relative;
        }

        .acc-input {
            width: 100%;
            padding: 18px 24px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 165, 0, 0.3);
            border-radius: 12px;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 400;
            outline: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .acc-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 300;
        }

        .acc-input:focus {
            border-color: #ff9500;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 4px rgba(255, 149, 0, 0.1), 0 8px 25px rgba(255, 149, 0, 0.15);
            transform: translateY(-1px);
        }

        .acc-input:valid {
            border-color: rgba(46, 204, 113, 0.6);
        }

        .acc-input.acc-error {
            border-color: #e74c3c;
            background: rgba(231, 76, 60, 0.1);
        }

        .acc-checkbox-container {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 15px 0;
        }

        .acc-checkbox {
            position: relative;
            width: 20px;
            height: 20px;
        }

        .acc-checkbox input[type="checkbox"] {
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .acc-checkbox-custom {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 165, 0, 0.4);
            border-radius: 4px;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .acc-checkbox input[type="checkbox"]:checked + .acc-checkbox-custom {
            background: #ff9500;
            border-color: #ff9500;
        }

        .acc-checkbox input[type="checkbox"]:checked + .acc-checkbox-custom::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            font-size: 12px;
            font-weight: bold;
        }

        .acc-checkbox-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            cursor: pointer;
            user-select: none;
        }

        .acc-btn {
            width: 100%;
            padding: 20px 24px;
            background: linear-gradient(135deg, #ff9500 0%, #ff7300 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
        }

        .acc-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 149, 0, 0.6);
            background: linear-gradient(135deg, #ff7300 0%, #ff5500 100%);
        }

        .acc-btn:active {
            transform: translateY(0);
        }

        .acc-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .acc-forgot-password {
            text-align: center;
            margin: 20px 0;
        }

        .acc-forgot-password a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .acc-forgot-password a:hover {
            color: #ff9500;
            text-shadow: 0 0 8px rgba(255, 149, 0, 0.4);
        }

        .acc-divider {
            margin: 35px 0 25px;
            text-align: center;
            position: relative;
        }

        .acc-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.3), transparent);
        }

        .acc-divider-text {
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.6);
            padding: 0 20px;
            font-size: 0.9rem;
            position: relative;
        }

        .acc-signup-link {
            text-align: center;
        }

        .acc-signup-link a {
            color: #ff9500;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }

        .acc-signup-link a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(255, 149, 0, 0.6);
        }

        .acc-alert {
            padding: 14px 18px;
            border-radius: 10px;
            margin-bottom: 25px;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .acc-alert-success {
            background: rgba(46, 204, 113, 0.15);
            border: 1px solid rgba(46, 204, 113, 0.3);
            color: #2ecc71;
        }

        .acc-alert-danger {
            background: rgba(231, 76, 60, 0.15);
            border: 1px solid rgba(231, 76, 60, 0.3);
            color: #e74c3c;
        }

        .acc-field-error {
            color: #e74c3c;
            font-size: 0.85rem;
            margin-top: 6px;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .acc-container {
                padding: 40px 30px;
                margin: 15px;
            }

            .acc-title {
                font-size: 2.2rem;
            }

            .acc-subtitle {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .acc-container {
                padding: 35px 25px;
            }

            .acc-input {
                padding: 16px 20px;
                font-size: 1rem;
            }

            .acc-btn {
                padding: 18px 20px;
                font-size: 1rem;
            }

            .acc-title {
                font-size: 2rem;
            }
        }

        /*For about us */

    
    /* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ab-body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.ab-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 165, 0, 0.1);
}

.ab-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.ab-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.ab-brand-icon {
    font-size: 1.5rem;
    color: #ff6b00;
    transition: transform 0.3s ease;
}

.ab-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.ab-nav-brand:hover .ab-brand-icon {
    transform: rotate(15deg);
}

.ab-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ab-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.ab-nav-link:hover,
.ab-nav-active {
    color: #ff6b00;
}

.ab-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b00, #ff8533);
    transition: width 0.3s ease;
}

.ab-nav-link:hover::after,
.ab-nav-active::after {
    width: 100%;
}

.ab-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.ab-hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.ab-hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ab-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ab-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ab-hero-content {
    z-index: 2;
}

.ab-hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.2), rgba(255, 133, 51, 0.2));
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.ab-badge-text {
    color: #ff6b00;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ab-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.ab-title-highlight {
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-hero-description {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

.ab-hero-stats {
    display: flex;
    gap: 2rem;
}

.ab-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ab-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b00;
    line-height: 1;
}

.ab-stat-label {
    font-size: 0.875rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ab-hero-visual {
    position: relative;
    height: 400px;
    z-index: 2;
}

.ab-visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    animation: ab-float 6s ease-in-out infinite;
}

.ab-card-primary {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ab-card-secondary {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.ab-card-tertiary {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.ab-card-icon {
    font-size: 1.5rem;
    color: #ff6b00;
}

.ab-card-label {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes ab-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== MISSION SECTION ===== */
.ab-mission-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.ab-mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ab-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ab-section-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.1), rgba(255, 133, 51, 0.1));
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.ab-badge-center {
    margin: 0 auto 1.5rem;
}

.ab-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.ab-title-center {
    text-align: center;
}

.ab-title-accent {
    color: #ff6b00;
}

.ab-section-description {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.ab-mission-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ab-mission-point {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ab-point-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ab-point-icon i {
    color: #ffffff;
    font-size: 0.75rem;
}

.ab-point-text {
    font-weight: 500;
    color: #333333;
}

.ab-mission-visual {
    position: relative;
}

.ab-visual-wrapper {
    position: relative;
    height: 400px;
}

.ab-floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    animation: ab-float 4s ease-in-out infinite;
}

.ab-element-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.ab-element-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1.5s;
}

.ab-element-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
}

.ab-mission-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.1), rgba(102, 102, 102, 0.1));
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
}

.ab-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

.ab-placeholder-icon {
    font-size: 3rem;
    color: #cccccc;
}

/* ===== VALUES SECTION ===== */
.ab-values-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.ab-values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ab-values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ab-value-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 107, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ab-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #ff8533);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ab-value-card:hover::before {
    transform: scaleX(1);
}

.ab-card-featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
    transform: scale(1.05);
}

.ab-card-featured .ab-value-title,
.ab-card-featured .ab-value-description {
    color: #ffffff;
}

.ab-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ab-value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.ab-value-card:hover .ab-value-icon-wrapper {
    transform: scale(1.1);
}

.ab-value-icon {
    color: #ffffff;
    font-size: 1.5rem;
}

.ab-value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.ab-value-description {
    color: #666666;
    line-height: 1.7;
}

/* ===== TEAM SECTION ===== */
.ab-team-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.ab-team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ab-team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ab-team-member {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.ab-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ab-member-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #f8f8f8, #e0e0e0);
    overflow: hidden;
}

.ab-member-image .ab-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-member-image .ab-placeholder-icon {
    font-size: 4rem;
    color: #cccccc;
}

.ab-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(255, 107, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ab-team-member:hover .ab-member-overlay {
    opacity: 1;
}

.ab-social-links {
    display: flex;
    gap: 1rem;
}

.ab-social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ab-social-link:hover {
    background-color: #ff6b00;
    transform: scale(1.1);
}

.ab-member-info {
    padding: 1.5rem;
    text-align: center;
}

.ab-member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.ab-member-role {
    color: #ff6b00;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

/* ===== CTA SECTION ===== */
.ab-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.ab-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ab-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ab-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.ab-cta-description {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ab-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ab-btn-primary {
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: #ffffff;
    border: none;
}

.ab-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.ab-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.ab-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.ab-btn-text {
    position: relative;
    z-index: 2;
}

.ab-btn-icon {
    transition: transform 0.3s ease;
}

.ab-btn:hover .ab-btn-icon {
    transform: translateX(5px);
}

/* ===== FOOTER ===== */
.ab-footer {
    background-color:#000;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.ab-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ab-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.ab-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ab-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ab-footer-description {
    color: #cccccc;
    line-height: 1.6;
    max-width: 300px;
}

.ab-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ab-footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ab-footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ff6b00;
    margin-bottom: 0.5rem;
}

.ab-footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ab-footer-link:hover {
    color: #ff6b00;
}

.ab-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.ab-copyright {
    color: #999999;
    font-size: 0.875rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .ab-nav-menu {
        display: none;
    }
    
    .ab-nav-toggle {
        display: flex;
    }
    
    .ab-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .ab-hero-title {
        font-size: 2.5rem;
    }
    
    .ab-hero-stats {
        justify-content: center;
    }
    
    .ab-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ab-section-title {
        font-size: 2rem;
    }
    
    .ab-cta-title {
        font-size: 2rem;
    }
    
    .ab-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ab-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ab-footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ab-nav-container {
        padding: 0 1rem;
    }
    
    .ab-hero-container,
    .ab-mission-container,
    .ab-values-container,
    .ab-team-container,
    .ab-cta-container,
    .ab-footer-container {
        padding: 0 1rem;
    }
    
    .ab-hero-title {
        font-size: 2rem;
    }
    
    .ab-section-title {
        font-size: 1.75rem;
    }
    
    .ab-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ab-values-grid,
    .ab-team-grid {
        grid-template-columns: 1fr;
    }
    
    .ab-value-card {
        padding: 2rem;
    }
}

/* ===== ANIMATIONS & EFFECTS ===== */
@keyframes ab-slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ab-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll animations */
.ab-hero-content,
.ab-mission-content,
.ab-values-header,
.ab-team-header,
.ab-cta-content {
    animation: ab-slideInUp 0.8s ease forwards;
}

/* Utility classes */
.ab-text-center {
    text-align: center;
}

.ab-text-left {
    text-align: left;
}

.ab-text-right {
    text-align: right;
}

.ab-mb-1 { margin-bottom: 0.25rem; }
.ab-mb-2 { margin-bottom: 0.5rem; }
.ab-mb-3 { margin-bottom: 1rem; }
.ab-mb-4 { margin-bottom: 1.5rem; }
.ab-mb-5 { margin-bottom: 2rem; }

.ab-mt-1 { margin-top: 0.25rem; }
.ab-mt-2 { margin-top: 0.5rem; }
.ab-mt-3 { margin-top: 1rem; }
.ab-mt-4 { margin-top: 1.5rem; }
.ab-mt-5 { margin-top: 2rem; }