body, html {
  overflow-x: hidden;
}


.red-pill-bar {
  width: 70px;
  height: 10px;
  background-color: #D89800; /* red shade similar to image */
  border-radius: 50px; /* full rounded edges */
}

.service-box {
  background-color: rgb(235, 241, 244); /* light blue */
  border-radius: 5px;
  text-align: center;
  padding: 30px 15px;
  height: 200px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 40px;
  color: #46BDFF;
  margin-bottom: 15px;
}

.service-title {
  font-weight: 500;
  font-size: 1.1rem;
  color: #222;
}
/*==================================*/
.keyword-box {
  display: flex;
  align-items: flex-start;
  background-color: rgb(235, 241, 244);
  padding: 25px;
  border-radius: 10px;
  margin: 20px 0;
}

.keyword-box .icon {
  flex-shrink: 0;
  margin-right: 20px;
  border-right: 2px solid #ccc;
  padding-right: 20px;
}

.keyword-box .icon img {
  width: 70px;
}

.keyword-box .content {
  flex: 1;
}

.keyword-box .title {
  color: #033751;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.keyword-box p {
  font-size: 16px;
  color: #111;
  margin: 0;
}
/*=============== pre constructor===================*/
.paragraph-services{
    color: black !important;
}
.accordion-header .title{
    color: black;
}
.accordion-body p{
    color: white !important;
}
.service-link-list ul li a{
    color: black !important;
}
.service-link-list ul li a:hover{
    color: white !important;
}
.service-link-list ul .active a{
    color: white !important;
}

.about-text-block{
    color: black !important;
}
.sidebar-widget-need-help .need-help-icon span:before{
    color: white !important;
}

/*=========== contact us ==============*/
.contact-details .mrb-0 a{
    color: white !important;
}

.contact-details .mrb-0 a:hover{
    color: white !important;
}


/*==========================================
    All services portfolio section
============================================*/

 
.bedroom-swiper-gallery {
  max-width: 960px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center all inner items */
}

.bedroomMainSlider {
  width: 79%;
  height: 500px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  justify-content: center; /* center image horizontally */
  align-items: center;     /* center image vertically */
  margin: 0 auto;
}

.bedroomMainSlider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.bedroomThumbSlider {
  margin-top: 15px;
  width: 79%; /* match main slider width */
  height: 100px;
  box-sizing: border-box;
}

.bedroomThumbSlider .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
  padding: 5px;
}

.bedroomThumbSlider .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #aaa;
  border-radius: 6px;
}

.bedroomThumbSlider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}


@media(max-width: 576px){
    .bedroomMainSlider{
        height: 380px;
    }
}
    

