/* =========================================================
   SREE JK DEVELOPERS
   GLOBAL — COMMON CSS
========================================================= */


/* =========================================================
   BODY
========================================================= */

body {

    color: #0a0a0a;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

}


/* =========================================================
   TOUCH RESPONSE
   Instant tap response on touch devices
========================================================= */

a,
button,
input,
textarea {

    touch-action: manipulation;

}


/* =========================================================
   LINK UNDERLINE
========================================================= */

.link-underline {

    position: relative;

    text-decoration: none;

}


.link-underline::after {

    content: '';

    position: absolute;

    width: 100%;

    transform: scaleX(0);

    height: 1px;

    bottom: -2px;

    left: 0;

    background-color: currentColor;

    transform-origin: bottom right;

    transition: transform 0.25s ease-out;

}


.link-underline:hover::after {

    transform: scaleX(1);

    transform-origin: bottom left;

}


/* =========================================================
   TELUGU TEXT
========================================================= */

.telugu-text {

    line-height: 1.6;

}


/* =========================================================
   MODAL / MENU BODY LOCK
========================================================= */

body.modal-open {

    overflow: hidden;

}