/* Theme System - Dark/Light Mode */
@import url('footer.css');

    :root {
      /* Light mode colors */
      --bg-primary: #ffffff;
      --bg-secondary: #f8fafc;
      --bg-tertiary: #f1f5f9;
      --text-primary: #1e293b;
      --text-secondary: #64748b;
      --text-muted: #94a3b8;
      --border-color: #e2e8f0;
      --shadow-light: rgba(0, 0, 0, 0.05);
      --shadow-medium: rgba(0, 0, 0, 0.1);
      --shadow-heavy: rgba(0, 0, 0, 0.15);
      
      /* Agricultural green palette */
      --primary-green: #16a34a;
      --secondary-green: #22c55e;
      --accent-green: #4ade80;
      --light-green: #f0fdf4;
      --dark-green: #15803d;
      --green-hover: #15803d;
    }

    [data-theme="dark"] {
      /* Dark mode colors */
      --bg-primary: #0f172a;
      --bg-secondary: #1e293b;
      --bg-tertiary: #334155;
      --text-primary: #f8fafc;
      --text-secondary: #cbd5e1;
      --text-muted: #94a3b8;
      --border-color: #334155;
      --shadow-light: rgba(0, 0, 0, 0.3);
      --shadow-medium: rgba(0, 0, 0, 0.4);
      --shadow-heavy: rgba(0, 0, 0, 0.6);
      
      /* Adjusted green colors for dark mode */
      --light-green: #1a2e1a;
      --green-hover: #22c55e;
    }

    /* Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      transition: all 0.3s ease;
    }

    .serif {
      font-family: 'Libertinus Serif', Georgia, serif;
    }

    /* Navigation */
    .navbar {
      background: var(--bg-primary);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 1rem 2rem;
      transition: all 0.3s ease;
    }

    .navbar-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .brand .logo {
      font-family: 'Libertinus Serif', serif;
      font-size: 1.75rem;
      font-weight: 600;
      color: var(--primary-green);
      text-decoration: none;
    }

    .nav-buttons {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .btn {
      padding: 0.5rem 1rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.875rem;
      transition: all 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--primary-green);
      color: white;
    }

    .btn-primary:hover {
      background: var(--green-hover);
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--text-primary);
      border: 1px solid var(--border-color);
    }

    .btn-secondary:hover {
      background: var(--bg-secondary);
    }

    /* Responsive Search bar */
     .search-container {
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border: 2px solid transparent;
        border-radius: 30px;
        padding: 8px 15px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: 20px;
        box-shadow: 0 4px 15px rgba(56, 142, 60, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .navbar-content.search-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

      .search-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #4caf50, #388e3c);
        border-radius: 30px;
        padding: 2px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .search-container:focus-within::before {
        opacity: 1;
      }

      .search-container:focus-within {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(56, 142, 60, 0.2);
      }

      .search-input {
        border: none;
        outline: none;
        padding: 10px 12px;
        font-size: 15px;
        flex: 1;
        color: #2e7d32;
        background: transparent;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
      }

      .search-input::placeholder {
        color: #81c784;
        font-weight: 400;
      }

      .search-button {
        background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        color: white;
        font-size: 16px;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(56, 142, 60, 0.2);
      }

      .search-button:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(56, 142, 60, 0.4);
      }

      /* Mobile responsive improvements */
      @media screen and (max-width: 991.98px) {
        .navbar {
          padding: 0.75rem 0;
        }

        .search-container {
          max-width: 100%;
          margin: 1rem 0 0 0;
          order: 3;
        }
      }

      @media screen and (max-width: 600px) {
        .search-container {
          max-width: 100%;
        }

        .search-input {
          font-size: 14px;
        }
      }
    

    /* Theme Toggle */
    .theme-toggle {
      position: relative;
      background: var(--bg-secondary);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 0.5rem 0.75rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-primary);
      font-size: 0.875rem;
      font-weight: 500;
      min-width: 80px;
      justify-content: center;
    }

    .theme-toggle:hover {
      background: var(--bg-tertiary);
    }

    .theme-toggle i {
      font-size: 0.875rem;
      transition: all 0.3s ease;
    }

    .theme-toggle .sun-icon {
      opacity: 0;
      transform: rotate(180deg);
      position: absolute;
      left: 12px;
    }

    .theme-toggle .moon-icon {
      opacity: 1;
      transform: rotate(0deg);
      
    }

    [data-theme="dark"] .theme-toggle .sun-icon {
      opacity: 1;
      transform: rotate(0deg);
    }

    [data-theme="dark"] .theme-toggle .moon-icon {
      opacity: 0;
      transform: rotate(180deg);
      
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--light-green) 0%, var(--bg-secondary) 100%);
      padding: 4rem 2rem;
      text-align: center;
    }

    [data-theme="dark"] .hero {
      background: linear-gradient(135deg, var(--light-green) 0%, var(--bg-secondary) 100%);
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .hero h2 {
      font-family: 'Libertinus Serif', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .hero p {
      font-size: 1.125rem;
      color: var(--text-secondary);
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .hero strong {
      color: var(--primary-green);
      font-weight: 600;
    }

    /* Features Section */
    .features {
      padding: 4rem 2rem;
      background: var(--bg-primary);
    }

    .features-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .features-title {
      font-family: 'Libertinus Serif', serif;
      text-align: center;
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 3rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .feature-card {
      background: var(--bg-secondary);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary-green);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px var(--shadow-medium);
      border-color: var(--primary-green);
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    .feature-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      display: block;
    }

    .feature-title {
      font-family: 'Libertinus Serif', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }

    .feature-description {
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* Carousel Section */
    .carousel {
      padding: 4rem 2rem;
      background: var(--bg-secondary);
      overflow: hidden;
    }

    .carousel-title {
      font-family: 'Libertinus Serif', serif;
      text-align: center;
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 3rem;
    }

    .slider {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .slide-track {
      display: flex;
      animation: scroll 20s linear infinite;
      width: calc(300px * 12); /* 12 images total */
    }

    .slide-track img {
      width: 300px;
      height: 200px;
      object-fit: cover;
      border-radius: 12px;
      margin-right: 1rem;
      box-shadow: 0 4px 15px var(--shadow-light);
      transition: transform 0.3s ease;
    }

    .slide-track img:hover {
      transform: scale(1.05);
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-300px * 6 - 6rem)); } /* Move by 6 images */
    }

    /* CTA Section */
    .cta {
      background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
      color: white;
      padding: 4rem 2rem;
      text-align: center;
    }

    .cta-content {
      max-width: 600px;
      margin: 0 auto;
    }

    .cta h3 {
      font-family: 'Libertinus Serif', serif;
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .cta p {
      font-size: 1.125rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .cta-button {
      display: inline-block;
      background: white;
      color: var(--primary-green);
      padding: 1rem 2rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.125rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* CTA Button hover effect */
    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    /* Footer styles now imported from footer.css */
    .site-footer {
      background: linear-gradient(135deg, #2e7d32, #4caf50);
      color: white;
      margin-top: auto;
      padding: 4rem 2rem 2.5rem;
      position: relative;
      overflow: hidden;
    
      box-shadow: 
        0 -4px 16px rgba(46, 125, 50, 0.1),
        0 -2px 8px rgba(46, 125, 50, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .site-footer::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 20%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.3) 80%, 
        transparent 100%);
      animation: shimmerTop 3s ease-in-out infinite;
    }

    @keyframes shimmerTop {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    .site-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.10) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.02) 50%, transparent 70%);
      pointer-events: none;
      animation: footerShimmer 20s ease-in-out infinite;
    }

    @keyframes footerShimmer {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.8; }
    }

    /* Floating particles animation */
    .site-footer::before {
      animation: floatingParticles 25s linear infinite;
    }

    @keyframes floatingParticles {
      0% {
        background-position: 0% 0%, 100% 0%, 50% 100%;
      }
      33% {
        background-position: 100% 50%, 0% 100%, 0% 0%;
      }
      66% {
        background-position: 50% 100%, 50% 0%, 100% 50%;
      }
      100% {
        background-position: 0% 0%, 100% 0%, 50% 100%;
      }
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3.5rem;
      align-items: flex-start;
      position: relative;
      z-index: 1;
    }

    .footer-inner::before {
      content: '';
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      border-radius: 2px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      padding-right: 2rem;
      position: relative;
    }

    .footer-brand::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 1px;
      height: 100%;
      background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.2) 70%, 
        transparent 100%);
    }

    .footer-logo {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      object-fit: cover;
      background: white;
      padding: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .site-footer h3,
    .site-footer h4 {
      font-family: 'Libertinus Serif', serif;
      margin: 0 0 1.5rem 0;
      font-weight: 600;
    }

    .site-footer h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #ffffff, #e8f5e8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      letter-spacing: -0.02em;
    }

    .site-footer h4 {
      font-size: 1.25rem;
      position: relative;
      padding-bottom: 0.5rem;
      margin-bottom: 1.5rem;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 700;
    }

    .site-footer h4::before {
      content: '';
      position: absolute;
      top: -5px;
      left: -10px;
      width: 4px;
      height: calc(100% + 10px);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
      border-radius: 2px;
    }

    .site-footer h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
      border-radius: 3px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .site-footer p {
      margin: 0;
      opacity: 0.95;
      line-height: 1.7;
      text-align: justify;
      text-justify: inter-word;
      hyphens: auto;
      font-size: 1rem;
    }

    /* Brand Header Section */
    .brand-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .footer-logo {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      object-fit: cover;
      background: linear-gradient(135deg, #ffffff, #f8f9fa);
      padding: 10px;
      box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(46, 125, 50, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
      border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .footer-logo:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.2),
        0 6px 18px rgba(46, 125, 50, 0.3);
    }

    /* Mission Statement Enhancement */
    .mission-statement {
      margin-bottom: 1.5rem;
      position: relative;
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
    }

    .mission-statement::before {
      content: '"';
      position: absolute;
      top: -10px;
      left: 20px;
      font-size: 3rem;
      color: rgba(255, 255, 255, 0.3);
      font-family: 'Libertinus Serif', serif;
    }

    .mission-statement::after {
      content: '"';
      position: absolute;
      bottom: -20px;
      right: 20px;
      font-size: 3rem;
      color: rgba(255, 255, 255, 0.3);
      font-family: 'Libertinus Serif', serif;
    }

    .mission-statement p {
      font-size: 1.1rem;
      line-height: 1.8;
      font-weight: 400;
      letter-spacing: 0.3px;
      text-align: justify;
      text-justify: inter-character;
      hyphens: auto;
      margin: 0;
      padding: 0;
      color: rgba(255, 255, 255, 0.95);
      word-spacing: -0.1em;
      text-align-last: left;
      font-style: italic;
      position: relative;
      z-index: 1;
    }

    .no-break {
      white-space: nowrap;
      hyphens: none;
      word-break: keep-all;
    }


    /* Footer Links Section */
    .footer-links {
      display: flex;
      flex-direction: column;
      position: relative;
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .footer-links:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .site-footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .site-footer ul li {
      position: relative;
    }

    .site-footer a {
      color: white;
      text-decoration: none;
      opacity: 0.95;
      transition: all 0.3s ease;
      display: inline-block;
      font-size: 0.95rem;
      position: relative;
    }

    .site-footer a i {
      margin-right: 8px;
      width: 16px;
      color: rgba(255, 255, 255, 0.8);
      transition: all 0.3s ease;
    }

    .site-footer a:hover i {
      color: #ffffff;
      transform: scale(1.1);
    }

    .site-footer .footer-links a:hover {
      opacity: 1;
      transform: translateX(8px);
      color: rgba(255, 255, 255, 1);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
      border-radius: 8px;
      padding: 8px 16px;
      box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .site-footer .footer-links a::before {
      content: '';
      position: absolute;
      left: -4px;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
      transition: width 0.3s ease;
    }

    .site-footer .footer-links a:hover::before {
      width: 100%;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 3rem auto 0;
      padding: 2.5rem 1rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.25);
      text-align: center;
      position: relative;
    }

    .footer-bottom::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    }

    .footer-bottom-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .copyright {
      font-size: 1.1rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.95);
      margin: 0;
      letter-spacing: 0.5px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      position: relative;
      padding: 1rem 0;
    }

    .copyright::after {
      content: '🌱';
      position: absolute;
      right: -30px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.2rem;
      opacity: 0.8;
    }

    .copyright::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
      border-radius: 2px;
    }

    .footer-bottom-links {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-bottom-links a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none; 
      font-size: 0.875rem;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom-links a:hover {
      color: white;
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
    }

    .separator {
      color: rgba(255, 255, 255, 0.4);
      font-weight: bold;
      font-size: 0.75rem;
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.9);
      transition: all 0.3s ease;
    }

    .footer-bottom a:hover {
      color: white;
      text-decoration: underline;
    }
/* Enhanced Footer Links Hover Effects */  
.footer-links ul li a {
  position: relative;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

/* Enhanced hover effect with improved visual feedback */
.footer-links ul li a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Improved underline animation */
.footer-links ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 12px;
  bottom: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links ul li a:hover::after {
 width: calc(100% - 24px);
}

    /* Focus states for accessibility */
    .footer-links ul li a:focus {
      outline: 2px solid rgba(255, 255, 255, 0.6);
      outline-offset: 2px;
    }

/* Mission Stats Section Styling */
.mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mission-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: statsShine 3s ease-in-out infinite;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.3),
                0 0 60px rgba(255, 255, 255, 0.1);
}

.stat-item:hover::before {
    width: 200px;
    height: 200px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #e8f5e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Enhanced Social Media Section */
.social-media {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-media a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.social-media a:hover {
    transform: translateY(-4px) scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(255, 255, 255, 0.15);
}

.social-media a:hover::before {
    left: 100%;
}

.social-media a i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.social-media a:hover i {
    color: #ffffff;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* Enhanced Footer Links with Better Icons */
.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(8px);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.footer-links a i {
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff, #e8f5e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links a:hover i {
    transform: rotate(360deg) scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* Advanced Keyframe Animations */
@keyframes statsShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Number Counting Animation */
@keyframes countUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.stat-number {
    animation: countUp 0.8s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

.stat-item:nth-child(1) .stat-number {
    --delay: 0.2s;
}

.stat-item:nth-child(2) .stat-number {
    --delay: 0.4s;
}

.stat-item:nth-child(3) .stat-number {
    --delay: 0.6s;
}

/* Pulsing Effect for Stats */
.stat-item:hover .stat-number {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Floating Orb Animation */
.site-footer::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 70%);
    animation: floatingOrb 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatingOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(-30px, -20px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-60px, 10px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(-20px, -30px) scale(1.05);
        opacity: 0.7;
    }
}

/* Sparkle Animation for Mission Stats */
.mission-stats::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Hover Effect for Footer Links */
.footer-links {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.footer-links:hover::before {
    opacity: 1;
}

/* Footer Brand Glow Effect */
.footer-brand:hover .footer-logo {
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.2),
        0 6px 18px rgba(46, 125, 50, 0.3),
        0 0 30px rgba(255, 255, 255, 0.3);
}

/* Typography Enhancement */
.site-footer h3 {
    position: relative;
}

.site-footer h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
    transition: width 0.6s ease;
}

.footer-brand:hover .site-footer h3::after {
    width: 100%;
}

    /* Footer Animation on Scroll */
    .site-footer {
      opacity: 0;
      transform: translateY(30px);
      animation: footerFadeIn 1s ease-out forwards;
      animation-delay: 0.2s;
    }

    @keyframes footerFadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .footer-brand,
    .footer-links {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease-out forwards;
    }

    .footer-brand {
      animation-delay: 0.3s;
    }

    .footer-links:nth-child(2) {
      animation-delay: 0.4s;
    }

    .footer-links:nth-child(3) {
      animation-delay: 0.5s;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
}
/* Ripple Animation */
@keyframes ripple {
  to {
    transform: scale(2);
    opacity: 0;
  }
}
    .social-media {
      display: flex;
      gap: 1.2rem;
      margin-top: 1.5rem;
      justify-content: flex-start;
      flex-wrap: wrap;
    }

    .social-media a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 18px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
      box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .social-media a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s ease;
    }

    .social-media a::after {
      content: '';
      position: absolute;
      inset: 2px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
      border-radius: 14px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .social-media a:hover::before {
      left: 100%;
    }

    .social-media a:hover::after {
      opacity: 1;
    }

    .social-media a:hover {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-4px) scale(1.08) rotate(5deg);
      box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 6px 18px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
      color: #ffffff;
    }

    .social-media a:nth-child(1):hover { transform: translateY(-4px) scale(1.08) rotate(-5deg); }
    .social-media a:nth-child(2):hover { transform: translateY(-4px) scale(1.08) rotate(0deg); }
    .social-media a:nth-child(3):hover { transform: translateY(-4px) scale(1.08) rotate(5deg); }

    /* Scroll to Top Button */
    .scroll-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 50px;
      height: 50px;
      background: var(--primary-green);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px var(--shadow-medium);
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
      z-index: 1000;
    }

    .scroll-to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .scroll-to-top:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px var(--shadow-heavy);
    }
    
    /* Tablet Design */
    @media (max-width: 1024px) and (min-width: 769px) {
      .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
      }

      .footer-brand {
        padding-right: 1rem;
      }

      .brand-header {
        margin-bottom: 1.25rem;
      }

      .mission-statement p {
        font-size: 1.05rem;
        padding: 1.5rem;
      }
    }
    /* Enhanced Responsive Design for All Devices */
    
    /* Extra Small Devices (Phones, 320px and up) */
    @media (max-width: 320px) {
      .navbar {
        padding: 0.75rem 1rem;
      }
      
      .navbar-content {
        flex-direction: column;
        gap: 0.75rem;
      }
      
      .nav-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
      }
      
      .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
      }
      
      .search-container {
        max-width: 100%;
        margin: 0.5rem 0;
      }
      
      .hero {
        padding: 2rem 1rem;
      }
      
      .hero h2 {
        font-size: 1.5rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .features,
      .carousel,
      .cta {
        padding: 2rem 1rem;
      }
      
      .features-title,
      .carousel-title {
        font-size: 1.75rem;
      }
      
      .feature-card {
        padding: 1.5rem;
      }
      
      .site-footer {
        padding: 2rem 1rem;
      }
      
      .footer-inner {
        gap: 2rem;
      }
    }
    
    /* Small Devices (Phones, 480px and up) */
    @media (max-width: 480px) {
      .navbar {
        padding: 1rem;
      }
      
      .hero {
        padding: 2.5rem 1rem;
      }
      
      .hero h2 {
        font-size: 1.75rem;
      }
      
      .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      
      .slide-track {
        animation-duration: 15s;
      }
      
      .slide-track img {
        width: 250px;
        height: 170px;
      }
      
      .cta h3 {
        font-size: 2rem;
      }
      
      .cta p {
        font-size: 1rem;
      }
      
      .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
      }
      
      .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
      }
      
    /* Enhanced Mobile Footer Responsiveness */
    @media (max-width: 480px) {
      .site-footer {
        padding: 2rem 1rem 1.5rem !important;
      }
      
      .footer-inner {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
      }
      
      .footer-brand {
        align-items: center;
        text-align: center;
        padding-right: 0 !important;
        order: 1;
      }
      
      .brand-header {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
      }
      
      .footer-logo {
        width: 48px !important;
        height: 48px !important;
        margin: 0 auto;
      }
      
      .site-footer h3 {
        font-size: 1.5rem !important;
        text-align: center;
      }
      
      .mission-statement {
        padding: 1rem !important;
        margin-bottom: 1rem;
      }
      
      .mission-statement p {
        text-align: center !important;
        font-size: 0.95rem !important;
        line-height: 1.6;
        padding: 0 !important;
        font-style: normal;
      }
      
      .mission-statement::before,
      .mission-statement::after {
        display: none !important;
      }
      
      .footer-links {
        padding: 1rem !important;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #2e7d32, #4caf50) !important;
        border: none !important;
      }
      
      .footer-links h4 {
        text-align: center;
        margin-bottom: 1rem !important;
        font-size: 1.1rem !important;
      }
      
      .footer-links h4::before {
        display: none;
      }
      
      .footer-links h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 40px;
      }
      
      .site-footer ul {
        align-items: center;
        gap: 0.25rem;
      }
      
      .footer-links ul li a {
        text-align: center;
        justify-content: center;
        padding: 8px 12px !important;
        font-size: 0.9rem;
        border-radius: 6px;
        margin: 2px 0;
      }
      
      .footer-links ul li a i {
        margin-right: 6px;
        width: 14px;
      }
      
      .social-media {
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
      }
      
      .social-media a {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.2rem !important;
      }
      
      .footer-bottom {
        margin: 2rem auto 0 !important;
        padding: 1.5rem 0.5rem 0 !important;
      }
      
      .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
      }
      
      .copyright {
        font-size: 0.9rem !important;
        padding: 0.5rem 0;
      }
      
      .copyright::after {
        right: -20px;
        font-size: 1rem;
      }
      
      .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
      }
      
      .footer-bottom-links a {
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
        min-width: 120px;
      }
      
      .separator {
        display: none !important;
      }
    }

    /* Medium Devices (Tablets, 768px and up) */
    @media (max-width: 768px) {
      .navbar {
        padding: 1rem;
      }

      .navbar-content {
        flex-direction: column;
        gap: 1rem;
      }

      .nav-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
      }
      
      .search-container {
        order: -1;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
      }

      .hero {
        padding: 3rem 1rem;
      }
      
      .hero h2 {
        font-size: 2rem;
      }

      .features,
      .carousel,
      .cta {
        padding: 3rem 1rem;
      }

      .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
      }
      
      .features-title,
      .carousel-title {
        font-size: 2rem;
      }

      .slide-track {
        animation-duration: 18s;
      }
      
      .slide-track img {
        width: 280px;
        height: 190px;
      }

      .site-footer {
        padding: 3rem 1rem;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
      }

      .footer-brand {
        align-items: center;
        text-align: center;
        padding-right: 0;
        order: 1;
      }

      .brand-header {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
      }

      .mission-statement p {
        text-align: center;
        padding: 1.5rem;
        font-size: 1rem;
      }

      .mission-statement::before,
      .mission-statement::after {
        display: none;
      }

      .footer-links:nth-child(2) {
        order: 2;
      }

      .footer-links:nth-child(3) {
        order: 3;
      }

      .footer-links h4 {
        text-align: center;
        margin-bottom: 1.25rem;
      }

      .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
      }

      .site-footer ul {
        align-items: center;
      }

      .footer-links ul li a {
        text-align: center;
        padding: 10px 16px;  
        justify-content: center;
      }

      .social-media {
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
      }

      .footer-bottom-content {
        flex-direction: column;
        gap: 1.25rem;
      }

      .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
      }

      .footer-bottom-links a {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
      }

      .separator {
        display: none;  
      }
    }
    
    /* Large Tablets and Small Desktops (1024px and up) */
    @media (max-width: 1024px) and (min-width: 769px) {
      .navbar {
        padding: 1rem 2rem;
      }
      
      .search-container {
        max-width: 280px;
      }
      
      .hero {
        padding: 3.5rem 2rem;
      }
      
      .features,
      .carousel,
      .cta {
        padding: 3.5rem 2rem;
      }
      
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
      
      .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
      }

      .footer-brand {
        padding-right: 1rem;
      }

      .brand-header {
        margin-bottom: 1.25rem;
      }

      .mission-statement p {
        font-size: 1.05rem;
        padding: 1.5rem;
      }
    }
    
    /* Extra Large Devices (Large Desktops, 1200px and up) */
    @media (min-width: 1200px) {
      .navbar-content,
      .hero-content,
      .features-container,
      .cta-content {
        max-width: 1400px;
      }
      
      .hero h2 {
        font-size: 4rem;
      }
      
      .hero p {
        font-size: 1.25rem;
      }
      
      .features-title,
      .carousel-title {
        font-size: 3rem;
      }
      
      .feature-card {
        padding: 2.5rem;
      }
      
      .cta h3 {
        font-size: 3rem;
      }
    }
    
    /* Ultra-wide screens (1600px and up) */
    @media (min-width: 1600px) {
      .navbar-content,
      .hero-content,
      .features-container,
      .cta-content,
      .footer-inner {
        max-width: 1600px;
      }
      
      .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
      }
    }

    /* Touch-Friendly Enhancements */
    @media (hover: none) and (pointer: coarse) {
      .btn {
        min-height: 44px;
        padding: 0.75rem 1rem;
      }
      
      .theme-toggle {
        min-height: 44px;
        padding: 0.75rem 1rem;
      }
      
      .search-button {
        width: 44px;
        height: 44px;
      }
      
      .feature-card {
        padding: 2rem 1.5rem;
      }
      
      .cta-button {
        min-height: 48px;
        padding: 1rem 2rem;
      }
      
      .footer-links a {
        min-height: 44px;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
      }
      
      .scroll-btn,
      .scroll-to-top {
        width: 56px;
        height: 56px;
      }
      
      #chatbotBtn {
        width: 64px;
        height: 64px;
        font-size: 24px;
      }
    }
    
    /* High DPI/Retina Display Support */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
      }
    }
    
    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      
      .slide-track {
        animation: none;
      }
      
      .site-footer::before,
      .site-footer::after {
        animation: none;
      }
    }
    
    /* Dark Mode Media Query Support */
    @media (prefers-color-scheme: dark) {
      :root:not([data-theme="light"]) {
        --bg-primary: #0f172a;
        --bg-secondary: #1e293b;
        --bg-tertiary: #334155;
        --text-primary: #f8fafc;
        --text-secondary: #cbd5e1;
        --text-muted: #94a3b8;
        --border-color: #334155;
        --shadow-light: rgba(0, 0, 0, 0.3);
        --shadow-medium: rgba(0, 0, 0, 0.4);
        --shadow-heavy: rgba(0, 0, 0, 0.6);
        --light-green: #1a2e1a;
        --green-hover: #22c55e;
      }
    }


    /* Floating Chatbot Button */
#chatbotBtn {
  position: fixed;
  bottom: 100px; /* 20px above scroll-to-top button */
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #4caf50; /* greenish theme */
  color: #fff;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 1100; /* above scroll-to-top button */
}

#chatbotBtn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  background-color: #43a047; /* slightly darker green on hover */
}

/* Mobile responsiveness: hide on very small screens */
@media (max-width: 400px) {
  #chatbotBtn {
    display: none;
  }
}

    /* Scroll Button */
.scroll-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px var(--shadow-medium);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.scroll-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-heavy);
}

}
