/*
 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
*/

/* Scrollbar ki width */
::-webkit-scrollbar {
    width: 10px;
}

/* Scrollbar ka background (track) */
::-webkit-scrollbar-track {
    background: #FCF9EC;
    border-radius: 10px;
}

/* Scrollbar ka moving part (thumb) */
::-webkit-scrollbar-thumb {   
		background: #181937; 
      /* normal color */
    border-radius: 10px;     /* golai */
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #1A4F46;      /* hover color */
}


