/* Basic styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.content {
  padding: 20px;
  height: 1500px; /* Just for scrolling effect */
}

/* Sticky button container */
.sticky-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 1000;
}

/* Common button styles */
.btn {
  padding: 15px 15px;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Call Now button */
.call-now {
    display: none;
}

/* Show the button only on mobile devices */
@media (max-width: 768px) {
    .call-now {
        display: inline-block;
    }
}


.call-now {
  background-color: #28a745;
}

.call-now:hover {
  background-color: #218838;
}

/* Apply Now button */
.apply-now {
  background-color: #d4202d;
}

.apply-now:hover {
  background-color: #821723;
}

/* Popup styles */
.popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  width: 300px;
  text-align: left;
}

.popup h2 {
  margin: 0 0 20px 0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: #aaa;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}



