/* Vertical Strip */
.lang-strip-vertical {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    border-radius: 0 15px 15px 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);

    animation: slideIn 0.5s ease;
}

/* Common */
.lang-strip-vertical a {
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

/* English */
.lang-strip-vertical a:first-child {
    background: linear-gradient(180deg, #0d6efd, #3da5ff);
}

/* Marathi */
.lang-strip-vertical a:last-child {
    background: linear-gradient(180deg, #28a745, #5cd65c);
}

/* Active */
.lang-strip-vertical a.active {
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

/* Hover */
.lang-strip-vertical a:hover {
    filter: brightness(1.1);
}

/* Animation */
@keyframes slideIn {
    from {
        left: -60px;
        opacity: 0;
    }
    to {
        left: 0;
        opacity: 1;
    }
}





body.marathi .rr-header-menu ul li a {
    font-weight: 550;
    font-size: 18.8px;
    padding: 52px 0;
    display: inline-block;
    color: var(--rr-common-white);
    text-transform: capitalize;
    font-family: var(--rr-ff-p);
    line-height: 14px;
}

@media screen and (min-width: 360px) and (max-width: 1080px) {

body.marathi .rr-header-menu ul li a {
    font-size: 14px;        /* mobile साठी कमी font */
    padding: 10px 0;        /* कमी spacing */
    line-height: 20px;      /* readable spacing */
    display: block;         /* vertical menu */
}

body.marathi .rr-header-main-menu ul li {
    padding: 8px 15px;
}

}

body.marathi p {
    font-family: var(--rr-ff-p);
    color: #2b2a2a;
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 15px;
    text-align: justify;
}

body.marathi .rr-section-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #00af1e;
    display: inline-block;
    padding-bottom: 12px;
    text-transform: capitalize;
    font-family: var(--rr-ff-p);
}

body.marathi .rr-btn-1 {
    font-family: var(--rr-ff-p);
    background-color: var(--rr-theme-1);
    color: var(--rr-common-white);
    padding: 6px 15px;
    overflow: hidden;
   
    text-transform: uppercase;
    display: inline-block;
    font-weight: 550;
    font-size: 17px;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}




/* ===== MOBILE LANGUAGE BUTTONS ===== */

.lang-buttons-mobile {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;

    display: none;
    gap: 10px;
}

/* Button Style */
.lang-buttons-mobile a {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    color: #fff;
    transition: 0.3s;
}

/* EN */
.lang-buttons-mobile a:first-child {
    background: #0d6efd;
}

/* MR */
.lang-buttons-mobile a:last-child {
    background: #28a745;
}

/* Active */
.lang-buttons-mobile a.active {
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

/* Hover */
.lang-buttons-mobile a:hover {
    transform: scale(1.05);
}

/* ===== RESPONSIVE CONTROL ===== */

@media screen and (min-width: 360px) and (max-width: 1080px) {

    /* Mobile ला vertical strip hide */
    .lang-strip-vertical {
        display: none !important;
    }

    /* Mobile buttons show */
    .lang-buttons-mobile {
        display: flex;
    }
}

/* Desktop ला mobile buttons hide */
@media screen and (min-width: 1081px) {
    .lang-buttons-mobile {
        display: none !important;
    }
}