/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif !important;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600 !important;
    margin-bottom: 15px;
    color: #000;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 15px;
    color: #333;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    color: #333;
}

/* Hero Section */
.hero-image-only {
  background-color: #000;
  padding: 40px 0;
}

.hero-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Text Section */
.hero-text-only {
    background-color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.hero-text-only .container {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.2rem;
    }
}

/* Features Section */
.features {
    padding: 20px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
}

.features-left,
.features-right {
    display: flex;
    flex-direction: column;
}

.features-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
}

.features-center img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.feature-item {
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-item h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #000;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
}

.use-case-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
}

.use-case-card li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* Solution Sections */
.solution-section {
    padding: 80px 0;
}

.solution-section:nth-child(odd) {
    background: #d9d9d9 ;
}

.solution-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    margin-top: 40px;
}

.agriculture-grid {
    grid-template-columns: 1fr 2fr;
}

.solution-content {
    display: flex;
    flex-direction: column;
}

.solution-item {
    background: #d9d9d9 ;
    padding: 10px 20px;
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-3px);
}

.solution-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;  
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 800px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-center {
        height: 600px;
    }
    
    .features-center img {
        max-width: 500px;
        max-height: 600px;
    }
    
    .features-right .feature-item {
        text-align: left;
    }
    
    .solution-grid,
    .agriculture-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.2rem;
    }

    .features-center {
        height: auto;
        padding: 20px 0;
    }

    .features-center img {
        max-width: 90%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .feature-item,
    .solution-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-content h2 {
        font-size: 2rem;
    }
}

/* Animation Classes */
.wb-anim {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
