        .banner{
            position:relative;
            width:100%;
            min-height:600px;
            overflow:hidden;
        }

        /* Main Background Image */
        .banner-bg{
            position:absolute;
            width:100%;
            height:100%;
            object-fit:cover;
            top:0;
            left:0;
            z-index:-1;
        }

        /* Content Layout */
        .banner-content{
            display:flex;
            justify-content:space-between;
            align-items:center;
            padding:60px 8%;
            flex-wrap:wrap;
        }

        /* Left Text */
        .banner-text{
            max-width:600px;
            color:#222;
        }

        .banner-text h1{
            font-size:40px;
            margin-bottom:20px;
           /* margin-top: 30px;*/
        }

        .banner-text h2{
            font-size:24px;
            margin-bottom:20px;
            color:#2e7d32;
        }

        .banner-text ul{
            list-style:none;
        }

        .banner-text ul li{
            margin-bottom:10px;
            font-size:18px;
        }

        /* Form Box */
        .form-box{
            background:#fff;
            padding:25px;
            width:350px;
            margin-top: 68px;
            border-radius:10px;
            box-shadow:0 10px 30px rgba(0,0,0,0.2);
        }

        .form-box h3{
            margin-bottom:20px;
            text-align:center;
            color:#2e7d32;
        }

        .form-box input,
        .form-box select{
            width:100%;
            padding:10px;
            margin-bottom:15px;
            border:1px solid #ddd;
            border-radius:5px;
        }

        .form-box button{
            width:100%;
            padding:12px;
            border:none;
            background:#2e7d32;
            color:#fff;
            font-size:16px;
            border-radius:5px;
            cursor:pointer;
        }

        .form-box button:hover{
            background:#1b5e20;
        }

        /* Side Image (Ladder etc.) */
        .side-img{
            position:absolute;
            right:5%;
            bottom:80px;
            width:200px;
        }

        /* Satisfaction Badge */
        .badge{
            position:absolute;
            left:22%;
            width:150px;
        }
        
        .badge{
                width: 100px;

        }

        /* Trust Section */
        .trust-section{
            text-align:center;
            /*margin-top:30px;*/
            padding:20px;
            background-color:#2e7d32;
        }

        .trust-section .trust-text{
            font-size:20px;
            color:#fff;
            margin-bottom:10px;
        }

        .trust-section .trust-rating{
            font-size:25px;
            color:#333;
        }

        .trust-section .trust-rating img{
            width:20px;
            margin-right:5px;
        }

        /* Logo Section */
        .trust-section .logos{
            display:flex;
            justify-content:center;
            gap:20px;
            margin-top:20px;
        }

        .trust-section .logos img{
            width:120px;
            height:auto;
        }

        /* Responsive */
        @media(max-width:992px){

            .banner-content{
                flex-direction:column;
                align-items:flex-start;
            }

            .form-box{
                margin-top:30px;
                width:100%;
                max-width:400px;
            }

            .side-img{
                display:none;
            }

            .badge{
                position:relative;
                margin-top:20px;
                left: 1px;
            }
        }
    
