﻿<style >
/* Self-contained CSS for founder message only */
.kedar-founder-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    box-sizing: border-box;
}

.kedar-founder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.kedar-founder-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Company Badge */
.kedar-company-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.kedar-seed-icon {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.kedar-company-name {
    color: #2E7D32;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Founder Title */
.kedar-founder-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Message Content */
.kedar-message-content {
    margin-bottom: 40px;
}

.kedar-lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    border-left: 4px solid #4CAF50;
    padding-left: 20px;
}

/* Crops Showcase */
.kedar-crops-showcase {
    margin: 30px 0;
}

    .kedar-crops-showcase h4 {
        color: #333;
        font-size: 1.2rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

.kedar-crops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.kedar-crop-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .kedar-crop-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.kedar-crop-icon {
    font-size: 1.5rem;
}

.kedar-crop-name {
    color: #333;
    font-weight: 600;
}

.kedar-closing-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    font-weight: 500;
}

/* Founder Signature */
.kedar-founder-signature {
    border-top: 2px solid #e9ecef;
    padding-top: 25px;
}

.kedar-signature-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    margin-bottom: 15px;
}

.kedar-founder-fullname {
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.kedar-founder-position {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

/* Founder Image */
.kedar-founder-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kedar-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.kedar-founder-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kedar-image-container:hover .kedar-founder-img {
    transform: scale(1.05);
}

.kedar-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

/* Floating Seeds Animation */
.kedar-floating-seeds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.kedar-seed {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: kedar-float 6s ease-in-out infinite;
}

.kedar-seed-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.kedar-seed-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.kedar-seed-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 3s;
}

.kedar-seed-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 4.5s;
}

@keyframes kedar-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .kedar-founder-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .kedar-founder-image {
        order: -1;
    }

    .kedar-founder-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .kedar-founder-section {
        padding: 60px 0;
    }

    .kedar-founder-card {
        padding: 30px 20px;
    }

    .kedar-founder-title {
        font-size: 2rem;
    }

    .kedar-lead-text {
        font-size: 1.1rem;
    }

    .kedar-crops-grid {
        grid-template-columns: 1fr;
    }

    .kedar-company-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .kedar-founder-title {
        font-size: 1.8rem;
    }

    .kedar-company-badge {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .kedar-founder-img {
        height: 300px;
    }
}
