/* Import 'Cairo' font from Google Fonts for a modern Arabic look */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

:root {
    --primary-navy: #001F5B;
    --accent-orange: #D35400;
    --light-bg: #F8F9FA;
    --text-dark: #2C3E50;
    --text-muted: #7F8C8D;
    --white: #FFFFFF;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* --- Navigation Bar --- */
.navbar {
    background-color: var(--white);
    padding: 0 5%;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-navy);
    cursor: pointer;
    padding: 10px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    text-decoration: none;
}

.logo span {
    color: var(--accent-orange);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-inline-end: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.mobile-only-menu {
    display: none; /* Hidden on desktop */
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #b94a00;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 80px 5%;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cbd5e1;
}

/* Search Bar */
.search-box {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 10px;
    border-radius: var(--border-radius);
}

.search-box input, .search-box select {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-left: 10px;
    font-family: 'Cairo', sans-serif;
}

.search-box button {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

/* --- Listings Grid --- */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
    color: var(--primary-navy);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 5%;
    margin-bottom: 50px;
}

.card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 200px;
    background-color: #ddd; /* Placeholder for images */
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-price {
    color: var(--accent-orange);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.card-meta {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

/* --- Pricing Section --- */
.pricing-section {
    background-color: var(--light-bg);
    padding: 60px 5%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* Highlight the middle plan */
.pricing-card.popular {
    border: 2px solid var(--accent-orange);
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.15);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.plan-name {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.plan-price {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.plan-price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin: 30px 0;
    text-align: right;
    flex-grow: 1; /* Pushes the button to the bottom */
}

.plan-features li {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
}

.plan-features li::before {
    content: '✅';
    margin-left: 10px;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: block;
}

.btn-outline:hover {
    background-color: var(--primary-navy);
    color: var(--white);
}

.pricing-card.popular .btn-primary {
    display: block;
    padding: 12px 20px;
}

/* --- Enriched Footer --- */
.site-footer {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 60px 5% 20px;
    margin-top: 60px; /* Pushes the footer away from main content */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-col h3 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.footer-col p {
    color: #cbd5e1; /* Soft light blue/grey for readable text */
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, padding-right 0.3s ease;
    display: inline-block;
}

/* Adds a nice little slide effect on hover for Arabic RTL */
.footer-col ul li a:hover {
    color: var(--accent-orange);
    padding-right: 8px; 
}

.footer-bottom {
    text-align: center;
    color: #cbd5e1;
    font-size: 14px;
}
/* --- Footer Social Icons --- */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.4);
}

/* --- Footer App Store Badges --- */
.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #333;
    transition: transform 0.3s ease;
    width: fit-content;
}

.app-badge:hover {
    transform: scale(1.05);
    background-color: #111;
}

.app-badge i {
    font-size: 26px;
    margin-left: 12px; /* Margin left because of RTL layout */
}

.app-badge-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.app-badge-text .small-text {
    font-size: 10px;
    color: #aaa;
    line-height: 1;
    margin-bottom: 3px;
}

.app-badge-text .large-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    font-family: sans-serif; /* Keep English text in a standard font */
}
/* --- Live Prices Board --- */
.prices-section {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 50px 5%;
    margin-bottom: 50px;
}

.prices-header {
    text-align: center;
    margin-bottom: 30px;
}

.prices-header h2 {
    color: var(--accent-orange);
    font-size: 28px;
    margin-bottom: 10px;
}

.prices-header p {
    color: #cbd5e1;
}

.prices-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    min-width: 200px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.price-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
}

/* Indicators for price going up or down */
.trend-up {
    color: #2ecc71; /* Green */
    font-size: 14px;
    margin-right: 5px;
}

.trend-down {
    color: #e74c3c; /* Red */
    font-size: 14px;
    margin-right: 5px;
}
/* --- Urgent Tenders Section --- */
.tenders-section {
    padding: 60px 5%;
    background-color: #fff;
}

.tender-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tender-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border: 1px solid #eee;
    border-right: 5px solid var(--accent-orange); /* Highlight for RTL */
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.tender-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-right-color: var(--primary-navy);
}

.tender-info h3 {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.tender-info p {
    font-size: 14px;
    color: var(--text-muted);
}

.tender-stats {
    display: flex;
    gap: 30px;
    text-align: center;
}

.stat-box .label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.stat-box .value {
    font-weight: 700;
    color: var(--text-dark);
}

/* Pulse Animation for URGENT badge */
.badge-urgent {
    background-color: #ffeae6;
    color: #e74c3c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tender-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        border-right: none;
        border-top: 5px solid var(--accent-orange);
    }
    .tender-stats {
        gap: 15px;
    }
}
/* --- Trust Bar & Stats --- */
.trust-section {
    background-color: var(--white);
    padding: 40px 5%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 40px;
    text-align: center;
}

.stat-box-large {
    padding: 20px;
}

.stat-box-large i {
    font-size: 32px;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-navy);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- Partners Section --- */
.partners-header {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    filter: grayscale(100%); /* Professional grayscale look */
    opacity: 0.6;
    transition: all 0.5s ease;
}

.partners-grid:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo {
    max-width: 120px;
    height: auto;
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 30px;
    }
}
/* --- Back to Top Button --- */
#backToTop {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Positioned left for RTL layouts */
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Hidden by default, shown via JS */
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

#backToTop:hover {
    background-color: var(--primary-navy);
    transform: translateY(-5px);
}
/* --- Registration Page --- */
.auth-container {
    display: flex;
    min-height: 90vh;
    background-color: var(--white);
}

.auth-sidebar {
    flex: 1;
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: linear-gradient(rgba(0,31,91,0.8), rgba(0,31,91,0.8)), url('https://via.placeholder.com/800x1200?text=Industrial+Scrap');
    background-size: cover;
}

.auth-form-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-navy);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Cairo', sans-serif;
}

.form-control:focus {
    border-color: var(--accent-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

.role-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.role-option {
    flex: 1;
    text-align: center;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.role-option.active {
    border-color: var(--accent-orange);
    background-color: rgba(211, 84, 0, 0.05);
}

@media (max-width: 992px) {
    .auth-sidebar { display: none; }
    .auth-form-section { padding: 40px 20px; }
}
/* Password Toggle Styling */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper .form-control {
    padding-left: 45px; /* Space for the icon on the left in RTL */
}

.toggle-password {
    position: absolute;
    left: 15px; /* Positioned left for Arabic RTL */
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s;
    z-index: 10;
}

.toggle-password:hover {
    color: var(--accent-orange);
}

/* Enhanced Login Link */
.login-redirect {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 15px;
    color: var(--text-dark);
}

.login-redirect a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
    margin-right: 5px;
}

.login-redirect a:hover {
    text-decoration: underline;
}
/* Styling for the location row */
.form-row {
    display: flex;
    gap: 15px;
}
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
.form-row .form-group {
    flex: 1;
}
/* --- Customizing Select2 to match our brand --- */
.select2-container--default .select2-selection--single {
    height: 48px !important; /* Match form-control height */
    border: 1px solid #ddd !important;
    border-radius: var(--border-radius) !important;
    background-color: #fff;
}

/* Fix text alignment and vertical centering */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px !important; /* 48px height minus 2px for top/bottom borders */
    padding-right: 15px !important; /* Space from the right edge for RTL */
    padding-left: 35px !important; /* Prevent text from hiding under the left arrow */
    color: var(--text-dark) !important;
    font-family: 'Cairo', sans-serif !important;
}

/* Center the dropdown arrow vertically */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important; /* Match inner height */
    top: 1px !important;
    left: 10px !important; /* Keep arrow on the left for Arabic */
    right: auto !important;
}

/* Dropdown menu styling */
.select2-dropdown {
    border: 1px solid var(--accent-orange) !important;
    border-radius: var(--border-radius) !important;
    font-family: 'Cairo', sans-serif !important;
    z-index: 9999;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-navy) !important;
}

.select2-search__field {
    font-family: 'Cairo', sans-serif !important;
}
/* Navbar User Menu Responsive */
@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        padding: 10px 5%;
        align-items: stretch;
    }

    .nav-mobile-top {
        width: 100%;
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 15px;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0;
        padding: 5px 0;
        width: 100%;
    }

    .nav-actions {
        display: none !important; /* Hide redundant actions as they are now in nav-links */
    }

    .mobile-only-menu {
        display: block;
        width: 100%;
    }

    .mobile-only-menu hr {
        border: 0;
        border-top: 1px solid #eee;
        margin: 10px 0;
    }

    .mobile-only-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        color: var(--text-dark);
        font-weight: 600;
    }

    .mobile-only-menu a i {
        width: 20px;
        text-align: center;
        color: var(--accent-orange);
    }

    .lang-switcher {
        order: 2;
        text-align: center;
    }

    .user-dropdown {
        order: 1;
        width: 100%;
    }

    .dropdown-trigger {
        width: 100%;
        justify-content: center;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid #eee;
        margin-top: 10px;
    }

    .btn-primary {
        text-align: center;
    }
}
/* --- User Dashboard Layout --- */
.dashboard-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    min-height: 60vh;
}

/* Sidebar Styling */
.dashboard-sidebar {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    align-self: start;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-right: 3px solid transparent;
    transition: all 0.3s ease;
}

.sidebar-menu li a:hover, .sidebar-menu li a.active {
    background-color: rgba(211, 84, 0, 0.05);
    color: var(--accent-orange);
    border-right-color: var(--accent-orange);
}

.sidebar-menu li a i {
    width: 25px;
    text-align: center;
    margin-left: 10px;
}

/* Main Content Styling */
.dashboard-content {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* Pro Header Styling */
.pro-header {
    position: relative;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
}

.pro-cover {
    height: 180px;
    position: relative;
}

.change-cover-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none;
    transition: 0.3s;
}

.change-cover-btn:hover {
    background: rgba(255,255,255,0.3);
}

.pro-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #38a169;
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(56,161,105,0.3);
}

.pro-profile-section {
    padding: 0 30px 25px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: -50px;
}

.pro-profile-img-wrapper {
    position: relative;
}

.pro-profile-img {
    width: 110px;
    height: 110px;
    border-radius: 25px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pro-info {
    padding-bottom: 5px;
    flex: 1;
}

.pro-name {
    color: var(--primary-navy);
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 800;
}

.pro-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #64748b;
    font-size: 14px;
}

.pro-meta span i {
    margin-left: 5px;
}

.pro-meta span:first-child i { color: #3182ce; }
.pro-meta span:last-child i { color: #e53e3e; }

.pro-actions {
    padding-bottom: 5px;
}

/* Stats Cards */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 15px;
}

.stat-icon.ads { background: #e6fffa; color: #319795; }
.stat-icon.views { background: #ebf8ff; color: #3182ce; }
.stat-icon.plan { background: #fffaf0; color: #dd6b20; }

.stat-value {
    font-size: 28px;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.stat-value.plan-text {
    font-size: 22px;
    color: var(--accent-orange);
    padding-top: 6px;
    margin-bottom: 11px;
}

.stat-label {
    color: #718096;
    font-size: 14px;
}

/* Quick Actions */
.quick-actions-section {
    margin-bottom: 30px;
}

.section-title {
    color: var(--primary-navy);
    font-size: 18px;
    margin-bottom: 15px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.action-card {
    text-decoration: none;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
}

.action-card:hover {
    border-color: var(--accent-orange);
}

.action-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon.profile { background: #fff5f5; color: #e53e3e; }
.action-icon.settings { background: #f7fafc; color: #4a5568; }
.action-icon.support { background: #ebf8ff; color: #3182ce; }

.action-text {
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

.dashboard-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid #eee;
}

.stat-card h3 {
    font-size: 30px;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 992px) {
    .dashboard-container {
        grid-template-columns: 1fr;
        margin: 20px auto;
    }
    .dashboard-sidebar {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    .sidebar-menu {
        display: flex;
        overflow-x: auto;
        background: #fff;
        padding: 5px;
        gap: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border-bottom: 1px solid #edf2f7;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    
    .sidebar-menu::-webkit-scrollbar {
        display: none;
    }
    
    .sidebar-menu li {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }
    
    .sidebar-menu li:not(:last-child):not(.menu-divider)::after {
        content: "";
        width: 1px;
        height: 25px;
        background: #e2e8f0;
        align-self: center;
    }
    
    .sidebar-menu li a {
        border-right: none;
        border-bottom: 3px solid transparent;
        padding: 12px 20px;
        white-space: nowrap;
        font-size: 13px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
        color: #64748b;
        transition: all 0.2s ease;
    }
    
    .sidebar-menu li a:hover, .sidebar-menu li a.active {
        background: transparent;
        color: var(--accent-orange);
        border-bottom-color: var(--accent-orange);
        font-weight: 700;
    }
    
    .sidebar-menu li a i {
        margin: 0;
        font-size: 18px;
        opacity: 0.8;
    }
    
    .sidebar-menu li a.active i {
        opacity: 1;
    }

    .menu-divider {
        display: none;
    }

    /* Pro Header Responsive */
    .pro-profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -60px;
        padding: 0 15px 20px;
    }
    .pro-info {
        padding-bottom: 10px;
    }
    .pro-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .pro-actions {
        width: 100%;
        margin-top: 15px;
    }
    .pro-actions .btn-outline {
        justify-content: center;
        width: 100%;
    }

    .dashboard-content {
        padding: 20px;
    }
    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }
    .stat-card {
        padding: 15px;
    }
    .stat-value {
        font-size: 22px;
    }
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .missing-steps-list .step-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}
/* Pro Metrics Styling */
.pro-metrics {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    color: #fff;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.metric-item {
    text-align: center;
}

.metric-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.metric-value {
    font-size: 28px;
    font-weight: 800;
}

.metric-value.trust { color: #38a169; }
.metric-value.response { color: #3182ce; }
.metric-value.reach { color: #f6ad55; }

.metric-sub {
    font-size: 12px;
    color: #64748b;
    margin-top: 5px;
}

.metric-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
}

/* Completeness Widget Styling */
.completeness-widget {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #edf2f7;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.completeness-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.completeness-title {
    margin: 0;
    color: var(--primary-navy);
    font-size: 18px;
    font-weight: 800;
}

.completeness-subtitle {
    margin: 5px 0 0;
    font-size: 14px;
    color: #718096;
}

.completeness-percentage {
    background: #fffaf0;
    color: #dd6b20;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
}

.completeness-bar-wrapper {
    width: 100%;
    height: 12px;
    background: #edf2f7;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.completeness-bar {
    height: 100%;
    background: linear-gradient(90deg, #f6ad55, #ed8936);
    transition: width 1.5s cubic-bezier(0.1, 0.7, 1.0, 0.1);
}

.missing-steps-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.step-item {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 8px;
    color: #4a5568;
    font-size: 13px;
    transition: 0.3s;
}

.step-item:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* Recent Ads Table Styling */
.table-responsive {
    overflow-x: auto;
}

.recent-ads-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
}

.recent-ads-table thead {
    background: #f8fafc;
}

.recent-ads-table th {
    padding: 15px 20px;
    color: #4a5568;
    font-weight: 600;
    font-size: 14px;
}

.recent-ads-table tr {
    border-bottom: 1px solid #edf2f7;
}

.recent-ads-table td {
    padding: 15px 20px;
}

.ad-title {
    color: #2d3748;
    font-weight: 500;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-badge.active { background: #e6fffa; color: #2c7a7b; }
.status-badge.sold { background: #fff5f5; color: #c53030; }

.ad-views {
    color: #718096;
    font-size: 14px;
}

.ad-views i {
    margin-left: 5px;
    color: #a0aec0;
}

.edit-link {
    color: #3182ce;
    background: #ebf8ff;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 992px) {
    .metric-divider {
        display: none;
    }
    .pro-metrics {
        justify-content: center;
        padding: 20px;
    }
}
.alert {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    position: relative;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-icon {
    font-size: 20px;
    margin-left: 15px; /* RTL spacing */
}

.alert-message {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}

.alert-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.5;
    line-height: 1;
}

.alert-close:hover { opacity: 1; }

/* Success Style */
.alert-success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* Error Style */
.alert-danger {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
/* Warning Alert Style */
.alert-warning {
    background-color: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

.alert-warning strong {
    color: #78350f;
}
.listing-view-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: start;
    overflow: hidden;
}

@media (max-width: 992px) {
    .listing-view-wrapper {
        grid-template-columns: 1fr;
    }
    .listing-sidebar {
        position: static !important;
    }
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* --- User Dropdown --- */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.dropdown-trigger i:first-child {
    color: var(--accent-orange);
    font-size: 18px;
}

.dropdown-trigger:hover {
    background: #f1f5f9;
    border-color: var(--accent-orange);
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0; 
    top: 100%;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    border: 1px solid #edf2f7;
    border-top: none;
    overflow: hidden;
    padding: 10px 0;
}

.user-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.2s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 5px;
}

.dropdown-header strong {
    display: block;
    color: var(--primary-navy);
    font-size: 14px;
    text-align: right;
}

.dropdown-header span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
}

.dropdown-content a {
    color: #4a5568;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
    text-align: right;
}

.dropdown-content a:hover {
    background-color: #f8fafc;
    color: var(--accent-orange);
}

.dropdown-content a i {
    margin-left: 10px;
    width: 20px;
    text-align: center;
    color: #94a3b8;
}

.dropdown-content hr {
    border: 0;
    border-top: 1px solid #f1f5f9;
    margin: 5px 0;
}

.dropdown-content .badge {
    background: #e74c3c;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

.logout-link {
    color: #e53e3e !important;
}

.logout-link:hover {
    background-color: #fff5f5 !important;
}

/* --- Home Slider Responsive --- */
@media (max-width: 768px) {
    .home-slider {
        height: 350px !important;
    }
    
    .slide-content h1 {
        font-size: 28px !important;
    }
    
    .slide-content p {
        font-size: 16px !important;
        margin-bottom: 15px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .slide-content .search-box {
        padding: 5px !important;
        flex-direction: column;
        width: 100% !important;
    }
    
    .slide-content .search-box input, 
    .slide-content .search-box select {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 10px !important;
        font-size: 14px !important;
    }
    
    .slide-content .btn-primary {
        padding: 8px 20px !important;
        font-size: 14px !important;
    }
}
/* --- Contact Page Styling --- */
.contact-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    background: #f7fafc;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-list {
    display: grid;
    gap: 25px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-icon.address { background: #ebf8ff; color: #3182ce; }
.info-icon.email { background: #e6fffa; color: #2f855a; }
.info-icon.phone { background: #fff5f5; color: #e53e3e; }

.info-text h4 {
    margin: 0 0 5px;
    color: var(--primary-navy);
    font-size: 18px;
}

.info-text p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-form-container h3 {
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--primary-navy);
    font-size: 24px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #4a5568;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    transition: 0.3s;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent-orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: #b94a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.3);
}

/* --- Contact Page Responsive --- */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-header {
        padding: 60px 0;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
}

/* --- Suggestions Page Styling --- */
.suggestions-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 100px 5% 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: url('https://www.transparenttextures.com/patterns/circuit-board.png');
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.badge-creative {
    background: rgba(211, 84, 0, 0.2);
    color: var(--accent-orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

.suggestions-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.suggestions-hero p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
}

.suggestions-content {
    padding: 0 5% 100px;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.suggestions-inner {
    max-width: 900px;
    margin: 0 auto;
}

.suggestion-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    padding: 50px;
    border: 1px solid #f1f5f9;
}

.card-header {
    text-align: center;
    margin-bottom: 40px;
}

.card-header h2 {
    color: var(--primary-navy);
    font-size: 28px;
    margin-bottom: 10px;
}

.card-header p {
    color: #64748b;
}

.alert-suggestion-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 35px;
    text-align: center;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #dcfce7;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
}

.suggestion-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.suggestion-form .form-group {
    margin-bottom: 25px;
}

.suggestion-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
}

.suggestion-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: 0.3s;
    font-family: inherit;
}

.suggestion-form .form-control:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(211, 84, 0, 0.1);
}

.captcha-wrapper {
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 35px;
    border: 1px dashed #cbd5e1;
    text-align: center;
}

.captcha-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
}

.captcha-math {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-navy);
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.captcha-input {
    width: 120px !important;
    text-align: center;
}

.btn-submit-suggestion {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.2);
}

.btn-submit-suggestion:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(211, 84, 0, 0.3);
    background: #b94a00;
}

.suggestion-features {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    text-align: center;
}

.feature-item {
    padding: 20px;
}

.feature-item i {
    font-size: 30px;
    margin-bottom: 15px;
    display: inline-block;
}

.icon-award { color: var(--accent-orange); }
.icon-check { color: #22c55e; }
.icon-users { color: #0ea5e9; }

.feature-item h4 {
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.feature-item p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* --- Suggestions Responsive --- */
@media (max-width: 992px) {
    .suggestion-card {
        padding: 40px 30px;
    }
    
    .suggestions-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .suggestions-hero {
        padding: 80px 20px 120px;
    }

    .suggestions-content {
        padding: 0 20px 100px;
    }

    .suggestion-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .suggestion-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .suggestion-card {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .captcha-box {
        flex-direction: column;
        gap: 15px;
    }
    
    .captcha-input {
        width: 100% !important;
    }
}


.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.preview-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #edf2f7;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.preview-wrapper:hover .preview-img {
    transform: scale(1.05);
    border-color: var(--accent-orange);
}

.remove-img {
    position: absolute;
    top: -8px;
    left: -8px; /* RTL aware */
    background: #ff4d4d;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    transition: 0.2s;
}

.remove-img:hover {
    background: #cc0000;
    transform: scale(1.1);
}
