
body {
  font-family: "Manrope", sans-serif;
    background-color: #f8f9fa;
}


/* 
-------------------------------------------------------------
HOME PAGE CSS STYLES
-------------------------------------------------------------
*/

/* Nav Bar Styles */
.navbar-custom {
  background: rgb(0, 0, 0);
  /* backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  width: 120px;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 400;
}

.navbar-nav .nav-item:hover .nav-link {
  color: #17b832 !important;
}

.navbar-custom .social-icons i {
  color: #ffffff;
  margin-right: 15px;
  font-size: 18px;
}

.navbar-custom .contact-info {
  color: #ffffff;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.navbar-custom .contact-info i {
  margin-right: 8px;
  color: #ffc107;
}

.navbar-custom .navbar-toggler {
  border: none;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .navbar-custom .social-icons {
      display: none;
  }
  .navbar-custom .contact-info {
      display: none;
  }
}

/* End Nav Bar Styles */


/* Hero Section styles */
 .hero-section {
            background: linear-gradient(135deg, rgba(4, 67, 4, 0.7), rgba(246, 255, 227, 0.075)), 
                        url('https://www.jumpstartmag.com/wp-content/uploads/2024/06/Untitled-design-2024-06-28T105427.018.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><g opacity="0.1"><path d="M100,300 Q200,200 300,300 T500,300" stroke="%23FFF" stroke-width="3" fill="none"/><path d="M600,350 Q700,250 800,350 T1000,350" stroke="%23FFF" stroke-width="2" fill="none"/><circle cx="150" cy="400" r="8" fill="%23FFF"/><circle cx="450" cy="450" r="6" fill="%23FFF"/><circle cx="750" cy="400" r="10" fill="%23FFF"/><circle cx="950" cy="480" r="7" fill="%23FFF"/></g></svg>') no-repeat center;
            background-size: cover;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            padding-top: 0px;
        }
        
        .hero-subtitle {
            font-size: 1rem;
            color: #f8f9fa;
            line-height: 1.3;
            margin-bottom: 2.5rem;
            font-weight: 400;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        .btn-primary-custom {
            background: linear-gradient(45deg, #28a745, #20c997);
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
            background: linear-gradient(45deg, #20c997, #28a745);
        }
        
        .btn-secondary-custom {
            background: transparent;
            border: 3px solid #fff;
            color: #fff;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn-secondary-custom:hover {
            background: #fff;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 255, 255, 0.453);
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-icon {
            position: absolute;
            color: rgba(255, 255, 255, 0.2);
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-icon:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { top: 25%; right: 15%; animation-delay: 2s; }
        .floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
        .floating-icon:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 1s; }
        .floating-icon:nth-child(5) { top: 40%; left: 75%; animation-delay: 3s; }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .btn-primary-custom,
            .btn-secondary-custom {
                width: 100%;
                margin-bottom: 10px;
                text-align: center;
                border: #ffffff;
                border-style: solid;
                border-width: 1px;
            }
            
            .hero-section {
                background-attachment: scroll;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 0.9rem;
            }
        }
        
        .hero-stats {
            display: flex;
            gap: 10px;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        .stat-item {
            color: #fff;
            text-align: center;
        }
        
        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            display: block;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        
        .stat-label {
            font-size: 0.6rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        @media (max-width: 768px) {
            .hero-stats {
                justify-content: center;
                margin-top: 2rem;
            }
            
            .stat-item {
                flex: 1;
                min-width: 100px;
            }
        }

/* End Hero Section styles */





/* AI Chatbot Styles */
        .chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .chatbot-toggle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #28a745, #20c997);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .chatbot-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
        }
        
        .chatbot-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }
        
        .chatbot-header {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 20px;
            text-align: center;
            font-weight: 600;
            font-size: 18px;
        }
        
        .chatbot-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f8f9fa;
        }
        
        .message {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .message.user {
            flex-direction: row-reverse;
        }
        
        .message-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }
        
        .message.bot .message-avatar {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
        }
        
        .message.user .message-avatar {
            background: #007bff;
            color: white;
        }
        
        .message-content {
            background: white;
            padding: 12px 16px;
            border-radius: 18px;
            max-width: 80%;
            line-height: 1.4;
            font-size: 14px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .message.user .message-content {
            background: #007bff;
            color: white;
        }
        
        .chatbot-input-area {
            padding: 20px;
            background: white;
            border-top: 1px solid #e9ecef;
        }
        
        .chatbot-input-group {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .chatbot-input {
            flex: 1;
            border: 2px solid #e9ecef;
            border-radius: 25px;
            padding: 12px 16px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s ease;
        }
        
        .chatbot-input:focus {
            border-color: #28a745;
        }
        
        .chatbot-send {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #28a745, #20c997);
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .chatbot-send:hover {
            transform: scale(1.1);
        }
        
        .chatbot-send:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }
        
        .typing-indicator {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 12px 16px;
            background: white;
            border-radius: 18px;
            max-width: 80px;
        }
        
        .typing-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #28a745;
            animation: typing 1.4s infinite ease-in-out;
        }
        
        .typing-dot:nth-child(1) { animation-delay: -0.32s; }
        .typing-dot:nth-child(2) { animation-delay: -0.16s; }
        
        @keyframes typing {
            0%, 80%, 100% { 
                transform: scale(0);
                opacity: 0.5;
            }
            40% { 
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .quick-questions {
            padding: 10px 20px 0;
            background: #f8f9fa;
        }
        
        .quick-question {
            display: inline-block;
            background: white;
            border: 1px solid #28a745;
            color: #28a745;
            padding: 8px 12px;
            border-radius: 15px;
            font-size: 12px;
            margin: 0 5px 10px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .quick-question:hover {
            background: #28a745;
            color: white;
        }
        
        @media (max-width: 768px) {
            .chatbot-window {
                width: 300px;
                height: 450px;
            }
            
            .chatbot-container {
                bottom: 15px;
                right: 15px;
            }
        }









/* About Section */
.about-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}
.custom-image-stack {
  position: relative;
}
.custom-image-stack img {
  width: 80%;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.text-section h2 {
  font-size: 2rem;
  font-weight: bold;
}
.text-section h3 {
  font-size: 1.5rem;
  color: #6c757d;
}
.text-section p {
  font-size: 1rem;
  margin-bottom: 10px;
}
.btn-discover {
  background-color: #29b149;
  border: none;
}

/* Responsive styles */
@media (max-width: 767.98px) {
  .about-section {
    padding: 30px 0;
  }
  .custom-image-stack img {
    width: 100%;
    margin-bottom: 20px;
  }
  .text-section h2 {
    font-size: 7rem;
  }
  .text-section h3 {
    font-size: 1.1rem;
  }
  .text-section p {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .about-section {
    padding: 20px 0;
  }
  .text-section h2 {
    font-size: 3rem;
   
  }
  .text-section h3 {
    font-size: 1rem;
  }
  .text-section p {
    font-size: 0.9rem;
  }
}

/* Get to know us animation */





/* Featured Products Scetion */

.featured-products {
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

/* Product Card Styling */
.product-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  max-height: 150px;
  object-fit: contain;
}

.product-card h5 {
  font-size: 1.25rem;
  margin: 10px 0;
  color: #333;
}

.product-card p {
  font-size: 1rem;
  color: #f9a826;
}

/* Product Card Hover Effect */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Float-in Animation */
.float-in {
  opacity: 0;
  transform: translateY(50px);
  animation: floatIn 1s forwards;
}

/* Keyframes for Float-in Animation */
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 575.98px) {
  .product-card {
    padding: 15px;
  }

  .section-title {
    font-size: 1.75rem;
  }
}





 /* Custom styles for testimonial card */
 .testimonial-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
}
.testimonial-author {
  text-align: center;
  margin-top: 20px;
}
.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.testimonial-author h5 {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}
.testimonial-author span {
  color: #6c757d;
  font-size: 0.9rem;
}
.rating {
  color: #f5c518;
}
/* Background for the whole section */
.testimonial-section {
  background-color: #44ad52;
  padding: 80px 0;
}



/* footer scetion */

.footer {
  background-color: #1e1e1e;
  color: #bbb;
  padding: 0px 0;
  padding-top: 30px;
  
}
.footer h5 {
  color: #fff;
}
.footer .social-icons a {
  margin: 10px;
  color: #bbb;
  font-size: 1.5rem;
}
.footer a {
  color: #bbb;
  text-decoration: none;
}
.footer a:hover {
  color: #ffd343;
}
.footer .subscribe-form input[type="email"] {
  background-color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  width: 100%;
}
.footer .subscribe-form button {
  border: none;
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 10px;
  width: 100%;
}
.footer-bottom {
  background-color: #151515;
  color: #bbb;
  padding: 20px 0;
  text-align: center;
}

.footer-social-icons {
  padding-bottom: 20px;
  padding-top: 20px;

}



/* Parallax Background for Call to Action Section */
.cta-section {
  background: url('/assets/cta\ bg.jpg') no-repeat center center/cover;
  height: 70vh;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 1;
  color: white;
 
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay to make text pop */
  z-index: -1;
}

/* Call to Action Title Styling */
.cta-title {
  font-size: 3rem;
  font-weight: bold;
  text-transform: initial;
}

.cta-text {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.btn-primary {
  background-color: #f9a826;
  border: none;
  padding: 10px 30px;
}

.btn-primary:hover {
  background-color: #ffa500;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .cta-title {
    font-size: 2.5rem;
  }

  .cta-text {
    font-size: 1rem;
  }
}




/* 
-------------------------------------------------------------
lOG IN/REGISTER PAGE CSS STYLES
-------------------------------------------------------------
*/

/* Background Styling */
.login-bg {
  background: url('/assets/Log\ in\ background.png') no-repeat center center/cover;
  position: relative;
  z-index: 1;
}

.login-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Glassmorphism Effect for Card */
.glass-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  max-width: 350px;
  color: #fff;
}

/* Glassmorphic Inputs */
.glass-input {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 10px;
  color: white;
  padding: 10px 15px;
}

.glass-input:focus {
  outline: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.4);
}

/* Button Styling */
.btn-primary {
  background-color: #f9a826;
  border: none;
}

.btn-primary:hover {
  background-color: #ffa500;
}

/* Responsive Styling */
@media (max-width: 575.98px) {
  .glass-card {
    padding: 20px;
  }

  .glass-input {
    padding: 8px 10px;
  }
}


/* 
-------------------------------------------------------------
CONTACT PAGE CSS STYLES
-------------------------------------------------------------
*/

/* Body Styling */

/* 
body {
  background-color: #f0f4f7;
  font-family: 'Arial', sans-serif;
}
 */
.contact-section {
  margin-top: 500;
  background-image: url(/assets/wheats.webp.jpg);
  background-size: cover;

}


/* Glassmorphism Form */
.glass-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-form h3 {
  font-weight: bold;
  color: #333;
}

.glass-form input,
.glass-form textarea {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  color: #333;
  border-radius: 5px;
}

.glass-form button {
  font-weight: bold;
  background-color: #ffc107;
  color: #000;
  border: none;
}

/* Contact Info Styling */
.contact-info {
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  font-weight: bold;
  color: #fff;
}

.contact-info p {
  font-size: 16px;
}

.contact-info ul {
  padding-left: 0;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-info, .glass-form {
    margin-bottom: 20px;
  }

  .glass-form h3 {
    font-size: 1.5rem;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }
}



/* 
-------------------------------------------------------------
ABOUT PAGE CSS STYLES
-------------------------------------------------------------
*/

:root {
            --primary-green: #10b981;
            --secondary-green: #059669;
            --light-green: #d1fae5;
            --dark-green: #065f46;
            --gradient-bg: linear-gradient(135deg, #10b981 0%, #059669 100%);
            --section-padding: 100px 0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Hero Section */
        .about-hero {
            background: var(--gradient-bg);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="25" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="25" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .about-hero .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
        .floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
        .floating-icon:nth-child(4) { top: 40%; right: 30%; animation-delay: 1s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Mission Section */
        .mission-section {
            padding: var(--section-padding);
            background: linear-gradient(45deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .mission-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.1);
            position: relative;
            transition: all 0.3s ease;
            height: 100%;
        }

        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-bg);
            border-radius: 20px 20px 0 0;
        }

        .mission-icon {
            width: 80px;
            height: 80px;
            background: var(--light-green);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 25px;
        }

        /* Features Grid */
        .features-section {
            padding: var(--section-padding);
            background: white;
        }

        .feature-card {
            text-align: center;
            padding: 40px 20px;
            border-radius: 16px;
            transition: all 0.3s ease;
            height: 100%;
            background: #f8fafc;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            background: white;
            border-color: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            margin: 0 auto 20px;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: var(--gradient-bg);
            color: white;
            position: relative;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .stat-item {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Team Section */
        .team-section {
            padding: var(--section-padding);
            background: white;
        }

        .team-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #f1f5f9;
            height: 100%;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: var(--gradient-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            margin: 0 auto 20px;
            position: relative;
        }

        .team-avatar::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: var(--gradient-bg);
            z-index: -1;
            opacity: 0.2;
        }

        .social-links {
            margin-top: 20px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #f8fafc;
            border-radius: 50%;
            line-height: 40px;
            text-align: center;
            color: var(--primary-green);
            margin: 0 5px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-2px);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.4 0,28.9 0,14.4" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
            animation: drift 20s linear infinite;
        }

        @keyframes drift {
            0% { transform: rotate(0deg) translate(-50px, -50px); }
            100% { transform: rotate(360deg) translate(-50px, -50px); }
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-btn {
            background: white;
            color: var(--primary-green);
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            color: var(--primary-green);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .mission-card {
                padding: 30px 20px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            :root {
                --section-padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .feature-card {
                padding: 30px 15px;
            }
            
            .team-card {
                padding: 20px;
            }
        }

        /* Scroll animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }


/* 
-------------------------------------------------------------
MARKET PLACE PAGE CSS STYLES
-------------------------------------------------------------
*/

.hero-section {
  background-size: cover;
  background-position: center;
}

.card {
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-10px);
}


/*
-------------------------------------------------------------
BLOG POSTS CSS STYLES
-------------------------------------------------------------
*/

article img {
  width: 100%;
  height: auto;
}

blockquote {
  background-color: #ade7bc;
  padding: 1.5rem;
  border-left: 5px solid #035f00;
  margin: 2rem 0;
  font-size: 1.2rem;
}

.comments input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

footer {
  margin-top: 50px;
}

aside ul {
  padding-left: 0;
}

aside ul li a {
  color: #198754;
  text-decoration: none;
}

aside ul li a:hover {
  text-decoration: unset;
  color: rgb(255, 196, 0);
}

.blog-post-section {
  background: url('/assets/cta\ bg.jpg') no-repeat center center/cover;
  height: 40vh;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 1;
  color: white;
 
}

.blog-post-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay to make text pop */
  z-index: -1;
}

/* ------------------------------ */

/* AI Assistant PAGE */

/* ------------------------------ */


:root {
            --primary-green: #28a745;
            --secondary-green: #20c997;
            --dark-green: #1e7e34;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --gray-light: #e9ecef;
            --gray-dark: #6c757d;
        }

        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            padding-top: 90px;
        }

        .header {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header h1 {
            font-weight: 700;
            margin: 0;
        }

        .chat-container {
            max-width: 1200px;
            margin: 30px auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            height: calc(100vh - 150px);
            display: flex;
        }

        .sidebar {
            width: 300px;
            background: var(--light-bg);
            border-right: 1px solid var(--gray-light);
            display: flex;
            flex-direction: column;
        }

        .sidebar-header {
            padding: 20px;
            background: white;
            border-bottom: 1px solid var(--gray-light);
        }

        .feature-tabs {
            display: flex;
            flex-direction: column;
            padding: 20px;
            gap: 10px;
        }

        .feature-tab {
            padding: 15px;
            border-radius: 10px;
            background: white;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-tab:hover, .feature-tab.active {
            border-color: var(--primary-green);
            background: rgba(40, 167, 69, 0.1);
        }

        .feature-tab i {
            font-size: 24px;
            color: var(--primary-green);
            margin-bottom: 8px;
            display: block;
        }

        .feature-tab h6 {
            margin: 0;
            font-weight: 600;
        }

        .feature-tab p {
            font-size: 12px;
            color: var(--gray-dark);
            margin: 5px 0 0 0;
        }

        .main-chat {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .chat-header {
            background: white;
            padding: 20px;
            border-bottom: 1px solid var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .chat-title {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .status-indicator {
            width: 12px;
            height: 12px;
            background: #28a745;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #fafafa;
        }

        .message {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .message.user {
            flex-direction: row-reverse;
        }

        .message-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .message.bot .message-avatar {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
        }

        .message.user .message-avatar {
            background: #007bff;
            color: white;
        }

        .message-content {
            background: white;
            padding: 15px 20px;
            border-radius: 20px;
            max-width: 70%;
            line-height: 1.5;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .message.user .message-content {
            background: #007bff;
            color: white;
        }

        .chat-input-area {
            padding: 20px;
            background: white;
            border-top: 1px solid var(--gray-light);
        }

        .input-suggestions {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .suggestion-chip {
            background: rgba(40, 167, 69, 0.1);
            border: 1px solid var(--primary-green);
            color: var(--primary-green);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .suggestion-chip:hover {
            background: var(--primary-green);
            color: white;
        }

        .chat-input-group {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .chat-input {
            flex: 1;
            border: 2px solid var(--gray-light);
            border-radius: 25px;
            padding: 15px 20px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .chat-input:focus {
            border-color: var(--primary-green);
        }

        .send-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .send-btn:hover {
            transform: scale(1.1);
        }

        .farmer-card {
            background: white;
            border-radius: 15px;
            padding: 15px;
            margin: 10px 0;
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }

        .farmer-card:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .farmer-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .farmer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .farmer-info h6 {
            margin: 0;
            font-weight: 600;
        }

        .farmer-distance {
            color: var(--gray-dark);
            font-size: 14px;
        }

        .crop-tags {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
            margin: 10px 0;
        }

        .crop-tag {
            background: rgba(40, 167, 69, 0.1);
            color: var(--primary-green);
            padding: 4px 8px;
            border-radius: 10px;
            font-size: 12px;
        }

        .contact-btn {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background: var(--dark-green);
        }

        .typing-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 15px 20px;
            background: white;
            border-radius: 20px;
            max-width: 100px;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary-green);
            animation: typing 1.4s infinite ease-in-out;
        }

        .typing-dot:nth-child(1) { animation-delay: -0.32s; }
        .typing-dot:nth-child(2) { animation-delay: -0.16s; }

        @keyframes typing {
            0%, 80%, 100% { 
                transform: scale(0);
                opacity: 0.5;
            }
            40% { 
                transform: scale(1);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .chat-container {
                margin: 15px;
                height: calc(100vh - 120px);
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                height: auto;
                max-height: 200px;
                overflow-y: auto;
            }

            .feature-tabs {
                flex-direction: row;
                overflow-x: auto;
                gap: 10px;
            }

            .feature-tab {
                min-width: 120px;
            }

            .message-content {
                max-width: 85%;
            }
        }

        .location-prompt {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
            border: 2px dashed var(--primary-green);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 10px 0;
        }

        .location-btn {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .location-btn:hover {
            background: var(--dark-green);
            transform: translateY(-2px);
        }
