.r1-hero-section{
    position:relative;
    height:680px;

    background:url("img/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
}

/* Left White Fade */

.r1-hero-section::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:58%;
    height:100%;

    background:linear-gradient(
        90deg,
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0.92) 35%,
        rgba(255,255,255,0.65) 60%,
        rgba(255,255,255,0) 100%
    );
}

.r1-content{
    position:relative;
    z-index:10;
    max-width:500px;
}

.r1-heading{
    font-size:68px;
    line-height:0.95;
    font-weight:800;
    color:#184c35;
    margin-bottom:5px;
}

.r1-subheading{
    font-size:58px;
    font-family:cursive;
    color:#1f8f56;
    margin-bottom:20px;
}

.r1-text{
    color:#4e4e4e;
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
}

.r1-feature-row{
    display:flex;
    gap:30px;
    margin-bottom:35px;
    flex-wrap:wrap;
}

.r1-feature{
    width:90px;
    text-align:center;
}

.r1-feature i{
    font-size:28px;
    color:#198754;
    display:block;
    margin-bottom:10px;
}

.r1-feature span{
    font-size:13px;
    font-weight:600;
    color:#333;
}

.r1-btn-wrap{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.r1-btn-orange{
    background:#f57c00;
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:10px;
    font-weight:700;
}

.r1-btn-orange:hover{
    color:#fff;
}

.r1-btn-blue{
    background:#2156f5;
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:10px;
    font-weight:700;
}

.r1-btn-blue:hover{
    color:#fff;
}

.r1-rating{
    color:#444;
    font-size:15px;
    font-weight:600;
}

/* Right Cards */

.r1-info-card{
    position:absolute;
    right:25px;
    width:210px;
    background:#fff;
    border-radius:14px;
    padding:18px;
    z-index:20;

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);
}

.r1-card1{
    top:40px;
}

.r1-card2{
    top:145px;
}

.r1-card3{
    top:250px;
}

.r1-card-number{
    font-size:24px;
    font-weight:800;
    color:#184c35;
}

.r1-card-text{
    font-size:14px;
    color:#666;
}

/* Responsive */

@media(max-width:991px){

    .r1-hero-section{
        height:auto;
        padding:80px 0;
    }

    .r1-hero-section::before{
        width:100%;
        background:rgba(255,255,255,.90);
    }

    .r1-heading{
        font-size:48px;
    }

    .r1-subheading{
        font-size:40px;
    }

    .r1-info-card{
        display:none;
    }
}

@media(max-width:576px){

    .r1-heading{
        font-size:36px;
    }

    .r1-subheading{
        font-size:30px;
    }

    .r1-feature-row{
        justify-content:center;
    }

    .r1-btn-wrap{
        flex-direction:column;
    }
}

.r1-hero-section{
    position:relative;
    min-height:700px;
    background:url('img/hero-bg.jpg') no-repeat center right;
    background-size:cover;
}

/* Mobile */
@media (max-width: 768px){

    .r1-hero-section{
        background:none;
        min-height:auto;
        padding:50px 0;
    }

    .r1-mobile-img{
        display:block;
        width:100%;
        height:auto;
        margin-bottom:30px;
    }

    .r1-heading{
        font-size:36px;
        text-align:center;
    }

    .r1-subheading{
        font-size:28px;
        text-align:center;
    }

    .r1-content{
        max-width:100%;
        text-align:center;
    }
}

/* Desktop */
.r1-mobile-img{
    display:none;
}



/* Desktop */
.r1-mobile-info-btn{
    display:none;
}

/* Mobile */
@media(max-width:768px){

    .r1-mobile-info-btn{
        display:block;
        width:100%;
        margin-top:20px;
        border:none;
        background:#1b8f57;
        color:#fff;
        padding:14px;
        border-radius:12px;
        font-weight:600;
    }

    /* Desktop floating cards hide */
    .r1-card1,
    .r1-card2,
    .r1-card3{
        display:none;
    }
}

.r1-modal-content{
    border-radius:20px;
    border:none;
}

.r1-info-card-mobile{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:15px;
    border-radius:12px;
    margin-bottom:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.r1-mobile-info-btn{
    position:relative;
    z-index:99999 !important;
}



.r1-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    z-index:999999;
}

.r1-popup.show{
    display:block;
}

.r1-popup-box{
    width:90%;
    max-width:350px;
    background:#fff;
    border-radius:15px;
    padding:20px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.r1-close{
    float:right;
    font-size:30px;
    cursor:pointer;
}

.r1-info-card-mobile{
    display:flex;
    gap:15px;
    margin-top:15px;
    align-items:center;
}



.r1-info-card{
    position:absolute;
    right:25px;

    width:220px;
    height:78px;

    background:#ffffff;
    border-radius:14px;

    display:flex;
    align-items:center;
    gap:15px;

    padding:0 18px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    z-index:10;
}

.r1-card1{
    top:30px;
}

.r1-card2{
    top:125px;
}

.r1-card3{
    top:220px;
}

.r1-card-icon{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:#1e7b4d;
    font-size:22px;
}

.r1-card-content{
    line-height:1.2;
}

.r1-card-title{
    font-size:18px;
    font-weight:700;
    color:#222;
}

.r1-card-subtitle{
    font-size:13px;
    color:#555;
    font-weight:500;
}


.r1-mobile-info-btn{
    display:none;
}

@media(max-width:768px){

    .r1-mobile-info-btn{
        display:block;
        width:100%;
        background:#1e7b4d;
        color:#fff;
        border:none;
        border-radius:12px;
        padding:14px;
        font-weight:600;
        margin-top:20px;
    }

    /* Desktop floating cards hide */
    .r1-card1,
    .r1-card2,
    .r1-card3{
        display:none;
    }
}