*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --color-primary:#C15139;
    --black:#363B32;
    --white:#fff;
}


  
body {
    font-family: "Euclid Circular A", "Poppins";
    background: #12161f;
    color: white;
    margin: 0;
    display: grid;
    place-items: center;
  }
  
  /* Styling the scrollbar for Webkit browsers */
/* Smooth scrolling for the whole body */


/* Custom scrollbar styles */
html::-webkit-scrollbar {
    width: 12px;  /* Vertical scrollbar width */
    height: 12px; /* Horizontal scrollbar height */
}

html::-webkit-scrollbar-thumb {
    background: var(--black); 
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(254, 255, 252, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--white);
}

html::-webkit-scrollbar-track {
    background: var(--color-primary); /* Background of the scrollbar track */
    border-radius: 10px;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    /* Smaller scrollbar for mobile */
    html::-webkit-scrollbar {
        width: 8px;  /* Reduced size */
        height: 8px;
    }

    html::-webkit-scrollbar-thumb {
        background: var(--color-primary); 
        border-radius: 8px;
        box-shadow: 0px 2px 10px rgba(254, 255, 252, 0.5);
    }
    
}

/* whatsapp conectivity */
/* fixed button */
  /* Fixed button styles */
  .fixed-enquiry-btn {
    position: fixed;
    left: -35px;
    bottom: 60px;
    background-color: var(--color-primary);
    color:var(--white);
    border: none;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    rotate: -90deg;
  }

  .fixed-enquiry-btn:hover {
    background-color:var(--black);
    color:var(--white);
  }

  .modal-header {
    background-color: var(--black);
    color:white;
  }

  .modal-footer .btn{
    background-color:var(--black);
    color: white;
  }

  .modal-footer .btn:hover{
    background-color:var(--white);
    color:var(--black);
  }
  .btn-brand {
    background-color: var(--white);
    color:var(--black);
  }

  .modal-footer .btn-brand:hover {
    background-color:var(--white);
    color:var(--black);
  }

  .form-label {
    color: var(--black);
  }
  .modal-body {
    max-height: 70vh; /* Set max height for the modal body */
    overflow-y: auto; /* Enable vertical scrolling if content exceeds the max height */
  }

.fixed-buttons{
    position: fixed;
    right:2px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .fixed-buttons img{
    width: 50px;
  }
