/* Container for the slider */
#slider-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust the height to fit your design */
    overflow: hidden;
}

/* Style for each slide */
.slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    transition: left 1s ease-in-out;
}

/* Style for active slide */
.slide.active {
    left: 0;
}

/* Style for images */
.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire slide */
}

/* Header content styling */
.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.header-content h1 {
    font-size: 3rem; /* Adjust the font size */
}

.header-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.request-quote {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff3366; /* Customize button color */
    color: white;
    border: none;
    cursor: pointer;
}

.request-quote:hover {
    background-color: #ff0055; /* Button hover effect */
}

html, body {
  overflow-x: hidden;
}
.lead-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.lead-modal.active {
  display: flex;
}
.lead-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.75);
}
.lead-modal .modal-content {
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.lead-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 30px;
  cursor: pointer;
  color: #666;
  line-height: 1;
}
.lead-modal .close-modal:hover {
  color: #e74c3c;
}
.lead-modal h3 {
  margin-bottom: 20px;
  font-size: 22px;
}
.lead-modal #brand-name {
  color: #1a1a2e;
  font-weight: 700;
}