/* Start custom CSS *//* Right side white space + horizontal scroll fix */
html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Sab elements width ke andar rahen */
* {
    box-sizing: border-box;
}

/* Images/videos overflow na karein */
img, video {
    max-width: 100%;
    height: auto;
}

/* Agar koi container bahar ja raha ho */
.container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}/* End custom CSS */