        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            position: relative;
        }

        /* dark overlay to match the screenshot tone */
        .hero::before{
            content:'';position:absolute;inset:0;background:rgba(6,25,39,0.65);
        }

        .hero-inner{
            position:relative;z-index:2;max-width:1200px;width:100%;display:grid;grid-template-columns:520px 1fr;gap:40px;align-items:center;
        }

        /* Left column — headline + stacked pill buttons */
        .hero-left{padding-right:20px}

        .hero-title{
            text-align:center;margin:0 0 18px;font-size:34px;font-weight:700;line-height:1.05;color:#fff
        }

        .hero-sub{display:block;text-align:center;color:#cfe6f0;margin-bottom:28px;font-size:15px}

        .pills{
            display:flex;flex-direction:column;gap:20px;align-items:flex-start;max-width:420px;margin:0 auto;
        }

        .pill{
            background:#fff;border-radius:60px;padding:22px 36px;display:flex;align-items:center;gap:18px;width:100%;box-shadow:0 8px 20px rgba(0,0,0,0.25);color:#0a2b3a;cursor:pointer;transition:transform .25s ease,box-shadow .25s ease;position:relative;overflow:visible
        }

        .pill:hover{transform:translateX(6px);box-shadow:0 18px 30px rgba(2,20,30,0.25)}

        .pill .fa-arrow-right{color:#12b886;font-size:20px}

        .pill-title{font-weight:700}

        /* green underline accent like screenshot */
        .pill-title::after{
            content:'';position:absolute;left:120px;bottom:8px;height:4px;width:70px;background:#0fb07b;border-radius:4px;transform-origin:left;transition:all .25s ease
        }

        .pill:hover .pill-title::after{width:110px}

        /* Right column — circular image with decorative ring */
        .hero-right{display:flex;flex-direction:column;align-items:center;gap:18px}

        .photo-wrap{width: 380px; height: 380px; border-radius:18px;position:relative;overflow:hidden;box-shadow:0 10px 40px rgba(0,0,0,0.6);background:linear-gradient(180deg,#16384a,transparent)}

        /* decorative ring */
        .photo-wrap::before{
            content:'';position:absolute;inset:-14px;border-radius:22px;border:3px solid rgba(84,150,210,0.18);pointer-events:none;filter:blur(0.2px)
        }

        .photo-wrap img{width:100%;height:100%;object-fit:cover;display:block}

        .trustline{display:flex;align-items:center;gap:12px;color:#bfe6d8;font-weight:600}
        .stars{display:inline-flex;gap:6px}
        .stars i{color:#12b886}
        .reviews{color:#d7f3e8;font-weight:700}

        /* small desktop -> center stack */
        @media (max-width:1100px){
            .hero-inner{grid-template-columns:1fr;grid-auto-rows:auto;text-align:center}
            .pills{align-items:center}
            .pill{width:80%}
            .pill-title::after{left:70px}
        }

        @media (max-width:520px){
            .hero{padding:40px 14px}
            .hero-title{font-size:22px}
            .pill{padding:16px 24px}
            .photo-wrap{width:280px;height:280px}
        }

        /* New Hero Header Styles */
        .hero-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 100;
            background: rgba(6, 25, 39, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hero-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }

        .hero-logo span {
            color: #3498db;
        }

        .hero-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .hero-nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .hero-nav ul li a:hover {
            color: #3498db;
        }

        .hero-nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #3498db;
            transition: width 0.3s ease;
        }

        .hero-nav ul li a:hover::after {
            width: 100%;
        }

        .hero-cta {
            background: #3498db;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .hero-cta:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .hero-menu-toggle {
            display: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .hero-nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(6, 25, 39, 0.95);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
            }

            .hero-nav ul.active {
                display: flex;
            }

            .hero-menu-toggle {
                display: block;
            }

            .hero-cta {
                display: none;
            }
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 10px auto;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Header Styles */
        header {
            background-color: var(--primary);
            color: white;
            /*padding: 15px 0;*/
            padding: 1px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .logo span {
            color: var(--secondary);
        }

        /* Navigation Styles */
        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            display: block;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: var(--secondary);
        }

        /* Dropdown Menu Styles */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            color: var(--dark);
            box-shadow: var(--shadow);
            display: none;
            min-width: 250px;
            border-radius: 0 0 8px 8px;
            overflow: hidden;
        }

        nav ul li:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            color: var(--dark);
            padding: 12px 20px;
            display: block;
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            background-color: var(--light);
            color: var(--secondary);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* Form Styles */
        .form-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 30px;
            width: 100%;
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-block {
            display: block;
            width: 100%;
        }

        /* Enquiry Form Section */
        .enquiry-section {
            background-color: var(--light);
        }

        .enquiry-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .enquiry-image {
            flex: 1;
        }

        .enquiry-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .enquiry-form {
            flex: 1;
        }

        .enquiry-form-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 30px;
        }

        .form-progress {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }

        .form-progress::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #e0e0e0;
            z-index: 1;
        }

        .progress-step {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            font-weight: bold;
            color: #666;
        }

        .progress-step.active {
            background-color: var(--secondary);
            color: white;
        }

        .progress-step.completed {
            background-color: #2ecc71;
            color: white;
        }

        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        /* How and When Section */
        .how-when-section {
            background-color: white;
        }

        .how-when-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .how-when-box {
            background-color: var(--light);
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .how-when-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .how-when-box i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .how-when-box h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* Comparison Section */
        .comparison-section {
            background-color: var(--light);
        }

        .comparison-container {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .comparison-buttons {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .comparison-btn {
            background-color: white;
            padding: 25px 20px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .comparison-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .comparison-btn i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .comparison-btn h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .comparison-image {
            flex: 1;
        }

        .comparison-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        /* About Section */
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-content {
            flex: 1;
        }

        .about-content h2 {
            color: var(--primary);
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 15px;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        /* Services Section */
        .services-section {
            background-color: var(--light);
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-box {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
        }

        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-box i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .service-box h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* Fun Facts Section */
        .facts-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .fact-box {
            text-align: center;
            padding: 30px 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .fact-box i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .fact-box h3 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* Business Services Section */
        .business-services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .business-service {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .business-service:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .business-service i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .business-service h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* How It Works Section */
        .how-it-works-section {
            background-color: var(--light);
        }

        .steps-container {
            display: flex;
            justify-content: space-between;
            gap: 30px;
        }

        .step {
            flex: 1;
            text-align: center;
            padding: 30px 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            line-height: 50px;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* Testimonials Section */
        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .author-info h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }

        /* Partners Section */
        .partners-section {
            background-color: var(--light);
        }

        .partners-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .partner-logo {
            width: 150px;
            height: 80px;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            box-shadow: var(--shadow);
            padding: 10px;
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            background-color: white;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            background-color: #f8f9fa;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 20px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .cta-btn {
            background-color: var(--secondary);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .comparison-container, .about-container, .enquiry-container {
                flex-direction: column;
            }
            
            .steps-container {
                flex-direction: column;
            }
            
            .slider-container {
                flex-direction: column;
            }

            .banner-buttons {
                flex-direction: row;
                justify-content: center;
                padding: 20px;
            }

            .project-btn {
                margin: 0 10px;
                padding: 12px 20px;
            }

            .slider-content {
                padding: 20px;
            }

            .how-when-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                box-shadow: var(--shadow);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                width: 100%;
            }
            
            .dropdown-menu {
                position: static;
                display: none;
                width: 100%;
            }
            
            .slider-content h1 {
                font-size: 2.2rem;
            }
            
            .comparison-buttons {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }

            .banner-buttons {
                flex-direction: column;
                align-items: center;
            }

            .project-btn {
                width: 80%;
                margin: 5px 0;
            }

            .how-when-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .slider-section {
                height: 500px;
            }
            
            .slider-content h1 {
                font-size: 1.8rem;
            }
            
            .form-container, .enquiry-form-container {
                padding: 20px;
            }
            
            section {
                padding: 60px 0;
            }
        }
    </style>
</head>
<body>
    <!-- Header with Dropdown Menu -->
    <header>
        <div class="container header-container">
            <div class="logo">Lava<span>Energy</span></div>
            <div class="menu-toggle">
                <i class="fas fa-bars"></i>
            </div>
            <nav>
                <ul>
                    <li><a href="home.html">Home</a></li>
                    <li>
                        <a href="#">Services <i class="fas fa-chevron-down"></i></a>
                        <div class="dropdown-menu">
                            <a href="enegry.html">Compare Business Energy</a>
                            <a href="business-broadband.html">Business Broadband</a>
                            <a href="#">Waste Management</a>
                        </div>
                    </li>
                    <li><a href="about-us.html">About</a></li>
                    <li><a href="#">How It Works</a></li>
                    <li><a href="contact.html">Contact</a></li>
                </ul>
            </nav>
        </div>
    </header>
    
    <section class="hero">
    <!-- Hero Header -->
    <div class="hero-top-header">
        <div class="container">
            <h2 class="hero-header-title">Business Utilities Comparison Made Simple</h2>
            <p class="hero-header-text">In less than 30 seconds, you could <strong>join over 500,000 businesses saving</strong> on their utility costs.</p>
        </div>
    </div>
    
    <div class="hero-inner container">
        <!-- Left: Title + pills -->
        
        <div class="hero-left">
            <div class="pills" role="list">
                <button class="pill" role="listitem" aria-label="Compare Energy Deals">
                    <i class="fa-solid fa-arrow-right"></i>
                    <a href="enquiry.html"><span class="pill-title">Compare Energy Deals</span></a>
                </button>

                <button class="pill" role="listitem" aria-label="Compare Broadband Prices">
                    <i class="fa-solid fa-arrow-right"></i>
                    <a href="enquiry.html"><span class="pill-title">Compare Broadband Prices</span></a>
                </button>

                <button class="pill" role="listitem" aria-label="Compare Water Suppliers">
                    <i class="fa-solid fa-arrow-right"></i>
                    <a href="enquiry.html"><span class="pill-title">Waste Management</span></a>
                </button>

                <button class="pill" role="listitem" aria-label="Free Meter Installation">
                    <i class="fa-solid fa-arrow-right"></i>
                    <span class="pill-title">Free Meter Installation</span>
                </button>
            </div>
        </div>

        <!-- Right: Image + Trust -->
        <div class="hero-right">
            <div class="photo-wrap">
                <img src="https://images.unsplash.com/photo-1492562080023-ab3db95bfbce?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80" alt="Happy business owner">
            </div>

            <div class="trustline">
                <div class="stars" aria-hidden="true">
                    <i class="fa-solid fa-star"></i>
                    <i class="fa-solid fa-star"></i>
                    <i class="fa-solid fa-star"></i>
                    <i class="fa-solid fa-star"></i>
                    <i class="fa-solid fa-star"></i>
                </div>
                <div class="reviews">| over 23k reviews</div>
            </div>
        </div>
    </div>
</section>

<style>
/* Hero Top Header Styles */
.hero-top-header {
    /*background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);*/
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');*/
    background-size: cover;
}

.hero-top-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-header-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.hero-header-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.hero-header-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

.hero-header-text strong {
    color: #2ecc71;
    font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-top-header {
        padding: 30px 20px;
    }
    
    .hero-header-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero-header-text {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero-top-header {
        padding: 25px 15px;
    }
    
    .hero-header-title {
        font-size: 1.5rem;
    }
    
    .hero-header-text {
        font-size: 0.9rem;
    }
}

/* Existing Hero Styles (for reference) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 25, 39, 0.65);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 40px;
    align-items: center;
}

.hero-left {
    padding-right: 20px;
}

.hero-title {
    text-align: center;
    margin: 0 0 18px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
}

.hero-sub {
    display: block;
    text-align: center;
    color: #cfe6f0;
    margin-bottom: 28px;
    font-size: 15px;
}

.pills {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    max-width: 420px;
    margin: 0 auto;
}

.pill {
    background: #fff;
    border-radius: 60px;
    padding: 22px 36px;
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: #0a2b3a;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: visible;
}

.pill:hover {
    transform: translateX(6px);
    box-shadow: 0 18px 30px rgba(2, 20, 30, 0.25);
}

.pill .fa-arrow-right {
    color: #12b886;
    font-size: 20px;
}

.pill-title {
    font-weight: 700;
}

.pill-title::after {
    content: '';
    position: absolute;
    left: 120px;
    bottom: 8px;
    height: 4px;
    width: 70px;
    background: #0fb07b;
    border-radius: 4px;
    transform-origin: left;
    transition: all .25s ease;
}

.pill:hover .pill-title::after {
    width: 110px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.photo-wrap {
    width: 380px;
    height: 380px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    background: linear-gradient(180deg, #16384a, transparent);
}

.photo-wrap::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 22px;
    border: 3px solid rgba(84, 150, 210, 0.18);
    pointer-events: none;
    filter: blur(0.2px);
}

.photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trustline {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bfe6d8;
    font-weight: 600;
}

.stars {
    display: inline-flex;
    gap: 6px;
}

.stars i {
    color: #12b886;
}

.reviews {
    color: #d7f3e8;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        text-align: center;
    }
    
    .pills {
        align-items: center;
    }
    
    .pill {
        width: 80%;
    }
    
    .pill-title::after {
        left: 70px;
    }
}

@media (max-width: 520px) {
    .hero {
        padding: 40px 14px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .pill {
        padding: 16px 24px;
    }
    
    .photo-wrap {
        width: 280px;
        height: 280px;
    }
}


/* add extra css */

/* Remove button underlines */
.btn, .cta-btn, .pill, .comparison-btn, .how-when-box, .service-box, .business-service, .step, .fact-box, .testimonial, .partner-logo {
    text-decoration: none !important;
}

/* Button hover effects without underline */
.btn:hover, .cta-btn:hover, .pill:hover {
    text-decoration: none !important;
}

/* Required field styling */
.required {
    color: #e74c3c;
}

/* Error message styling */
.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    min-height: 1.25rem;
}

/* Invalid input styling */
input:invalid {
    border-color: #e74c3c;
}

/* Form group spacing */
.form-group {
    margin-bottom: 1.5rem;
}

/* Progress step active state */
.progress-step.active {
    background-color: #3498db;
    color: white;
}

/* Form step transitions */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}


/* Broadband Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    background: #3498db;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
}

.benefit-content h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid #3498db;
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #e74c3c;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.package-header {
    background: #2c3e50;
    color: white;
    padding: 30px;
    text-align: center;
}

.package-header h3 {
    margin-bottom: 15px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: bold;
}

.package-price span {
    font-size: 1rem;
    font-weight: normal;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #27ae60;
}

.package-cta {
    padding: 0 30px 30px;
    text-align: center;
}

/* Providers Section */
.providers-section {
    padding: 80px 0;
}

.providers-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-top: 50px;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    background: #2c3e50;
    color: white;
    font-weight: bold;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 20px;
    display: flex;
    align-items: center;
}

.provider-logo {
    font-weight: bold;
    color: #2c3e50;
}

.btn-small {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-small:hover {
    background: #2980b9;
}

/* Form adjustments for broadband page */
#broadband-form .form-group {
    margin-bottom: 1.5rem;
}

#broadband-form select,
#broadband-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* FAQ adjustments */
.faq-question {
    cursor: pointer;
    padding: 20px;
    background: white;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

/* Comparison section adjustments for broadband */
.comparison-btn .price {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-cell {
        justify-content: center;
        text-align: center;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
}


/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.calculator-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.calculator-form .form-group {
    margin-bottom: 20px;
}

.calculator-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.calculator-form input,
.calculator-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.calculator-results {
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.savings-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #27ae60;
    margin: 20px 0;
}

.savings-text {
    color: #7f8c8d;
    margin-bottom: 30px;
}

.savings-breakdown {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 30px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.breakdown-item.total {
    font-weight: bold;
    border-bottom: none;
    border-top: 2px solid #eee;
    margin-top: 10px;
    padding-top: 15px;
}

/* Energy-specific comparison buttons */
.comparison-btn .price {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db;
}

/* Provider table adjustments for energy */
.table-header,
.table-row {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
}

/* Energy form specific styles */
#energy-form .form-group {
    margin-bottom: 1.5rem;
}

#energy-form select,
#energy-form input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Package cards for energy */
.package-card .package-price span {
    font-size: 1rem;
    font-weight: normal;
}

/* Features section icons */
.feature-box i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

/* Benefits section */
.benefit-icon {
    background: #3498db;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-cell {
        justify-content: center;
        text-align: center;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Animation for calculator results */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.savings-amount {
    animation: pulse 2s infinite;
}


/* Waste Management Specific Styles */

/* Compliance Section */
.compliance-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.compliance-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.compliance-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.compliance-number {
    background: #27ae60;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.compliance-content h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Waste Audit Section */
.audit-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: white;
}

.audit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.audit-content h2 {
    color: white;
    margin-bottom: 20px;
}

.audit-features {
    margin: 30px 0;
}

.audit-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.audit-feature i {
    color: #3498db;
    width: 20px;
}

.audit-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Checkbox Group Styles */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

/* Waste-specific comparison styles */
.comparison-btn .price {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60;
}

/* Provider table adjustments for waste */
.table-header,
.table-row {
    grid-template-columns: 1.5fr 2fr 1fr 1fr 1fr 1fr;
}

/* Waste-specific icon colors */
.feature-box i {
    color: #27ae60;
}

.benefit-icon {
    background: #27ae60;
}

/* Responsive adjustments for waste page */
@media (max-width: 768px) {
    .audit-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .compliance-item {
        flex-direction: column;
        text-align: center;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .audit-feature {
        justify-content: center;
    }
}

/* Additional form styling for waste page */
#waste-form select,
#waste-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Green accent for waste management */
.cta-btn {
    background: #27ae60;
}

.cta-btn:hover {
    background: #219653;
}

.progress-step.active {
    background-color: #27ae60;
}

/* Top Call Bar */
.top-call-bar {
    background-color: #2c3e50;
    color: white;
    padding: 8px 0;
    text-align: center;
}

.top-call-link {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.top-call-link:hover {
    color: #3498db;
}

.top-call-link strong {
    font-size: 1.2em;
}

/* Mobile call button - hidden on desktop */
.mobile-call-button {
    display: none;
}

@media (max-width: 768px) {
    .top-call-bar {
        display: none;
    }
    
    .mobile-call-button {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
}