/* Add loader css */

.loader
{
  background: rgba( 255, 255, 255, 0.8 );
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.loader img
{
  left: 50%;
  margin-left: -32px;
  margin-top: -32px;
  position: absolute;
  top: 50%;
}



/* Accordion Styles */
.accordion {
  background-color: #f9f9f9;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: 1px solid #ddd;
  text-align: left;
  outline: none;
  font-size: 18px;
  font-weight: bold;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  margin-bottom: 10px;
}

.accordion:hover {
  background-color: #e2e6ea;
}

.accordion.active {
  /* background-color: #007bff; */
  color: black;
}

.accordion .toggle-icon {
  font-size: 20px;
  transition: transform 0.4s;
}

/* Panel Styles */
.panel {
  padding: 0 18px;
  background-color: white;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  max-height: 0;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 0 0 5px 5px;
}

.panel p {
  padding: 18px 0;
  font-size: 16px;
  color: #666;
}

/* Active and Hover States */
.accordion.active .toggle-icon {
  transform: rotate(180deg);
}

.accordion:hover .toggle-icon {
  /* color: #007bff; */
}



.whatsapp-button {
  position: fixed;
  bottom: 140px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button img {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-button img:hover {
  transform: scale(1.1);
}
.floating-enquiry-button img {
   width: 50px;
  height: 50px;
  border-radius: 100px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s; 
}

.floating-enquiry-button {
  position: fixed;
  bottom: 80px;
  z-index: 1000;
 right: 20px;
}

.floating-enquiry-button .bordered-btn {
  background-color: #d84c0c;
  padding: 10px 15px;
  border-radius: 50%;
  
  color: white;
  text-decoration: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.floating-enquiry-button .bordered-btn:hover {
  transform: scale(1.1);
  background-color: #b84108; /* Darker shade on hover */
}

/* Toggle Button Styles */
.toggle-button {
  position: fixed;
  border-radius: 100px;
  bottom: 20px; /* Position above the WhatsApp and Phone buttons */
  right: 20px;
  z-index: 1000;
}

.toggle-button img {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  transition: transform 0.3s;
  cursor: pointer;
}

.toggle-button img:hover {
  transform: scale(1.1);
}

/* Remove default button styles */
.toggle-buttons button {
  all: unset; /* Reset all default browser styles */
  display: inline-block;
  border: none;
  padding: 0;
  background: none;
 border-radius:100px;
  cursor: pointer;
}

/* Disable focus outline on button */
.toggle-buttons button:focus {
  outline: none;
}


/* Style for the Shop Now button */
.shop-now-btn {
    position: absolute; /* Absolute positioning relative to the banner container */
    top: 80%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust to perfectly center */
    z-index: 10; /* Ensure the button appears above the banner image */

    padding: 12px 30px; /* Button size */
    background-color: #ff6600; /* Orange color */
    color: #fff; /* White text */
    font-size: 18px;
    font-weight: bold;
    text-decoration: none; /* Remove underline */
    border-radius: 50px; /* Rounded corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    transition: all 0.3s ease; /* Smooth hover effect */
}

.shop-now-btn:hover {
    background-color: #e65c00; /* Darker orange on hover */
    transform: translate(-50%, -50%) scale(1.1); /* Zoom-in effect */
}

/* Title styling (optional if you want it visible) */
.banner-title {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 5; /* Ensure the title is visible above the banner */
}

