/* Basic Body and Background Fix */
body {
    background-color: #0a0a0a !important;
    color: #ffffff !important;
    min-height: 100vh;
}

.hero-section {
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%) !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-padding {
    background-color: #0a0a0a !important;
    padding: 100px 0;
}

/* Text Colors Fix */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}

p {
    color: #b0b0b0 !important;
}

/* Navigation Fix */
.navbar {
    background-color: rgba(10, 10, 10, 0.95) !important;
}

.navbar-brand {
    color: #ffffff !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Cards and Components */
.farm-dashboard, .feature-card, .api-card, .structure-card, .installation-card {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
}

/* Ensure content is visible */
.container {
    position: relative;
    z-index: 10;
}

/* Override any hidden content */
section {
    display: block !important;
    visibility: visible !important;
}
/* Project Icon Styles - Restored */
.project-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.project-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-icon::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Project Title Styles */
.project-content h4 {
    color: var(--light-color) !important;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}
/* Benefits Section Styles */
.roi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.roi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.roi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.roi-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.roi-icon i {
    font-size: 1.75rem;
    color: white;
}

.roi-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.roi-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.roi-card small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Success Stories */
.success-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.success-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.success-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 1.25rem;
    color: white;
}

.success-header h4 {
    color: var(--light-color);
    margin: 0;
    font-size: 1.25rem;
}

.success-content p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-metrics {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Highlight Card */
.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
}

.highlight-card h4 {
    color: var(--light-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.highlight-item span {
    font-weight: 500;
    color: var(--light-color);
}

@media (max-width: 768px) {
    .success-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-card h3 {
        font-size: 2rem;
    }
}
/* Text Gradient Fix */
.text-gradient {
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 50%, #ff6b6b 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block;
    font-weight: inherit;
}
/* Simple Text Primary Color */
.text-primary {
    color: #00d4ff !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}