.RgCityPanel {
    background: #f8f8f8;
    padding: 40px 0;
    box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
    border-radius: 10px;
    position: relative;
    background: var(--white);
}

/* Progress Bar Styling */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0;
  /* background: linear-gradient(to right, #4caf50, #2196f3); */
  background: linear-gradient(90deg, #F69220 0.04%, #F68E20 28.67%, #F48421 54.05%, #F37221 78.11%, #F05A22 100.04%);
  z-index: 1000;
}


/* Global scrollbar styling start*/
::-webkit-scrollbar {
  width: 6px; /* Width of the vertical scrollbar */
  height: 6px; /* Height of the horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background color of the scrollbar track */
  
}

::-webkit-scrollbar-thumb {
  background: #888; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* Darker color when hovering over the thumb */
}

/* Scrollbar styling for Firefox */
* {
  scrollbar-width: thin; /* Makes the scrollbar thin */
  scrollbar-color: #888 #f1f1f1; /* Thumb color and track color */
}
/* Global scrollbar styling End*/



/* Global RJSidebar Contact Form Start */

:root {
    --main-gradient: linear-gradient(90deg, #F69220 0.04%, #F68E20 28.67%, #F48421 54.05%, #F37221 78.11%, #F05A22 100.04%);
    --main-gradient-rev: linear-gradient(270deg, #F69220 0.04%, #F68E20 28.67%, #F48421 54.05%, #F37221 78.11%, #F05A22 100.04%);
}

.RJSidebar-contact-us-sidebar {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #000000;
    background-color: rgb(0 0 0 / 0%);
    transition: all 0.35s ease-in-out;
    display: flex;
    justify-content: flex-end;
    transition: transform 0.4s ease-in-out;
    z-index: 999;
}

.RJSidebar-contact-us-sidebar.open {
    transform: translateX(-100%);
}

.RJSidebar-sidebar-overlay {
    flex: 1;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
}

.RJSidebar-sidebar-content {
    width: 400px;
    max-width: 100%;
    background: white;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 0px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.RJSidebar-sidebar-header {
    background: var(--main-gradient);
    color: white;
    padding: 20px 20px 10px 20px;
    border-radius: 10px 0 0 10px;
    text-align: left;
    position: relative;
    margin-bottom: 20px;
}

.RJSidebar-sidebar-header h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: white;
}

.RJSidebar-sidebar-header p {
    font-size: 14px;
    margin-bottom: 0;
    color: white;
}

.RJSidebar-sidebar-header .RJSidebar-close-sidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #F05A22;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.RJSidebar-sidebar-header .RJSidebar-close-sidebar:hover {
    transform: scale(1.1);
    background: var(--main-gradient);
    color: white;
}
.RJSidebar-sidebar-header .RJSidebar-close-sidebar:focus {
  outline: none;
}
.RJSidebar-contact-form .form-control.RJSidebar-custom-form {    
    display: block;
    width: 100%;
    height: calc(2em + 1rem + 2px);
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-color);
    background-color: var(--background-color) !important;
    background-clip: padding-box;
    border: 1px solid #dedede;
    border-radius: 5px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: 'Open Sans', sans-serif;
}

.RJSidebar-contact-form .form-control.RJSidebar-custom-form::placeholder {
    color: #999;
}

.RJSidebar-contact-form textarea.RJSidebar-custom-form {
    height: 100px;
    resize: none;
}

/* Vertically Aligned Contact Us Button */
.RJSidebar-contact-us-trigger {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10000;
}

.RJSidebar-contact-us-trigger button {
    background: var(--main-gradient);
    color: white;
    border: none;
    border-radius: 0px 10px 10px 0px;
    padding: 30px 15px;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Poppins';
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.RJSidebar-contact-us-trigger button:hover {
    transform: rotate(180deg) scale(1.1);
    background: var(--main-gradient-rev);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Global RJSidebar Contact Forms End */