:root {
            --primary-color: #f09516;
            --secondary-color: #545454;
            --text-color: #000000;
            --accent-color: #61CE70;
            --dark-color: #020202;
            --light-peach: #FFE5DA;
            --white: #FFFFFF;
            --light-yellow: #FDF6BC;
            --orange-accent: #F58220;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Header */
        header {
            background: #ffffff;
            padding: 0.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.25) !important;
            padding: 0.4rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        nav {
            display: flex !important;
            justify-content: center;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo img {
            height: 40px;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        /* Banner Section */
        .banner {
            background: 
                linear-gradient(90deg, 
                    rgba(255, 255, 255, 0.85) 0%, 
                    rgba(255, 255, 255, 0.65) 60%,
                    rgba(255, 255, 255, 0.45) 100%
                ),
                url('https://agnisolar.com/wp-content/uploads/2026/03/Auxilary-Image-2048x1536-1.jpg') right center/cover;
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 400px;
            align-items: center;
            gap: 4rem;
            padding: 80px 10% 50px;
            color: var(--text-color);
            position: relative;
            overflow: hidden;
        }

        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 80% 20%, rgba(240, 149, 22, 0.05) 0%, transparent 40%);
            z-index: 1;
        }

        .banner::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(240, 149, 22, 0.03) 100%);
            z-index: 1;
        }

        .banner > * {
            position: relative;
            z-index: 3;
        }

        .banner-content {
            max-width: 100%;
            animation: slideInLeft 1.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .banner .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(240, 149, 22, 0.08);
            border: 1px solid rgba(240, 149, 22, 0.15);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2rem;
            color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(240, 149, 22, 0.05);
        }

        .banner .badge i {
            color: var(--primary-color);
            font-size: 1rem;
        }

        .banner h1 {
            font-size: 3.2rem;
            margin-bottom: 2rem;
            line-height: 1.05;
            font-weight: 700;
            color: var(--text-color);
        }

        .banner h1 .highlight {
            color: var(--primary-color);
            position: relative;
        }

        .banner h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
            animation: expandWidth 2s ease-out 0.5s both;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 100%; }
        }

        .banner .subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            font-weight: 400;
            color: var(--secondary-color);
            line-height: 1.5;
        }

        .banner-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .banner-stat {
            text-align: left;
        }

        .banner-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            line-height: 1;
        }

        .banner-stat-label {
            font-size: 0.95rem;
            color: var(--secondary-color);
            font-weight: 500;
            margin-top: 0.3rem;
        }

        .banner-buttons {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .cta-button {
            background: var(--primary-color);
            color: var(--white);
            padding: 16px 38px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 20px rgba(240, 149, 22, 0.2);
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.8s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(240, 149, 22, 0.3);
            background: #e08a13;
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        .secondary-button {
            background: rgba(255, 255, 255, 0.9);
            color: var(--text-color);
            padding: 16px 38px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .secondary-button:hover {
            background: rgba(255, 255, 255, 1);
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            color: var(--primary-color);
        }

        /* Contact Form */
        .contact-form {
            background: white;
            padding: 2.8rem;
            border-radius: 20px;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(0, 0, 0, 0.04) inset;
            width: 100%;
            max-width: 420px;
            animation: slideInRight 1.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(240, 149, 22, 0.2);
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--orange-accent));
            border-radius: 30px 30px 0 0;
        }

        .contact-form h3 {
            color: var(--text-color);
            margin-bottom: 2rem;
            text-align: center;
            font-size: 1.8rem;
            font-weight: 600;
            background: linear-gradient(135deg, var(--primary-color), var(--orange-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--light-peach);
            border-radius: 15px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(240, 149, 22, 0.1);
            transform: translateY(-2px);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--secondary-color);
            font-weight: 400;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--orange-accent));
            color: var(--white);
            padding: 15px 30px;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            width: 100%;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(240, 149, 22, 0.3);
            font-family: 'Poppins', sans-serif;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(240, 149, 22, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Sections */
        .section {
            padding: 60px 5%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .section-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--orange-accent));
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--secondary-color);
            margin-bottom: 3rem;
            font-weight: 400;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
        }

        .section-subtitle.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Section CTAs */
        .section-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-color);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(240, 149, 22, 0.2);
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            margin: 0 0.5rem;
        }

        .cta-btn:hover {
            background: #e08a13;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(240, 149, 22, 0.3);
        }

        .cta-btn.secondary {
            background: rgba(240, 149, 22, 0.1);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .cta-btn.secondary:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Clients Section */
        .clients {
            background: #f9f9f9;
            position: relative;
        }

        .clients::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f09516" fill-opacity="0.03" fill-rule="nonzero"><circle cx="30" cy="30" r="2"/></g></svg>');
            pointer-events: none;
        }

        .clients .section-title {
            color: var(--text-color);
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .client-logo {
            background: #ebebeb;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.04);
            opacity: 0;
            transform: translateY(20px);
        }

        .client-logo.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .client-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
            border-color: rgba(240, 149, 22, 0.2);
        }

        .client-logo img {
            max-width: 100%;
            height: 100px;
            object-fit: contain;
            filter: grayscale(0%);
            opacity: 1;
            transition: all 0.3s ease;
        }
.client-logo img {
  display: block !important;
  margin: 0 auto !important;
  height: 100px !important;
  width: auto !important;
}
        .client-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.08);
        }

        /* Services Section */
        .services {
            background: var(--white);
            position: relative;
        }

        .services .section-title {
            color: var(--text-color);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--white);
            padding: 3rem 2.5rem;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(240, 149, 22, 0.08);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            border: 1px solid rgba(240, 149, 22, 0.1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--orange-accent));
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 60px rgba(240, 149, 22, 0.15);
            border-color: var(--primary-color);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--orange-accent));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.2rem;
            color: var(--white);
            box-shadow: 0 10px 25px rgba(240, 149, 22, 0.3);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 35px rgba(240, 149, 22, 0.4);
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--secondary-color);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* USPs Section */
        .usps {
            background: 
                linear-gradient(135deg, 
                    rgba(249, 249, 249, 1) 0%, 
                    rgba(255, 255, 255, 1) 100%
                );
            color: var(--text-color);
            position: relative;
            overflow: hidden;
        }

        .usps::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23f09516" stroke-width="0.3" opacity="0.03"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
            opacity: 0.5;
            animation: slideBackground 30s linear infinite;
            pointer-events: none; /* don't block clicks on CTAs */
        }

        @keyframes slideBackground {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-20px) translateY(-20px); }
        }

        .usps .section-title {
            color: var(--text-color);
            position: relative;
            z-index: 2;
        }

        .usps .section-subtitle {
            color: var(--secondary-color);
            position: relative;
            z-index: 2;
        }

        .usps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .usp-item {
            text-align: center;
            padding: 3rem 2rem;
            opacity: 0;
            transform: scale(0.9) translateY(40px);
            transition: all 0.5s ease;
            background: white;
            border-radius: 15px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
        }

        .usp-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-color);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .usp-item.visible {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .usp-item.visible::before {
            transform: scaleX(1);
        }

        .usp-item:hover {
            transform: scale(1.02) translateY(-8px);
            border-color: rgba(240, 149, 22, 0.1);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .usp-icon {
            width: 75px;
            height: 75px;
            background: rgba(240, 149, 22, 0.08);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .usp-item:hover .usp-icon {
            transform: scale(1.05);
            background: rgba(240, 149, 22, 0.12);
        }

        .usp-number {
            font-size: 3.2rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-bottom: 1rem;
        }

        .usp-item h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: black;
        }

        .usp-item p {
            color: rgba(0, 0, 0, 0.85);
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(135deg, var(--light-peach) 0%, var(--light-yellow) 100%);
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f09516" fill-opacity="0.03"><path d="M20 20l-10-10h20z"/></g></svg>');
            pointer-events: none;
        }

        .testimonials .section-title {
            color: var(--text-color);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2rem 1.8rem;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(240, 149, 22, 0.1);
            position: relative;
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(240, 149, 22, 0.1);
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--orange-accent));
        }

        .testimonial-card::after {
            content: '"';
            font-size: 6rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-color), var(--orange-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: absolute;
            top: -20px;
            right: 10px;
            opacity: 0.3;
        }

        .testimonial-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .testimonial-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(240, 149, 22, 0.15);
            border-color: var(--primary-color);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 2rem;
            color: var(--secondary-color);
            font-size: 0.95rem;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--orange-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--white);
        }

        .author-info h4 {
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 0.2rem;
        }

        .author-info p {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq {
            background: var(--white);
        }

        .faq .section-title {
            color: var(--text-color);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border: 2px solid var(--light-peach);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .faq-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-item:hover {
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(240, 149, 22, 0.1);
        }

        .faq-question {
            background: linear-gradient(135deg, var(--light-peach), var(--light-yellow));
            padding: 2rem;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-color);
        }

        .faq-question:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--orange-accent));
            color: var(--white);
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            font-weight: 300;
            transition: all 0.3s ease;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
        }

        .faq-question.active::after {
            transform: translateY(-50%) rotate(45deg);
            background: rgba(255, 255, 255, 0.3);
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: var(--white);
        }

        .faq-answer.active {
            padding: 2rem;
            max-height: 300px;
        }

        .faq-answer p {
            color: var(--secondary-color);
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Footer */
        footer {
            background: #FDF0CE;
            color: var(--text-color);
            text-align: center;
            padding: 1.5rem 0 1rem;
            position: relative;
        }

       .footer-logo {
    display: flex;
    margin-bottom: 2rem;
    justify-content: center;
}

        .footer-logo img {
            height: 40px;
            width: auto;
        }

        .footer-address {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-color);
            max-width: 400px;
            margin: 0 auto;
        }

        .footer-address .company-name {
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .usps-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }
        
        @media (max-width: 968px) {
            .usps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 968px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .usps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 968px) {
            .banner {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
                padding: 80px 3% 40px;
                background: 
                    linear-gradient(0deg, 
                        rgba(255, 255, 255, 0.85) 0%, 
                        rgba(255, 255, 255, 0.7) 100%
                    ),
                    url('https://agnisolar.com/wp-content/uploads/2026/03/Auxilary-Image-2048x1536-1.jpg') center center/cover;
            }

            .banner h1 {
                font-size: 2.5rem;
            }

            .banner-stats {
                justify-content: center;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .logo img {
                height: 45px;
            }

            .banner {
                padding: 70px 5% 35px;
            }

            .banner h1 {
                font-size: 2.1rem;
            }

            .banner .subtitle {
                font-size: 1rem;
            }

            .banner-stats {
                flex-direction: row;
                gap: 1.5rem;
            }

            .banner-stat-number {
                font-size: 2rem;
            }

            .banner-buttons {
                flex-direction: column;
                width: 100%;
                gap: 1rem;
            }

            .cta-button,
            .secondary-button {
                width: 100%;
                justify-content: center;
                padding: 18px 35px;
            }

            .contact-form {
                max-width: 100%;
                margin: 0;
                padding: 2.5rem 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .usps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .usp-item {
                padding: 2.5rem 1.5rem;
            }

            .usp-number {
                font-size: 2.8rem;
            }

            .footer-logo img {
                height: 60px;
            }

            .footer-address {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .banner h1 {
                font-size: 1.8rem;
                line-height: 1.1;
            }

            .banner .badge {
                font-size: 0.8rem;
                padding: 0.6rem 1.2rem;
            }

            .banner-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .banner-stat {
                text-align: center;
            }

            .section {
                padding: 40px 3%;
            }

            .usps-grid,
            .clients-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .usp-item {
                padding: 2rem 1.5rem;
            }

            .contact-form {
                padding: 2rem 1.5rem;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .process-illustration {
                margin-bottom: 2rem;
            }
            
            .step-connector {
                display: none;
            }

            .logo img {
                height: 40px;
            }

            .footer-logo img {
                height: 50px;
            }

            .footer-address {
                font-size: 0.9rem;
                padding: 0 1rem;
            }

            .footer-address .company-name {
                font-size: 1rem;
            }
        }
        
        /* Process Section */
        .process {
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            position: relative;
        }
        
        .process-illustration {
            text-align: center;
            margin: 0 auto 3rem;
            max-width: 800px;
        }
        
        .process-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .process-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(240, 149, 22, 0.15);
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
        }
        
        .process-step {
            background: white;
            border-radius: 15px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.04);
            position: relative;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            z-index: 2;
        }
        
        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(240, 149, 22, 0.1);
            border-color: rgba(240, 149, 22, 0.1);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: rgba(240, 149, 22, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            font-weight: 600;
            position: relative;
        }
        
        .process-step:hover .step-number {
            background: var(--primary-color);
            color: white;
        }
        
        .process-step h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
            color: var(--text-color);
        }
        
        .process-step p {
            color: var(--secondary-color);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .step-connector {
            position: absolute;
            top: 3.7rem;
            left: calc(50% + 3rem);
            width: calc(100% - 6rem);
            height: 2px;
            background: rgba(240, 149, 22, 0.1);
            z-index: 1;
        }
        
        @media (max-width: 1200px) {
            .process-steps {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .step-connector {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-illustration {
                margin-bottom: 2rem;
            }
        }

        /* Floating Elements */
        .floating-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            opacity: 0.6;
            pointer-events: none; /* ensure decorative dots don't intercept clicks */
        }

        .dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(240, 149, 22, 0.4);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(240, 149, 22, 0.3);
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(97, 206, 112, 0.5);
            border-radius: 50%;
            animation: float 12s linear infinite;
            position: relative; /* make sure it can be stacked above overlays */
            z-index: 50;
        }