body{
  margin: 0;
  padding: 0;
}

.carousel-indicators button {
  background-color: #2b2a2a !important;
  opacity: 0.5;
  border-top: 10px solid transparent; 
  border-bottom: 10px solid transparent;
}

.carousel-indicators .active {
  background-color: #ff8206 !important; 
  opacity: 1 !important;
  }

ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

ul li a{
  display: block;
  color: rgb(0, 0, 0);
  padding: 10px 12px;
  word-spacing: 1px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-decoration: none;
}

li.dropdown{
  display: inline-block;
}

.dropdown-content{
  display: none;
  position: absolute;
  background-color: #dbd9d0;
  min-height: 50px;
  min-width: 50px;
  box-shadow: rgba(242, 231, 79, 0.2);
  z-index: 1;
}

.dropdown-content a{
  color: black;
  padding: 10px 12px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover{
  background-color: rgb(253, 244, 244);
}

.dropdown:hover .dropdown-content{
  display: block;
}

ul li a:hover, .dropdown:hover .dropbtn{
  background-color: rgb(255, 255, 255);
}

/* ul li a.active{
  background-color: #04AA6D;
} */

.container{
  display: flex;
  justify-content: space-around;
}

.container div{
  width: 100%;
  margin: 2px;
  text-align: left;
  font-size: 13px;
}

*{
  box-sizing: border-box;
}

/* Common Style for both floating buttons */
.whatsapp-float, .scroll-float {
  position: fixed;
  right: 20px; /* Screen ke right edge se distance */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float {
  bottom: 120px; /* Scroll button se thoda upar */
  background-color: #25D366; /* WhatsApp Green */
}

.scroll-float {
  bottom: 50px;
  background-color: #454545; /* Black background */
}

.whatsapp-float:hover, .scroll-float:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

.scroll-float:hover { 
  background-color: rgb(36, 35, 35); 
}

.whatsapp-float:hover { 
  background-color: #076963; 
}

.whatsapp-float img {
  width: 35px; /* Icon size chhota kiya circular box ke liye */
  height: 35px;
}

.scroll-float img {
  width: 30px;
  height: 30px;
  transform: rotate(90deg); /* Upward point karne ke liye -90deg behtar hai */
  filter: invert(1);
}

input[type=text] {
  width: 150px;
  box-sizing: border-box;
  border: 2px solid  rgb(253, 244, 244);
  border-radius: 10px;
  font-size: 16px;
  background-color: white;
  /* background-image: url('arrow1.jpg'); */
  background-position: 10px 10px; 
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}

input[type=text]:focus {
  width: 100%;
}

/* ===============================
   MOBILE NAVBAR ACCORDION MODE
================================ */

@media (max-width: 991px) 
{

  .dropdown:hover .dropdown-content {
    display: none !important;
  }

  .dropdown-content {
    position: static !important;
    display: none;
    width: 100%;
    box-shadow: none;
  }

  .dropdown.open .dropdown-content {
    display: block !important;
  }

  .navbar-toggler {
    padding: 4px 8px;
  }

  .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-logo {
    width: 160px !important;
  }

  .nav-right {
    margin-left: auto;
  }
}

/* ===============================
   DESKTOP RESET (KEEP OLD LAYOUT)
================================ */

@media (min-width: 992px) 
{

  .nav-center {
    position: static !important;
    transform: none !important;
  }

  .nav-right {
    margin-left: 0 !important;
  }

}

.split {
  height: 100%;
  width: 50%;
  position: fixed;
  z-index: 1;
  top: 15%;
  overflow-x: hidden;
}

.left {
  left: 0;
  background-color: white;
  border: 1px solid  rgb(253, 244, 244);
}

.right {
  right: 0;
  background-color: rgb(253, 244, 244);
  border: 1px solid  rgb(253, 244, 244);
}

.bootstrap-select .dropdown-menu {
  top: 100% !important;
  bottom: auto !important;
  transform: none !important;
}

#billingForm {
  transition: all 0.3s ease;
}