/*** Carousel Hero Header Start ***/
.hero-section {
    background-image: url(../images/carousel-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-half-1 {
    background-image: url("../images/header-2.png");
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(15%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-bg-half-2 {
    background-image: url(../images/header-1.png);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(15%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-bg-half-3 {
    background-image: url(../images/header-3.png);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(15%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}

@media (max-width: 991px) {
    .hero-bg-half-1 {
        background-image: url("../images/header-2.png");
        clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        filter: grayscale(0%);
        transform: scale(100% - 0%);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
    }

    .hero-bg-half-2 {
        background-image: url(../images/header-1.png);
        clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        filter: grayscale(0%);
        transform: scale(100% - 0%);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
    }
}

.hero-bg-half-3 {
        background-image: url(../images/header-3.png);
        clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        filter: grayscale(0%);
        transform: scale(100% - 0%);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
    }
}

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 600px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    transform: skew(18deg);
    background: var(--bs-white);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 51%;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 51%;
}


@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 35px;
    }

    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 600px;
    }
}
/*** Carousel Hero Header End ***/

/* Compact WhatsApp Popup */

.wa-popup{
    position:fixed;
    right:20px;
    bottom:80px;
    width:240px;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.18);
    font-family:Arial,Helvetica,sans-serif;
    z-index:99999;
    animation:popup .35s ease;
}

.wa-popup-header{
    background:#02145e;
    padding:12px;
}

.wa-popup-header h3{
    margin:0;
    color:#fff;
    font-size:15px;
    font-weight:600;
}

.wa-popup-header span{
    color:#d7f5d2;
    font-size:10px;
}

.wa-popup-body{
    padding:12px;
}

.wa-notice{
    margin:0 0 10px;
    color:#777;
    font-size:10px;
    line-height:1.4;
}

.wa-member{
    display:flex;
    align-items:center;
    text-decoration:none;
    background:#f7f7f7;
    padding:8px;
    border-radius:6px;
    transition:.3s;
}

.wa-member:hover{
    background:#e9fbe9;
}

.wa-avatar{
    width:36px;
    height:36px;
    margin-right:8px;
    flex-shrink:0;
}

.wa-avatar img{
    width:100%;
    height:100%;
}

.wa-info h4{
    margin:0;
    color:#222;
    font-size:13px;
}

.wa-info p{
    margin-top:2px;
    color:#777;
    font-size:10px;
    line-height:1.3;
}

.wa-popup-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.wa-close{
    color:#fff;
    font-size:24px;
    font-weight:bold;
    cursor:pointer;
    line-height:1;
}

.wa-close:hover{
    opacity:.7;
}

.contact-form{
    width:240px;
    padding:12px;
    background:#fff;
    border-radius:8px;
    box-shadow:0 6px 18px rgba(0,0,0,.18);
    font-family:Arial,Helvetica,sans-serif;
}

.contact-form input{
    width:100%;
    padding:9px 10px;
    margin-bottom:8px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:12px;
    box-sizing:border-box;
    outline:none;
}

.contact-form input:focus{
    border-color:#25D366;
}

.contact-form button{
    width:100%;
    padding:10px;
    background:#25D366;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#1da851;
}


