:root {
            --primary-color: #4a6741;
            --primary-light: #6a8761;
            --primary-dark: #2a4721;
            --secondary-color: #8b7355;
            --accent-color: #a4c3b2;
            --text-color: #333;
            --light-bg: #f9f6f1;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            background-color: var(--light-bg);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Merriweather', serif;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInLeft {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .animate-slide-in-left {
            animation: slideInLeft 0.6s ease-out forwards;
        }

        /* Header Styles */
        .top-bar {
            background: linear-gradient(to right, var(--primary-color), var(--primary-light));
            padding: 10px 0;
            font-size: 0.9rem;
            color: white;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: var(--accent-color);
        }

        .site-header {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .site-title {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 0;
            letter-spacing: -1px;
        }

        .site-subtitle {
            color: var(--secondary-color);
            font-size: 1.1rem;
            font-weight: 300;
            letter-spacing: 1px;
        }

        /* Banner Images */
        .banner-section {
            display: flex;
            overflow: hidden;
        }

        .banner-image {
            flex: 1;
            object-fit: cover;
            width: 33.333%;
            transition: transform 0.5s;
        }

        .banner-image:hover {
            transform: scale(1.05);
        }

        /* Navigation */
        .main-nav {
            background: var(--primary-color);
            padding: 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .main-nav .nav-link {
            color: #b9b9b9;
            padding: 20px;
            transition: all 0.3s;
            position: relative;
            font-weight: 500;
        }

        .main-nav .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .main-nav .nav-link:hover:after {
            width: 80%;
            color: var(--light-bg);
        }
        .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
          color: var(--light-bg);
        }
        /* Welcome Section */
        .welcome-section {
            background: white;
            padding: 30px 0;
            margin-bottom: 30px;
        }

        .welcome-title {
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .welcome-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }

        /* Info Columns */
        .info-section {
            margin: 30px 0;
            background: var(--light-bg);
            padding: 20px 0;
        }

        .info-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid var(--primary-color);
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .info-icon {
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 25px;
        }
        .info-card a{
          color: var(--primary-light);
          font-size: 14px;
        }

        /* Testimonial */
        .testimonial {
            background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .testimonial:before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 180px;
            opacity: 0.1;
            font-family: Georgia, serif;
        }

        /* CTA Boxes */
        .cta-box {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .cta-box:hover {
            transform: translateY(-10px);
        }

        .cta-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .cta-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(74, 103, 65, 0.9);
            color: white;
            padding: 30px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .cta-box:hover .cta-overlay {
            transform: translateY(0);
        }

        /* Local Business Section */
        .business-section {
            padding: 50px 0;
            background: white;
        }

        .business-image {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .business-image:hover {
            transform: scale(1.05);
        }

        /* Footer Icons */
        .footer-icons {
            background: var(--primary-dark);
            padding: 60px 0;
        }

        .footer-icon {
            text-align: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s;
            display: inline-block;
            margin: 0 30px;
        }

        .footer-icon:hover {
            transform: translateY(-10px);
            color: var(--accent-color);
        }

        .footer-icon i {
            font-size: 36px;
            margin-bottom: 15px;
        }

        /* Contact Blocks */
        .contact-blocks {
            display: flex;
        }

        .contact-block {
            flex: 1;
            padding: 40px;
            text-align: center;
            background: var(--primary-color);
            color: white;
            transition: background-color 0.3s;
        }

        .contact-block:hover {
            background: var(--primary-light);
        }

        .contact-block:nth-child(2) {
            background: var(--secondary-color);
        }

        .contact-block:nth-child(3) {
            background: var(--primary-dark);
        }

        /* Map Section */
        .map-section {
            height: 400px;
            width: 100%;
        }

        /* Sponsor Section */
        .sponsor-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .sponsor-logo {
            max-width: 250px;
            opacity: 0.7;
            transition: opacity 0.3s, transform 0.3s;
        }

        .sponsor-logo:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 9px 20px;
            font-weight: 600;
            font-size: 16px;
            border-radius: 10px;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 9px 20px;
            font-weight: 600;
            font-size: 16px;
            border-radius: 10px;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
/* Board Page */

 /* Board Member Cards */
 .board-head{
      background-image: url('../img/hero3.jpg');
    background-position: center center;
    width: 100%;
    height: 180px;
    background-size: cover;
 }
        .board-member-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .board-member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .board-member-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .board-member-info {
            padding: 30px;
        }

        .board-member-name {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .board-member-title {
            color: var(--secondary-color);
            font-size: 1.1rem;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .board-member-contact {
            color: var(--primary-light);
            text-decoration: none;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 15px;
        }

        .board-member-bio {
            color: var(--text-color);
            font-size: 1rem;
            line-height: 1.6;
        }        
/* Footer */
        .board-footer {
          background: var(--primary-dark);
          color: white;
          padding: 30px 0;
          margin-top: 60px;
          padding-bottom: 10px;
        }

        .board-footer a {
            color: var(--accent-color);
            text-decoration: none;
        }

        .board-footer a:hover {
            color: white;
        }
/* Login & Register Modal */

.modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }

        .modal-header {
            border: none;
            padding: 1rem 1rem 0;
        }

        .btn-close {
            position: absolute;
            right: 1rem;
            top: 1rem;
            z-index: 1;
        }

        .modal-body {
            padding: 1rem 1rem 1rem;
            overflow: hidden;
        }

            .form-container {
                display: flex;
                transition: transform 0.3s ease-in-out;
                width: 200%;
            }

            .form-section {
                width: 50%;
                padding: 0 15px;
                transition: opacity 0.3s ease-in-out;
                opacity: 0;
                visibility: hidden;
            }

            .form-section.active {
                opacity: 1;
                visibility: visible;
            }

            /* Add this new style */
            .form-container.show-register {
                transform: translateX(-50%);
            }

        #loginForm {
            opacity: 1;
        }

        .modal-title {
            color: var(--primary-color);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 2rem;
            text-align: center;
        }

        .form-label {
            color: #333;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-control {
            padding: 0.75rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(74, 103, 65, 0.25);
        }

        .password-toggle {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
        }

        .forgot-password {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.9rem;
            display: block;
            text-align: right;
            margin-top: 1rem;
        }

        .switch-form {
            text-align: center;
            margin-top: 1.5rem;
            color: #666;
        }

        .switch-form a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .form-check-label {
            color: #666;
        }

        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }                