/* 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: 24px;
  left: 24px;
  right: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  z-index: 1000;
}

.btn {
  padding: 15px 15px;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(23, 43, 77, 0.9);
  color: #fff;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sticky-btn i {
  font-size: 18px;
}

.sticky-btn span {
  display: inline-block;
}

.sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.22);
}

.sticky-btn.apply-now {
  background: linear-gradient(135deg, #d59514, #bf2b24);
}

.sticky-btn.apply-now:hover {
  background: linear-gradient(135deg, #bf2b24, #a3206b);
}

.sticky-btn.call-now {
  display: none;
  width: 54px;
  height: 54px;
  padding: 0;
  justify-content: center;
  background: linear-gradient(135deg, #1fb973, #0a8d5e);
}

.sticky-btn.call-now:hover {
  background: linear-gradient(135deg, #0a8d5e, #076948);
}

@media (max-width: 768px) {
  .sticky-buttons {
    gap: 12px;
    right: 16px;
    left: 16px;
    justify-content: flex-end;
  }

  .sticky-btn.call-now {
    display: inline-flex;
  }
}

/* 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;
}



