:root {
    --brand: #822a27;
    --sub: #0d086e;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

.topbar {

  background: var(--brand) !important;
    /* background: linear-gradient(to right, 
    #736eff 45%,    Red color at 45% 
    #00ffeb 65%,    Yellow color from 45% to 80% (35%) 
    #2e445c         Green color from 80% to 100% (20%) 
);      */
}

/* logo */
.logo-design{
  display: flex;
  align-items: center;
  color: #1b1c1d;
}
 .logo-design .logo-img img{
    height: 70px !important;
  }
  .logo-design .logo-text{
    margin-left: 10px;
    font-size: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif
  }
@media (max-width:360px) {
  .logo-design .logo-img img{
    height: 60px !important;
  }
  .logo-design .logo-text{
    font-size: 20px;
  }
}

/* call us button */
.luxury-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--brand); /* Deep red for a luxurious feel */
  color: white !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.luxury-button:hover {
  background-color: var(--brand);
  transform: translateY(-2px);
}


/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative;
  }
  
  .header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--brand);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
  }
  
  .header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--brand);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
  }
  
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    transition: 0.5s;
  }
  
  .header-carousel .owl-nav .owl-prev:hover,
  .header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--brand) !important;
  }
  
  @media (max-width: 590px) {
  
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
      top: 630px;
      transition: 0.5s;
    }
  
    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
      width: 95% !important;
    }


  
  }
  
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 650px;
    /* margin-top: 95px; */
    display: block;
    object-fit: cover;
    transition: 0.5s;
  
  }
  
  @media (max-width: 992px) {
  
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
      margin-top: 0;
      transition: 0.5s;
    }
    
  }
  
  @media (min-width: 450px) {
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }

  .header-carousel .owl-nav .owl-prev {
    left: 30px; /* Adjust as needed */
  }

  .header-carousel .owl-nav .owl-next {
    right: 30px; /* Adjust as needed */
  }
}

  
  .header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
  }
  
  .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
  
  }

  .slide-btn:hover{
    background-color: white !important;
    color:var(--brand) !important;
    border-color: var(--brand) !important;
  }
  
  /*** Carousel Hero Header End ***/

/* FACTS SECTION STYLING */
.facts-1 {
    padding-top: 100px !important;
    padding-bottom: 60px;
    background-color: #f9f7f4; /* Light, elegant background */
}

/* Container that holds all fact boxes */
.facts-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* space between boxes */
}

/* Individual fact box */
.bg-white.shadow {
    background-color: white;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    width: 100%;
    max-width: 280px; /* controls box width */
    box-sizing: border-box;
    text-align: center;
}

.bg-white.shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.fact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.btn-lg-square {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background-color: var(--brand); /* Luxury gold-tan tone */
    color: white;
    margin-bottom: 15px;
    cursor: default;
}

.ps-4 {
    margin-top: -10px;
}

.ps-4 h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.ps-4 span {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ------------------- Responsive Breakpoints ------------------- */

/* Tablets */
@media (max-width: 991px) {
    .bg-white.shadow {
        max-width: 45%; /* 2 per row on tablets */
    }
}

/* Mobile */
@media (max-width: 767px) {
    .bg-white.shadow {
        max-width: 100%; /* 1 per row on mobile */
    }

    .ps-4 {
        margin-bottom:20px !important;
    }
}


/* mission and vision */
.cta-mission{
  background: url("../img/image-5/slide-image-\(2\).jpg") fixed 50% 50%;
  background-size: cover;
  padding: 50px 0px;
}
.mission{
  background-color: rgb(255, 255, 255,.65);
  margin: 20px;
}

/* why choose us */

.niswar_area {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .niswar_area .bg-parallax {
    background: url("../img/image/why.jpg") no-repeat fixed center 0/cover;
    opacity: 0.15;
  }
  
  .niswar_item {
    border: 1px solid #777777;
    border-radius: 10px;
    background-color: var(--brand);
    padding: 31px 40px 37px;
    color: #fff;
    margin-bottom: 30px;
  }
  
  .niswar_item .sec_h4 {
    padding-bottom: 18px;
    color: white;
  }
  
  .niswar_item .sec_h4 i {
    color: white;
    font-size: 24px;
    line-height: 38px;
    display: inline-block;
    vertical-align: bottom;
    padding-right: 20px;
  }
  
  .niswar_item p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0px;
  }
  

  /*cta*/

.cta {

  /* background: linear-gradient(to right,rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/SHA-Hydraulic-Scissor-Lift.png") fixed center center; */
  background-color: var(--brand);

  background-size: cover;

  padding: 120px 0;

  margin-bottom: 50px;

}



.cta h3 {

  color: #fff;

  font-size: 28px;

  font-weight: 700;

}



.cta p {

  color: #fff;

}



.cta .cta-btn {

  font-family: "Raleway", sans-serif;

  text-transform: uppercase;

  font-weight: 500;

  font-size: 15px;

  letter-spacing: 0.5px;

  display: inline-block;

  padding: 8px 26px;

  border-radius: 2px;

  transition: 0.5s;

  margin: 10px;

  border-radius: 50px;

  border: 2px solid white;

  color: #fff;

}



.cta .cta-btn:hover {

  color: var(--brand);
  background: white;
  border: 2px solid white;

}



@media (max-width: 1024px) {

  .cta {

    background-attachment: scroll;

  }

}



@media (min-width: 992px) {

  .cta .cta-btn-container {

    display: flex;

    align-items: center;

    justify-content: flex-end;

  }

}

.cta-one {

  background: url("../img/img10.jpg") fixed center center;

  background-size: cover;

  padding: 120px 0;

  margin-bottom: 50px;

}


/*** Testimonial ***/

.testimonial-item{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  width: 400px;
  height: 250px;
}

/* .testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .3s;
} */

.testimonial-carousel .owl-item.center .testimonial-item {
    color: white;
    background: var(--brand) !important;
    border-color: var(--brand) !important;
}
.testimonial-carousel .owl-item.center .testimonial-item:hover {
    background: #481715 !important;
}


.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 2px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--secondary);
    border-color: var(--brand);
}
@media (max-width: 992px){
  .testimonial-item{
    margin-right: 0px;
    width: 100%;
    height: 300px;
  }
}


/*faq*/

.faq {
  background-color: #ffffff;
}

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #f9fafa;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 24px;
  font-weight: 600;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--brand);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  letter-spacing: 0.5px;
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  letter-spacing: 1px;
  font-size: 14px;
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: var(--brand);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
  color: var(--brand);
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/* contact */
.contact-det div{
  padding-top:10px;
  margin:5px;
  margin-left:20px;
  border: 1px solid rgba(0, 0, 0, 0.253);
  box-shadow: var(--shadow);
}

/* our service */
.mv{
	overflow: hidden;
  }
  .mv-img{
	overflow: hidden;
  }
  .mv-img img{
	object-fit: cover;
  }
  .mv .mv-row .mv-img img{
	height: 300px;
	width: 100%;
	border-radius: 10px;
  }
  .mv .mv-row{
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  @media (max-width: 991px){
	.mv-row .mission-content{
	  margin-bottom: 70px;
	}
	.mv-row .mv-content{
	  margin-bottom: 30px;
	}
	.mv .mv-row{
	  margin-bottom: 50px;
	}
	.mv .mv-row .mv-img{
	  margin-bottom: 50px;
	  order: 1;
	}
	.mv .mv-row .mv-content{
	  order: 2;
	}
  }
  
  @media (max-width: 370px){
	.mv .mv-row .mv-img, .mv .mv-row .mv-content{
	  width: 100%;
	}
}




/* Path */
.banner-area {
  position: relative;
  min-height: 300px;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(../img/image-5/amina-atar-4mEyvORkbN0-unsplash.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 58px;
  font-weight: 900;
}

@media (max-width: 767px) {
  .banner-title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .banner-title {
    font-size: 32px;
  }
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner-heading {
  text-align: center;
}

.breadcrumb {
  padding: 0;
  background: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.breadcrumb li a,
.breadcrumb .breadcrumb-item,
.breadcrumb li a:focus {
  color: #fff !important;
  text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}