.lp-header{
            background: white;
            margin-top:10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
            /*position: relative;*/
            /*z-index: 100;*/
           }
        
.consult-btn {
            background: #08529C;
            color: white;
            padding: 10px 26px;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 500;
            transition: background 0.3s;
        }
        
.consult-btn:hover {
            background: #004494;
        }        
        
/*hero-section start        */

.banner-wrapper {
            margin: 10px auto;
            max-width: 1500px;
            /*background-color: white;*/
            overflow: hidden;
}

.banner {
        /* width: 100%; */
        height: 82vh;
        /*background-image:url('images/home/slider-banner-01.webp');*/
        background-size: cover;
        background-position: center;
        border-radius: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
.hero-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 50px;
   } 


.banner-left {
            flex: 1;
            color: white;
            max-width: 650px;
            }

.banner-tag {
            font-size: 18px;
            margin-bottom: 15px;
            opacity: 0.95;
            font-family: 'Outfit', sans-serif;
            font-weight: 500;
            }

.banner-title {
            font-family: 'Outfit', sans-serif;
            font-size: 36px;
            line-height: 1.3;
            margin-bottom: 30px;
            font-weight: 600;
        }

.banner-title .highlight {
            font-family: 'Outfit', sans-serif;
            color: white;
            font-size: 36px;
            font-weight: 400;
        }

.banner-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

.btn-primary {
            background: #08529C;
            color: white;
            padding: 10px 26px;;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s;
        }

.btn-primary:hover {
            background: #004494;
            color: white;
            transform: translateY(-2px);
        }

.btn-secondary {
            background: white;
            color: #08529C;
            padding: 10px 28px;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s;
        }
.btn-secondary:hover {
            background: #f0f0f0;
            color: #08529C;
            transform: translateY(-2px);
        }

.stats {
            display: flex;
            align-items: center;
            gap: 20px;
        }

.stats-badge-inner img{
           width: 60px;
}  
        
.stats-number {
            font-size: 40px;
            font-weight: 600;
            line-height: 1.2;
            font-family: 'Outfit', sans-serif;
        }  
        
.line  {
             height: 64px;
             width: 1px;
             background-color:white;
             opacity: 0.6;
}   
    
.stats-text {
            font-family: 'Outfit', sans-serif;
            font-weight: 400;
            font-size: 16px;
            opacity: 0.95;
}    

