/*
 Theme Name: Hello Elementor Child
 Theme URI: https://example.com
 Description: Child theme for Hello Elementor
 Author: Your Name
 Template: hello-elementor
 Version: 1.0.0
*/


/* ===== Old Code Start ===== */
html,
body{
  width:100%!important;
  overflow-x:hidden!important;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;              /* scrollbar ki width */
  border-radius: 8px;       /* overall radius */
}

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
  background: #FFFFFF; 
/* 	background: #F6F6F6;  */
     /* background color */
  border-radius: 0px;
}

/* Scrollbar thumb (handle) */
::-webkit-scrollbar-thumb {
  background: #3E82C3;      /* normal color */
  border-radius: 0px;
  transition: background 0.3s ease;
}

/* Scrollbar thumb hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #356CA1;      /* #C1222C ka thoda dark shade */
}
/* ===== Old Code End ===== */