      /* Enhanced Navigation Styles */
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #E07600;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Glassmorphism & Glow */
        .glass-nav {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(78, 169, 29, 0.1);
        }
        
        /* Submenu Arrow Rotation */
        .arrow-icon {
            transition: transform 0.3s ease;
        }
        .group:hover .arrow-icon {
            transform: rotate(180deg);
        }
        
        /* Logo shine effect - always visible with animation */
        .logo-shine {
            animation: logo-shine 2s ease-in-out infinite alternate;
        }

        @keyframes logo-shine {
            0% {
                transform: skewX(-12deg) translateX(-150%);
            }
            100% {
                transform: skewX(-12deg) translateX(150%);
            }
        }
        
        /* Contact page specific fixes */
        .page-header {
            background: linear-gradient(135deg, rgba(78, 169, 29, 0.9) 0%, rgba(204, 194, 0, 0.8) 100%), url('/images/1757472948467-1211.jpg') center/cover no-repeat;
            min-height: 300px;
            position: relative;
        }
        
        .icon-decorator {
            position: absolute;
            width: 60px;
            height: 60px;
            opacity: 0.3;
            z-index: 1;
        }
        
        .icon-decorator.solar {
            top: 20%;
            left: 5%;
            animation: float 6s ease-in-out infinite;
        }
        
        .icon-decorator.wind {
            top: 60%;
            right: 10%;
            animation: float 8s ease-in-out infinite 1s;
        }
        
        .icon-decorator.battery {
            bottom: 20%;
            left: 15%;
            animation: float 7s ease-in-out infinite 0.5s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .card-gradient {
            background: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(224, 118, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .card-gradient:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-4px);
        }
        
        .btn-gradient {
            background: linear-gradient(135deg, #E07600 0%, #CCC200 100%);
            color: white;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            border: none;
            cursor: pointer;
        }
        
        .btn-gradient:hover {
            background: linear-gradient(135deg, #d06b00 0%, #bbb200 100%);
            box-shadow: 0 8px 20px rgba(224, 118, 0, 0.3);
            transform: translateY(-2px);
        }
        
        .glow-effect {
            box-shadow: 0 10px 40px rgba(78, 169, 29, 0.2);
            border-radius: 16px;
            overflow: hidden;
        }
        
        .card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .icon-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(78, 169, 29, 0.1) 0%, rgba(204, 194, 0, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }
        
        .section-dark {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
        }
        
        .accordion-item {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 12px;
        }
        
        .accordion-header {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .accordion-header:hover {
            background: #f9fafb;
        }
        
        .accordion-header.active {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            border-bottom: none;
        }
        
        .accordion-content {
            background: white;
            border: 1px solid #e5e7eb;
            border-top: none;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }