@media (max-width: 768px) {
    .banner-mobile {
        background-image: url('https://josephsunny.net/wp-content/uploads/2025/05/New-Project-15.webp') !important;
    }
}

.banner-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.46) 100%);
}

.banner-img-1 {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.46)), 
                      url('https://josephsunny.net/wp-content/uploads/2025/05/New-Project-14.webp');
}

.banner-img-2 {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.46)), 
                      url('https://josephsunny.net/wp-content/uploads/2025/01/New-Project-2.webp');
}

.banner-img-3 {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.46)), 
                      url('https://josephsunny.net/wp-content/uploads/2025/01/New-Project-4.webp');
}

.book-btn {
    color: #fff;
    background: #000;
    padding: 15px;
    border-radius: 10px;
    margin-top: 5px;
    font-family: var(--font-worksans);
}
.card-thumbnail {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

  .vertical-appointment-btn {
    position: fixed;
    right: 0;
    top: 20%;
    transform: translateY(-50%);
    z-index: 999;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 20px 12px;
    background: #000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
	  font-family: var(--font-worksans);
  }
  
  .vertical-appointment-btn:hover {
    background: #3a4548;
    padding-right: 15px;
  }

.instagram-btn {
  top: 51%;
}

.linkedin-btn {
  top: 62%;
}
/* Popup Background */
.form-popup-bg {
  position: fixed; /* Overrides earlier absolute */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; /* Center vertically */
  background-color: rgba(94, 110, 141, 0.9);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  z-index: 10000;
  transition: opacity 0.3s, visibility 0s 0.3s;
}

/* When visible */
.form-popup-bg.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0s;
}

/* Optional overlay effect */
.form-popup-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #fff;
  opacity: 0.25;
}

/* Form Container */
.form-container {
  position: relative;
  background-color: #2d3638;
  color: #fff;
  padding: 40px;
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 
              0 6px 6px rgba(0, 0, 0, 0.23);
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* Close Button */
.close-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #fff;
  background: none;
  border: 1px solid #fff;
  cursor: pointer;
}

/* Font Styling */
.form-title,
.form-desc,
.form-label {
  font-family: var(--font-worksans);
}

/* Submit Button */
.submit-btn {
  color: #000;
  background: yellow;
  padding: 11px;
  border-radius: 7px;
  margin-top: 25px;
  font-family: var(--font-worksans);
  border: none;
  cursor: pointer;
}
.circle-container {
  width: 120px; /* or whatever you want */
  height: 120px;
  position: relative;
}

.circle-progress {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* optional: makes progress start from top */
}

.progress-path {
  fill: none;
  stroke: #4caf50; /* green, change as needed */
  stroke-width: 2;
  stroke-dasharray: 307.919;
  stroke-dashoffset: 256.939; /* adjust for actual progress */
  transition: stroke-dashoffset 0.3s ease;
}
