
        /* Base styles and variables */
        :root {
            --dark-green: #0A3D2F;
            --medium-green: #1B5E46;
            --light-green: #2E8B57;
            --accent-green: #4CAF50;
            --text-white: #FFFFFF;
            --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            --sky-blue: #E6F7FF;
            --card-blue: #B3E5FC;
            --faq-dark-green: #0A2F25;
            --faq-light-green: #3CB371;
            --blog-dark-green: #05201A;
            --blog-light-green: #2E8B57;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body.modern-theme{
            cursor: none;
            color: var(--text-white);
        }
        
        body{
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Dynamic radial gradient background */
        .gradient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            transition: all 0.1s ease-out;
            background: radial-gradient(circle at center, var(--light-green), var(--medium-green), var(--dark-green));
        }
        /* Global Flash Messages */
            .global-flash-messages {
              position: fixed;
              top: 20%;
              left: 50%;
              transform: translateX(-50%);
              z-index: 1000;
              width: 50%;
              max-width: 500px;
              background: rgba(0, 0, 0, 0.7);
              color: #fff;
              padding: 30px;
              border-radius: 20px;
              box-shadow: rgba(0,0,0,0.3) 0 0 3px 3px;
            }

        .modern-theme .mouse-tracker {
            position: fixed;
            width: 30px;
            height: 30px;
            background: var(--accent-green);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1000;
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            transition: transform 0.05s ease-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modern-theme .mouse-tracker::before {
            content: '';
            position: absolute;
            width: 5px;
            height: 5px;
            background: white;
            border-radius: 50%;
            z-index: 1001;
            mix-blend-mode: normal;
        }


        .modern-theme .mouse-tracker::before {
            background: white;
            mix-blend-mode: normal;
        }
        
        
        .modern-theme .mouse-tracker {
            mix-blend-mode: multiply;
            transition: background 0.3s ease;
        }

        .modern-theme .services-section ~ .mouse-tracker,
        .modern-theme .service-card:hover ~ .mouse-tracker,
        .modern-theme .testimonial-card:hover ~ .mouse-tracker,
        .modern-theme .faq-item:hover ~ .mouse-tracker,
        .modern-theme .blog-card:hover ~ .mouse-tracker,
        .modern-theme .blog-section .mouse-tracker,
        .modern-theme .services-section .mouse-tracker,
        .modern-theme .testimonials-section .testimonial-card .mouse-tracker,
        .modern-theme .faq-section .faq-item .mouse-tracker {
            background: radial-gradient(circle, var(--dark-green), transparent 70%);
        }

        .modern-theme .services-section ~ .mouse-tracker::before,
        .modern-theme .service-card:hover ~ .mouse-tracker::before,
        .modern-theme .testimonial-card:hover ~ .mouse-tracker::before,
        .modern-theme .faq-item:hover ~ .mouse-tracker::before,
        .modern-theme .blog-card:hover ~ .mouse-tracker::before {
            background: white;
        }

        .modern-theme .service-card,
        .modern-theme .testimonial-card,
        .modern-theme .faq-item,
        .modern-theme .blog-card {
            position: relative;
        }
        

        /* Navigation styles */
        .navbar {
            position: relative;
            padding: 1.5rem 3rem;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-shadow: var(--text-shadow);
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: var(--accent-green);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-white);
            font-weight: 500;
            text-shadow: var(--text-shadow);
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-green);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--accent-green);
        }

        /* Hero section layout */
        .hero {
            display: flex;
            align-items: center;
            padding: 0 10%;
            position: relative;
            height: calc(100vh - 100px);
            max-height: 800px;
        }

        .hero-content {
            flex: 1;
            max-width: 50%;
            z-index: 2;
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: var(--text-shadow);
        }

        .hero-title span {
            color: var(--accent-green);
        }

        .text-container {
            background: radial-gradient(circle at center, rgba(10, 61, 47, 0.7), rgba(10, 61, 47, 0.9));
            padding: 1.5rem;
            border-radius: 15px;
            backdrop-filter: blur(5px);
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(76, 175, 80, 0.2);
        }

        .hero-description {
            font-size: 1rem;
            line-height: 1.5;
            text-shadow: var(--text-shadow);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        /* User Menu Styles */
            .user-menu {
                position: relative;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                cursor: pointer;
            }
            
            .user-avatar {
                width: 32px;
                height: 32px;
                border-radius: 50%;
                object-fit: cover;
                border: 2px solid var(--primary-color);
            }
            
            .welcome-text {
                color: var(--text-dark);
                font-weight: 500;
            }
            
            .user-dropdown {
                position: absolute;
                top: 100%;
                right: 0;
                background: var(--white);
                border-radius: 8px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                padding: 0.5rem 0;
                min-width: 150px;
                display: none;
                z-index: 1000;
                padding: 10px;
                background: rgba(0,0,0,0.7);
            }
            
            .user-menu:hover .user-dropdown {
                display: block;
            }
            
            .dropdown-link {
                display: block;
                padding: 0.5rem 1rem;
                color: var(--text-dark);
                text-decoration: none;
                transition: background 0.3s ease;
            }
            
            .dropdown-link:hover {
                background: var(--background-light);
                color: var(--primary-color);
            }
        /* CTA Button with icon */
        .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 700;
            background: var(--accent-green);
            color: var(--text-white);
            border: none;
            border-radius: 50px;
            cursor: none;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
            text-shadow: var(--text-shadow);
        }

        .cta-button i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            background: var(--light-green);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        /* Image container */
        .image-container {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            height: 100%;
        }

        .image-frame {
            width: 85%;
            max-height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            position: relative;
        }

        .image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9) contrast(1.1);
            transition: transform 0.5s ease;
        }

        .image-frame:hover img {
            transform: scale(1.03);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--accent-green), transparent);
            opacity: 0.1;
            animation: float 15s infinite ease-in-out;
        }

        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 70px;
            height: 70px;
            top: 60%;
            left: 10%;
            animation-delay: 3s;
        }

        .floating-element:nth-child(3) {
            width: 120px;
            height: 120px;
            bottom: 10%;
            right: 15%;
            animation-delay: 6s;
        }

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

        /* Services Section Styles */
        .services-section {
            padding: 5rem 10%;
            background: var(--sky-blue);
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--dark-green);
            font-weight: 700;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: linear-gradient(135deg, var(--card-blue), #E1F5FE);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-align: center;
            color: #000;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #B3E5FC, #E1F5FE);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-green);
            border-radius: 50%;
            color: white;
            font-size: 1.8rem;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-green);
            font-weight: 600;
        }

        .service-description {
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            color: #333;
        }

        .service-cta {
            padding: 0.8rem 1.5rem;
            background: var(--accent-green);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: center;
            width: fit-content;
        }

        .service-cta:hover {
            background: var(--light-green);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
        }

        /* Testimonials Section Styles */
        .testimonials-section {
            padding: 5rem 10%;
            background: radial-gradient(circle at center, var(--medium-green), var(--dark-green));
            text-align: center;
        }

        .testimonials-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .testimonials-subtitle {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            color: #333;
            text-align: left;
        }

        .testimonial-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .testimonial-avatar {
            width: 92px;
            height: 92px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1.5rem;
            border: 3px solid var(--accent-green);
        }

        .testimonial-user-info {
            flex: 1;
        }

        .testimonial-user-name {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--dark-green);
        }

        .testimonial-service {
            font-size: 0.9rem;
            color: var(--medium-green);
            background: rgba(76, 175, 80, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            display: inline-block;
        }

        .testimonial-quote {
            position: relative;
            padding-left: 1.5rem;
            font-style: italic;
            line-height: 1.6;
            color: #555;
        }

        .testimonial-quote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: var(--accent-green);
            font-family: Georgia, serif;
        }

        /* FAQ Section Styles */
        .faq-section {
            padding: 5rem 10%;
            background: radial-gradient(circle at center, var(--faq-light-green), var(--faq-dark-green));
            text-align: center;
        }

        .faq-title {
            font-size: 2.8rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .faq-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .faq-item {
            background: white;
            border-radius: 8px;
            border: 4px solid var(--accent-green);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 1.5rem;
            font-weight: 700;
            color: var(--dark-green);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            position: relative;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--accent-green);
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #333;
            line-height: 1.6;
            text-align: left;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: 1.5rem;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-more {
            display: block;
            text-align: right;
            padding: 0.5rem 1.5rem;
            font-size: 0.8rem;
            color: var(--medium-green);
            text-decoration: none;
			display:none
        }
		.faq-item.active .faq-more {
           display:block
        }

        /* Blog Section Styles */
        .blog-section {
            padding: 5rem 10%;
            background: radial-gradient(circle at center, var(--blog-light-green), var(--blog-dark-green));
            text-align: center;
        }

        .blog-title {
            font-size: 2.8rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .blog-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .blog-image {
            position: relative;
            height: 0;
            padding-bottom: 56.25%; 
            overflow: hidden;
        }

        .blog-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .blog-category {
            background: var(--accent-green);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .blog-date {
            color: white;
            font-size: 0.8rem;
            background: rgba(0,0,0,0.5);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
        }

        .blog-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .blog-title{
          font-size: 16px;
          color: #8012cc !important;
          text-align: left;
          padding: 0;
          margin: 0 0 15px !important;
        }

        .blog-description {
            color: #333;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-align:left;
        }

        .blog-read-more {
            align-self: flex-start;
            background: var(--accent-green);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration:none;
        }

        .blog-read-more:hover {
            background: var(--light-green);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .hero {
                flex-direction: column;
                text-align: center;
                height: auto;
                padding: 2rem 5%;
            }
            
            .hero-content {
                max-width: 100%;
                margin-bottom: 2rem;
            }
            
            .image-frame {
                width: 100%;
                max-height: 350px;
            }
            
            .navbar {
                padding: 1rem 2rem;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .services-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-title {
                font-size: 2.5rem;
            }
            
            .faq-container {
                grid-template-columns: 1fr;
            }
            
            .faq-title {
                font-size: 2.2rem;
            }
            
            .blog-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .blog-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .text-container {
                padding: 1.2rem;
            }
            
            .hero-description {
                font-size: 0.9rem;
            }
            
            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            
            .services-container {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .testimonials-container {
                grid-template-columns: 1fr;
            }
            
            .testimonials-title {
                font-size: 2rem;
            }
            
            .testimonial-header {
                flex-direction: column;
                text-align: center;
            }
            
            .testimonial-avatar {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .faq-title {
                font-size: 1.8rem;
            }
            
            .blog-container {
                grid-template-columns: 1fr;
            }
            
            .blog-title {
                font-size: 1.8rem;
            }
        }
		
		
		        /* Email Subscription Section Styles */
        .email-subscription-section {
            padding: 5rem 10%;
            background: var(--dark-green);
            text-align: center;
        }

        .subscription-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .subscription-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .subscription-text {
            flex: 0 0 70%;
            text-align: left;
        }

        .subscription-benefits {
            font-size: 1.2rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .subscription-form {
            flex: 0 0 30%;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .email-input {
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }

        .email-input:focus {
            outline: none;
            background: white;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.5);
        }

        .subscribe-button {
            padding: 1rem 1.5rem;
            background: var(--accent-green);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .subscribe-button:hover {
            background: var(--light-green);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
        }

        .subscription-note {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 0.5rem;
        }

        /* Responsive design for subscription section */
        @media (max-width: 768px) {
            .subscription-content {
                flex-direction: column;
                gap: 2rem;
            }
            
            .subscription-text, .subscription-form {
                flex: 0 0 100%;
                text-align: center;
            }
            
            .subscription-title {
                font-size: 2rem;
            }
            
            .subscription-benefits {
                font-size: 1rem;
            }
        }
		        /* Social Media Section Styles */
        .social-section {
            padding: 5rem 10%;
            background: radial-gradient(circle at center, var(--light-green), #4CAF50);
            text-align: center;
        }

        .social-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .social-subtitle {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            background: white;
            border-radius: 50%;
            color: var(--dark-green);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
        }

        .social-link:hover {
            transform: scale(1.2);
            border-radius: 10px;
            background: var(--accent-green);
            color: white;
        }

        /* Custom tooltip styles */
        .social-link::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 1000;
        }

        .social-link:hover::after {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .social-icons {
                gap: 1.5rem;
            }
            
            .social-link {
                width: 56px;
                height: 56px;
                font-size: 1.3rem;
            }
            
            .social-title {
                font-size: 2rem;
            }
            
            .social-subtitle {
                font-size: 1rem;
            }
        }
		
		 /* Footer Section Styles */
        .footer-section {
            background: radial-gradient(circle at center, #1B5E46, #0A3D2F);
            position: relative;
            padding: 4rem 10% 2rem;
            color: white;
        }

        .footer-top, .footer-bottom {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-title {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            color: var(--accent-green);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-green);
        }

        .footer-separator {
            height: 4px;
            background: radial-gradient(circle, var(--accent-green), transparent);
            margin: 2rem 0;
            border-radius: 2px;
        }

        .footer-about {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .footer-logo i {
            margin-right: 10px;
            color: var(--accent-green);
        }

        .footer-description {
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            flex-grow: 1;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .contact-item {
            margin-bottom: 1.2rem;
        }

        .contact-item strong {
            display: block;
            margin-bottom: 0.3rem;
            color: var(--accent-green);
        }

        .contact-item p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.4;
        }

        .footer-copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--accent-green);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--light-green);
            transform: translateY(-3px);
        }

        /* Sticky Navbar */
        .navbar.sticky {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }
		
		 /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            width: 30px;
            height: 24px;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            display: block;
            height: 3px;
            width: 100%;
            background: var(--text-white);
            margin-bottom: 5px;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, var(--dark-green), var(--medium-green));
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            padding: 2rem;
            overflow-y: auto;
        }

        .mobile-menu-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 1000;
            transition: transform 0.3s ease;
        }

        .mobile-menu-close:hover {
            transform: rotate(90deg);
        }

        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            flex-grow: 1;
            text-align: center;
        }

        .mobile-logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
            color: white;
        }

        .mobile-logo i {
            margin-right: 10px;
            color: var(--accent-green);
        }

        .mobile-nav-links {
            list-style: none;
            margin-bottom: 3rem;
        }

        .mobile-nav-link {
            display: block;
            padding: 1rem 0;
            font-size: 1.5rem;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .mobile-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-green);
            transition: width 0.3s ease;
        }

        .mobile-nav-link:hover::after {
            width: 100%;
        }

        .mobile-nav-link:hover {
            color: var(--accent-green);
            transform: translateX(10px);
        }

        .mobile-auth-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .mobile-btn {
            padding: 1rem 2rem;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .mobile-btn-login {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .mobile-btn-register {
            background: var(--accent-green);
            color: white;
        }

        .mobile-btn-login:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-btn-register:hover {
            background: var(--light-green);
            transform: translateY(-3px);
        }

        .mobile-social-links {
            display: flex;
            gap: 1.5rem;
        }

        .mobile-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .mobile-social-link:hover {
            background: var(--accent-green);
            transform: translateY(-5px);
        }
		

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
            
            .nav-links, .auth-buttons {
                display: none;
            }
        }

        @media (max-width: 1024px) {
            .footer-top, .footer-bottom {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .footer-section {
                padding: 3rem 5% 1.5rem;
            }
            
            .footer-top, .footer-bottom {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .back-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 45px;
                height: 45px;
            }
        }
		
        .dashboard-container{color:#000;}
        .close-flash {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0;
            float: right;
        }
