* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FFD700;
            --secondary: #FF8C00;
            --accent: #FF4500;
            --dark: #1A1A2E;
            --light: #F5F5F5;
            --blue: #1E90FF;
            --green: #32CD32;
            --purple: #9C27B0;
            --teal: #20B2AA;
            --text-dark: #333;
            --text-light: #777;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.5s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: #f9f9f9;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: rgba(255, 215, 0, 0.1);
            transform: translateY(-5px);
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            padding: 10px 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

       .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

/* Your logo image */
.main-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Remove old icon rotation */
.logo i {
    display: none;
}


        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            position: relative;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            }
            to {
                text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
            }
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }

        .about-img:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .experience-box {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .experience-box h3 {
            font-size: 2.5rem;
            margin-bottom: 5px;
        }

        /* Enhanced Services Section */
.services {
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    color: white;
    position: relative;
    overflow: hidden;
}

.services .section-title h2 {
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleGlow 3s infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.8), 0 0 30px rgba(255, 69, 0, 0.6);
    }
}

.services .section-title h2::after {
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    animation: linePulse 2s infinite alternate;
}

@keyframes linePulse {
    0% {
        width: 80px;
        opacity: 0.7;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--purple));
    box-shadow: 
        0 0 25px rgba(255, 69, 0, 0.6),
        0 0 40px rgba(156, 39, 176, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover h3 {
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    flex-grow: 1;
}

.service-card:hover p {
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.service-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    align-self: center;
}

.service-link::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: var(--transition);
}

.service-link:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.5),
        0 0 25px rgba(255, 140, 0, 0.3);
    background: linear-gradient(45deg, var(--accent), var(--purple));
}

.service-link:hover::before {
    left: 100%;
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Background animation effects for services */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(32, 178, 170, 0.1) 0%, transparent 50%);
    animation: backgroundShift 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundShift {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.services .container {
    position: relative;
    z-index: 1;
}

/* Products Section */
.products {
    background: linear-gradient(135deg, #f9f9f9, #e6f7ff);
    position: relative;
    overflow: hidden;
}

.products .section-title h2 {
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleGlow 3s infinite alternate;
}

.products .section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 50px rgba(255, 215, 0, 0.2);
}

.product-card:hover::before {
    left: 100%;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, var(--accent), var(--purple));
    box-shadow: 
        0 0 25px rgba(255, 69, 0, 0.6),
        0 0 40px rgba(156, 39, 176, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.product-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.product-card:hover h3 {
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.product-specs {
    margin-bottom: 20px;
    text-align: left;
}

.spec {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.spec i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    flex-grow: 1;
}

.product-card:hover p {
    color: var(--text-dark);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.product-card:hover .feature-tag {
    background: linear-gradient(45deg, var(--accent), var(--purple));
    transform: translateY(-2px);
}

.product-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    align-self: center;
    margin-top: auto;
}

.product-link::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: var(--transition);
}

.product-link:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.5),
        0 0 25px rgba(255, 140, 0, 0.3);
    background: linear-gradient(45deg, var(--accent), var(--purple));
}

.product-link:hover::before {
    left: 100%;
}

.product-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.product-link:hover i {
    transform: translateX(5px);
}

/* Background animation for products */
.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.products .container {
    position: relative;
    z-index: 1;
}


   :root {
    --primary: #FFD700;
    --secondary: #FFA500;
    --accent: #FF6347;
    --teal: #20B2AA;
    --purple: #9370DB;
    --green: #32CD32;
    --blue: #1E90FF;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



         .solar-installations-section .installation-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 206, 209, 0.2) !important;
            border-color: rgba(0, 206, 209, 0.3) !important;
        }

        .solar-installations-section .installation-card:hover .installation-image img {
            transform: scale(1.1) !important;
        }

        .solar-installations-section .installation-card:hover .installation-overlay {
            opacity: 1 !important;
        }

        .solar-installations-section .installation-card:hover .overlay-content {
            transform: translateY(0) !important;
        }

        .solar-installations-section .filter-btn:hover {
            background: rgba(0, 206, 209, 0.2) !important;
            color: #00CED1 !important;
            transform: translateY(-2px) !important;
        }

        .solar-installations-section .filter-btn.active:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 20px rgba(0, 206, 209, 0.4) !important;
        }

        .solar-installations-section .view-more-btn:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 8px 25px rgba(0, 206, 209, 0.6) !important;
        }

        .solar-installations-section .view-more-btn::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: all 0.5s ease;
        }

        .solar-installations-section .view-more-btn:hover::before {
            left: 100%;
        }

        @media (max-width: 1200px) {
            .solar-installations-section .gallery-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }
        }

        @media (max-width: 992px) {
            .solar-installations-section .gallery-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            
            .solar-installations-section .section-header h2 {
                font-size: 2.5rem !important;
            }
        }

        @media (max-width: 768px) {
            .solar-installations-section .gallery-grid {
                grid-template-columns: 1fr !important;
            }
            
            .solar-installations-section .section-header h2 {
                font-size: 2rem !important;
            }
            
            .solar-installations-section .gallery-nav {
                gap: 0.5rem !important;
            }
            
            .solar-installations-section .filter-btn {
                padding: 10px 20px !important;
                font-size: 0.9rem !important;
            }
        }

         @keyframes floatDot {
            0% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-20px) translateX(10px); }
            50% { transform: translateY(-40px) translateX(0); }
            75% { transform: translateY(-20px) translateX(-10px); }
            100% { transform: translateY(0) translateX(0); }
        }

        .solar-gallery-section .gallery-item:hover {
            transform: translateY(-8px) scale(1.02) !important;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 215, 0, 0.15) !important;
        }

        .solar-gallery-section .gallery-item:hover img {
            transform: scale(1.1) !important;
        }

        .solar-gallery-section .gallery-item:hover .gallery-overlay {
            opacity: 1 !important;
        }

        .solar-gallery-section .gallery-item:hover .overlay-content {
            transform: translateY(0) !important;
        }

        @media (max-width: 1200px) {
            .solar-gallery-section .gallery-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }
        }

        @media (max-width: 992px) {
            .solar-gallery-section .gallery-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            
            .solar-gallery-section .section-header h2 {
                font-size: 2.3rem !important;
            }
            
            .solar-gallery-section .gallery-stats {
                flex-wrap: wrap !important;
                gap: 20px !important;
            }
            
            .solar-gallery-section .stat-item {
                flex: 1 1 45% !important;
            }
        }

        @media (max-width: 768px) {
            .solar-gallery-section .gallery-grid {
                grid-template-columns: 1fr !important;
            }
            
            .solar-gallery-section .section-header h2 {
                font-size: 2rem !important;
            }
            
            .solar-gallery-section .gallery-stats {
                flex-direction: column !important;
                gap: 25px !important;
            }
            
            .solar-gallery-section .stat-item {
                flex: 1 1 100% !important;
            }
        }

        @media (max-width: 480px) {
            .solar-gallery-section {
                padding: 60px 0 !important;
            }
            
            .solar-gallery-section .section-header h2 {
                font-size: 1.8rem !important;
            }
            
            .solar-gallery-section .section-header p {
                font-size: 1rem !important;
            }
        }

        /* Solutions Section */
        .solutions {
            background: linear-gradient(135deg, #f9f9f9, #e6f7ff);
        }

        .solutions-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .solution-item {
            display: flex;
            align-items: center;
            gap: 30px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .solution-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .solution-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            flex-shrink: 0;
        }

        .solution-text h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .solution-text p {
            color: var(--text-light);
        }

        /* Subsidy Section */
        .subsidy {
            background: white;
        }

        .subsidy-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .subsidy-text {
            flex: 1;
        }

        .subsidy-text p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .subsidy-image {
            flex: 1;
        }

        .subsidy-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .subsidy-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .subsidy-feature {
            background: linear-gradient(135deg, #f9f9f9, #e6f7ff);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
        }

        .subsidy-feature:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .subsidy-feature i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .subsidy-feature h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #1A1A2E, #16213E);
            color: white;
        }

        .contact .section-title h2 {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .contact-content {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-form {
            flex: 1;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .contact-details h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: #1A1A2E;
            color: white;
            padding: 70px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Floating Elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            width: 30px;
            height: 30px;
            background: rgba(255, 215, 0, 0.3);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
            }
        }

        /* Particle effects for services */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            animation: particleFloat 20s infinite linear;
            opacity: 0.7;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content, .subsidy-content, .contact-content {
                flex-direction: column;
            }
            
            .about-image, .subsidy-image {
                order: -1;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

