* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional Color Palette */
    --primary-green: #2E7D32;
    --primary-green-light: #4CAF50;
    --primary-green-dark: #1B5E20;
    --secondary-blue: #1565C0;
    --secondary-blue-light: #2196F3;
    --accent-orange: #F57C00;
    --accent-orange-light: #FF9800;
    --neutral-gray: #424242;
    --neutral-gray-light: #757575;
    --neutral-gray-lighter: #BDBDBD;
    --background-light: #FAFAFA;
    --background-white: #FFFFFF;
    --text-primary: #212121;
    --text-secondary: #616161;
    --success-green: #388E3C;
    --warning-amber: #F57C00;
    --error-red: #D32F2F;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--background-light) 0%, #E8F5E8 100%);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Navbar Layout */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: relative;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-left .logo img {
    height: 40px;
}

.nav-links-left,
.nav-links-right {
    display: flex;
    gap: 15px;
    list-style: none;
    margin-right: 5px;
}

.nav-links-left li a,
.nav-links-right li a span {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links-left li a::after,
.nav-links-right li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links-left li a:hover::after,
.nav-links-right li a:hover::after {
    width: 100%;
}

.nav-links-left li a:hover,
.nav-links-right li a:hover {
    color: var(--primary-green);
}

/* Center Logo Text */
.nav-logo-middle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
   
    
}

.nav-logo-middle a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-green) !important;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu div {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
}

.toggle-btn #themeToggleMobile {
    display: none;
}

#themeToggleDesktop {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    #themeToggleDesktop {
        display: none;
    }

    #themeToggleMobile {
        display: block;
        width: 100%;
        text-align: left;
        border: none;
        background: none;
        padding: 10px 0;
        margin: 0;
        border-radius: 0;
    }
}

main {
    margin-top: 80px;
}

.hero {
    background-image:
        linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(27, 94, 32, 0.14)),
        url('https://i.ibb.co/nNJsZptN/IMG-20250917-WA0071.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

 
.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.cta-button {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-orange-light));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.4);
    background: linear-gradient(45deg, #EF6C00, var(--accent-orange));
}

 .stats {
            background: white;
            padding: 4rem 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-green), #388E3C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
        }

        .stat-label {
            color: #616161;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
        }




        

.features {
            padding: 3rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #F1F8E9 100%);
        }

        .features h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #1b4332;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.features h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4caf50, #2e7d32);
  margin: 12px auto 0;
  border-radius: 2px;
}

        .feature-slider {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }

        .feature-track {
            display: flex;
            gap: 2rem;
            animation: autoScroll 40s linear infinite;
        }

        @keyframes autoScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-340px * 6)); }
        }

        .feature-track:hover {
            animation-play-state: paused;
        }

        .feature-card {
            flex: 0 0 320px;
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(76, 175, 80, 0.2);
            border-color: var(--primary-green-light);
        }

        .feature-img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--primary-green-dark);
            font-weight: 700;
        }

        .feature-card p {
            color: #616161;
            line-height: 1.8;
        }






.recommendation-form {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-green));
    padding: 5rem 0;
    position: relative;
}

.recommendation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('e"/><path d="M20 20l5 5-5 5-5-5z" fill="rgba(255,255,255,0.1)"/><path d="M80 30l3 3-3 3-3-3z" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.2;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-green-dark);
    font-size: 2.2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid var(--neutral-gray-lighter);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

.form-group input:valid,
.form-group select:valid {
    border-color: var(--success-green);
}

.submit-button {
    text-align: center;
    margin-top: 2rem;
}

.loading {
    display: none;
    text-align: center;
    margin: 2rem 0;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.result-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #E8F5E8, #C8E6C8);
    border-radius: 15px;
    display: none;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.crop-recommendation {
    background: linear-gradient(135deg, var(--primary-green), var(--success-green));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.25);
    transition: transform 0.3s ease;
}

.crop-recommendation:hover {
    transform: translateX(5px);
}

.crop-recommendation h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.crop-reasons {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.crop-reasons div {
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

/* ============================================
   ENHANCED WEATHER SECTION - Replace in style.css
   ============================================ */

.weather-section {
    padding: 2.5rem 0;
    width: 100%;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    position: relative;
    overflow: hidden;

}

.weather-section::before {
    content: '';
    position: absolute;
    top: 42;
    left: 30;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(46,125,50,0.1)"/><circle cx="90" cy="90" r="1" fill="rgba(46,125,50,0.1)"/></svg>');
    opacity: 0.3;
}

.weather-widget {
    position: relative;
    z-index: 1;
    
}

.weather-header-title {
    text-align: center;
    margin-bottom: 3rem;
}

.weather-header-title h2 {
    font-size: 2.5rem;
    color: var(--primary-green-dark);
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.weather-header-title h2 .material-symbols-outlined {
    color: var(--accent-orange);
    font-size: 3rem;
}

.weather-header-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.weather-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

/* Main Weather Card */
.main-weather-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(46, 125, 50, 0.15);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green-light);
}

.main-weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(46, 125, 50, 0.25);
}

.current-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.current-location .material-symbols-outlined {
    color: var(--accent-orange);
    font-size: 1.5rem;
}

.main-temp-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--background-light);
}

.temp-section {
    display: flex;
    align-items: flex-start;
}

.temp-value-main {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--primary-green-dark);
}

.temp-unit {
    font-size: 2rem;
    margin-top: 10px;
    color: var(--primary-green);
    font-weight: 400;
}

.weather-icon-main {
    font-size: 5.5rem;
    color: var(--accent-orange);
    filter: drop-shadow(0 4px 8px rgba(245, 124, 0, 0.3));
}

.weather-description {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary-green-dark);
    font-weight: 600;
}

.feels-like {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Weather Stats Grid */
.weather-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.weather-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #F1F8E9, #E8F5E9);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.weather-stat-item:hover {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    transform: translateX(5px);
}

.stat-icon-weather {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.stat-info-weather {
    display: flex;
    flex-direction: column;
}

.stat-label-weather {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 3px;
    font-weight: 500;
}

.stat-value-weather {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green-dark);
}

/* Side Weather Cards */
.side-weather-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.weather-info-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.12);
    border: 2px solid var(--primary-green-light);
    transition: all 0.3s ease;
}

.weather-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.2);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green-dark);
}

.info-card-header .material-symbols-outlined {
    color: var(--accent-orange);
    font-size: 1.8rem;
}

.info-card-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.air-quality-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--primary-green), var(--success-green));
    color: white;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 12px;
    font-size: 0.9rem;
}

/* Forecast Section */
.forecast-section {
    margin-top: 40px;
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(46, 125, 50, 0.15);
}

.forecast-title {
    color: var(--primary-green-dark);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.forecast-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
}

.forecast-card {
    background: linear-gradient(135deg, #F1F8E9, #E8F5E9);
    border-radius: 18px;
    padding: 20px 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.forecast-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green-light);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.forecast-day {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.forecast-icon {
    font-size: 2.8rem;
    margin: 10px 0;
    color: var(--accent-orange);
}

.forecast-temp {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-green-dark);
}

.forecast-condition {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Action Buttons */
.weather-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.weather-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--success-green));
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.weather-btn:hover {
    background: linear-gradient(135deg, var(--success-green), var(--primary-green-dark));
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
}

.weather-btn .material-symbols-outlined {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .weather-container {
        grid-template-columns: 1fr;
    }
    
    .side-weather-cards {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .weather-header-title h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .main-weather-card {
        padding: 25px;
    }
    
    .temp-value-main {
        font-size: 4rem;
    }
    
    .weather-icon-main {
        font-size: 4rem;
    }
    
    .weather-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .side-weather-cards {
        flex-direction: column;
    }
    
    .forecast-cards {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    }
    
    .forecast-section {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .weather-section {
        padding: 3rem 0;
    }
    
    .main-temp-display {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .forecast-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .weather-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Dark Mode Support */
body.dark-mode .main-weather-card,
body.dark-mode .weather-info-card,
body.dark-mode .forecast-section {
    background: #2c2c2c;
    border-color: #4CAF50;
}

body.dark-mode .weather-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d4a2e 100%);
}

body.dark-mode .weather-description,
body.dark-mode .temp-value-main,
body.dark-mode .stat-value-weather,
body.dark-mode .forecast-temp,
body.dark-mode .forecast-title {
    color: #f0f0f0;
}

body.dark-mode .weather-stat-item {
    background: linear-gradient(135deg, #1e3a1e, #2d4a2e);
}

body.dark-mode .forecast-card {
    background: linear-gradient(135deg, #1e3a1e, #2d4a2e);
}

body.dark-mode .forecast-card:hover {
    background: linear-gradient(135deg, #2d4a2e, #3a5e3a);
}

/* Market Section Modern Design */
        .market-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
            position: relative;
        }

        .market-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .market-header h2 {
            font-size: 2.5rem;
            color: var(--primary-green-dark);
            margin-bottom: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .market-header h2 .material-symbols-outlined {
            color: var(--accent-orange);
            font-size: 3rem;
        }

        .market-header p {
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        /* Filter and Search Bar */
        .market-controls {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            align-items: center;
            background: white;
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(46, 125, 50, 0.1);
        }

        .search-box {
            flex: 1;
            min-width: 250px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 12px 45px 12px 45px;
            border: 2px solid var(--neutral-gray-lighter);
            border-radius: 15px;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
        }

        .search-box .material-symbols-outlined {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
        }

        .filter-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 20px;
            border: 2px solid var(--primary-green-light);
            background: white;
            color: var(--primary-green-dark);
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .filter-btn:hover, .filter-btn.active {
            background: linear-gradient(135deg, var(--primary-green), var(--success-green));
            color: white;
            border-color: var(--primary-green);
        }

        .refresh-btn {
            padding: 12px 25px;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
            color: white;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
        }

        .refresh-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
        }

        /* Market Cards Grid */
        .market-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .market-card {
            background: white;
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 8px 30px rgba(46, 125, 50, 0.12);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .market-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--success-green));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .market-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-green-light);
            box-shadow: 0 12px 40px rgba(46, 125, 50, 0.2);
        }

        .market-card:hover::before {
            transform: scaleX(1);
        }

        .market-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .crop-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .crop-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #F1F8E9, #E8F5E9);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
        }

        .crop-details h3 {
            font-size: 1.3rem;
            color: var(--primary-green-dark);
            margin-bottom: 3px;
        }

        .crop-variety {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .trend-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .trend-up {
            background: rgba(76, 175, 80, 0.15);
            color: #388E3C;
        }

        .trend-down {
            background: rgba(244, 67, 54, 0.15);
            color: #D32F2F;
        }

        .trend-stable {
            background: rgba(255, 152, 0, 0.15);
            color: #F57C00;
        }

        .price-section {
            margin-bottom: 20px;
        }

        .current-price {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-green-dark);
            margin-bottom: 5px;
        }

        .price-unit {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .price-change {
            font-size: 0.95rem;
            font-weight: 600;
            margin-top: 5px;
        }

        .market-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--background-light);
        }

        .detail-item {
            display: flex;
            flex-direction: column;
        }

        .detail-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 3px;
        }

        .detail-value {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Price Chart Toggle */
        .chart-container {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 8px 30px rgba(46, 125, 50, 0.12);
            margin-top: 30px;
            display: none;
        }

        .chart-container.active {
            display: block;
            animation: fadeInUp 0.5s ease;
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .chart-header h3 {
            font-size: 1.5rem;
            color: var(--primary-green-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .chart-placeholder {
            height: 300px;
            background: linear-gradient(135deg, #F1F8E9, #E8F5E9);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        /* Stats Summary */
        .market-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .stat-card {
            background: white;
            padding: 25px;
            border-radius: 18px;
            box-shadow: 0 5px 20px rgba(46, 125, 50, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(46, 125, 50, 0.15);
        }

        .stat-icon {
            font-size: 2.5rem;
            color: var(--accent-orange);
            margin-bottom: 10px;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-green-dark);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Action Buttons */
        .market-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .market-btn {
            padding: 14px 30px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            border: none;
        }

        .market-btn-primary {
            background: linear-gradient(135deg, var(--primary-green), var(--success-green));
            color: white;
            box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
        }

        .market-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
        }

        .market-btn-secondary {
            background: white;
            color: var(--primary-green-dark);
            border: 2px solid var(--primary-green);
        }

        .market-btn-secondary:hover {
            background: var(--primary-green);
            color: white;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .market-grid {
                grid-template-columns: 1fr;
            }

            .market-controls {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-buttons {
                justify-content: center;
            }

            .market-header h2 {
                font-size: 2rem;
                flex-direction: column;
            }
        }

        /* Dark Mode */
        body.dark-mode .market-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d4a2e 100%);
        }

        body.dark-mode .market-card,
        body.dark-mode .market-controls,
        body.dark-mode .chart-container,
        body.dark-mode .stat-card {
            background: #2c2c2c;
            border-color: #4CAF50;
        }

        body.dark-mode .current-price,
        body.dark-mode .stat-value,
        body.dark-mode .crop-details h3 {
            color: #f0f0f0;
        }

        body.dark-mode .search-box input {
            background: #333;
            color: #f0f0f0;
            border-color: #555;
        }

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-toggle {
    background: linear-gradient(135deg, var(--primary-green), var(--success-green));
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(76, 175, 80, 0.5); }
    100% { box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3); }
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    animation: none;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: var(--background-white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    animation: slideInUp 0.3s ease-out;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-green), var(--success-green));
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: var(--background-light);
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 3px;
}

.message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 15px;
    max-width: 85%;
    word-wrap: break-word;
    animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-message {
    background: linear-gradient(135deg, var(--primary-green), var(--success-green));
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.bot-message {
    background: var(--background-white);
    border: 1px solid #E0E0E0;
    color: var(--text-primary);
    border-bottom-left-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.typing-indicator {
    background: var(--background-white);
    border: 1px solid #E0E0E0;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    max-width: 85%;
    animation: pulse 1.5s infinite;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-green);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

.chatbot-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid #E0E0E0;
    background: var(--background-white);
    border-radius: 0 0 20px 20px;
}

.chatbot-input input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 25px;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-color: var(--primary-green);
}

.chatbot-input button {
    background: linear-gradient(135deg, var(--primary-green), var(--success-green));
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    margin-left: 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.chatbot-input button:hover {
    background: linear-gradient(135deg, var(--success-green), var(--primary-green-dark));
    transform: translateY(-1px);
}

.footer {
    background: linear-gradient(135deg, var(--text-primary), var(--primary-green-dark));
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section a {
    color: #C8E6C8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Community Toggle Button */
.community-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.community-toggle {
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-blue-light));
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    margin-bottom: 10px;
}

.community-toggle:hover {
    transform: scale(1.1);
    animation: none;
}

.community-panel {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 400px;
    height: 600px;
    background: var(--background-white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    animation: slideInUp 0.3s ease-out;
}

.community-header {
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-blue-light));
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
    font-weight: bold;
}

.community-tabs {
    display: flex;
    background: var(--background-light);
    border-bottom: 1px solid #E0E0E0;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.tab-btn.active {
    background: var(--background-white);
    color: var(--secondary-blue);
    border-bottom: 2px solid var(--secondary-blue);
}

.community-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

/* Community Posts */
.post {
    background: var(--background-white);
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.post:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--success-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.post-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.post-content {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.post-actions {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.post-actions span {
    cursor: pointer;
    transition: color 0.3s ease;
}

.post-actions span:hover {
    color: var(--secondary-blue);
}

/* Consultancy Section */
.consultancy-options {
    display: grid;
    gap: 1rem;
}

.consultant-card {
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
    background: var(--background-white);
}

.consultant-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.consultant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.consultant-name {
    font-weight: bold;
    color: var(--text-primary);
}

.consultant-rating {
    color: var(--accent-orange);
}

.consultant-price {
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.consultant-speciality {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.book-btn {
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-blue-light));
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: linear-gradient(135deg, var(--secondary-blue-light), var(--secondary-blue));
    transform: translateY(-1px);
}

.book-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Post Creation */
.create-post {
    background: var(--background-light);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.create-post textarea {
    width: 100%;
    min-height: 80px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    padding: 0.5rem;
    resize: vertical;
    font-family: inherit;
    background: var(--background-white);
}

.post-btn {
    background: var(--secondary-blue);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 0.5rem;
    float: right;
    transition: all 0.3s ease;
}

.post-btn:hover {
    background: var(--secondary-blue-light);
}

/* Toggle Button */
.toggle-btn {
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 50%;
    background: none;
    border: 1px solid var(--neutral-gray-lighter);
    font-size: 14px;
    margin-left: 15px;
    transition: background 0.3s;
    color: var(--text-primary);
}

.toggle-btn:hover {
    background: var(--background-light);
}

/* Dark Mode Styles */
body.dark-mode {
    background: linear-gradient(135deg, #1c1c1c, #121212);
    color: #f0f0f0;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --background-white: #2c2c2c;
    --background-light: #1e1e1e;
}

body.dark-mode header {
    background: rgba(28, 28, 28, 0.95);
}

body.dark-mode .nav-links-left li a,
body.dark-mode .nav-links-right li a span {
    color: #f0f0f0;
}

body.dark-mode .nav-links-left li a:hover,
body.dark-mode .nav-links-right li a:hover {
    color: var(--primary-green-light);
}

body.dark-mode .hero {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(28, 28, 28, 0.3)),
        url('https://i.ibb.co/nNJsZptN/IMG-20250917-WA0071.jpg');
}

body.dark-mode .stats {
    background: #1e1e1e;
}

body.dark-mode .features {
    background: linear-gradient(135deg, #181818, #1a1a1a);
}

body.dark-mode .feature-card {
    background: #2c2c2c;
    color: #e0e0e0;
    border: 1px solid #444;
}

body.dark-mode .feature-card h3 {
    color: var(--primary-green-light);
}

body.dark-mode .form-container {
    background: rgba(44, 44, 44, 0.95);
    color: #e0e0e0;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select {
    background: #333;
    color: #e0e0e0;
    border-color: #555;
}

body.dark-mode .weather-section {
    background: linear-gradient(to top, var(--secondary-blue-light), #1e1e1e);
}

body.dark-mode .market-section {
    background: linear-gradient(to top, var(--primary-green-dark), #1e1e1e);
}

body.dark-mode .market-prices {
    background: #2c2c2c;
    color: #e0e0e0;
}

body.dark-mode .price-table tr:nth-child(even) {
    background: #333;
}

body.dark-mode .price-table tr:nth-child(odd) {
    background: #2c2c2c;
}

body.dark-mode .chatbot-window {
    background: #2c2c2c;
    color: #e0e0e0;
}

body.dark-mode .chatbot-messages {
    background: #1e1e1e;
}

body.dark-mode .bot-message {
    background: #333;
    border-color: #555;
    color: #e0e0e0;
}

body.dark-mode .toggle-btn {
    background: #333;
    color: #fff;
    border-color: #555;
}

body.dark-mode .community-panel {
    background: #2c2c2c;
    color: #e0e0e0;
}

body.dark-mode .community-tabs {
    background: #1e1e1e;
}

body.dark-mode .tab-btn.active {
    background: #333;
    color: var(--secondary-blue-light);
}

body.dark-mode .post {
    background: #333;
    border-color: #555;
    color: #e0e0e0;
}

body.dark-mode .consultant-card {
    background: #333;
    border-color: #555;
    color: #e0e0e0;
}

body.dark-mode .create-post {
    background: #1e1e1e;
}

body.dark-mode .create-post textarea {
    background: #333;
    color: #e0e0e0;
    border-color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .chatbot-window {
        width: 320px;
        height: 450px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .weather-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-panel {
        width: 350px;
        height: 550px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .weather-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .chatbot-window {
        width: 280px;
        height: 400px;
    }

    .community-panel {
        width: 300px;
        height: 500px;
    }
}

/* Animation for elements coming into view */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Professional Touches */
.recommendation-form {
    background-image: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(46, 125, 50, 0.1)),
                      url('https://myplantin.com/_next/image?url=https:%2F%2Fstrapi.myplantin.com%2FDepositphotos_20087015_XL_min_5e01e6e323.webp&w=1920&q=75');
    background-size: cover;
    background-position: center;
}

.weather-widget {
    background-image: linear-gradient(135deg, rgba(21, 101, 192, 0.15), rgba(33, 150, 243, 0.15)),
                      url('https://c.pxhere.com/photos/0a/c2/crop_dark_farm_field_landscape_night_rural_storm-1062244.jpg!d');
    background-size: cover;
    background-position: center;
}

.market-prices {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.95)),
                      url('https://static.vecteezy.com/system/resources/previews/001/330/263/non_2x/stock-market-graph-trading-chart-for-business-and-finance-free-vector.jpg');
    background-size: cover;
    background-position: center;
}