      .button-container {
            text-align: center;
            padding: 20px;
        }

        /* Style 3 Button */
        .style3-button {
            width: 200px;
            height: 50px;
            margin: 0 auto 20px;

            border-radius: 10px;
            color: rgb(0, 0, 0);
            font-size: 20px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(to left, #ffffff 200px, #de7421 200px);
            background-size: 400px 50px;
            background-repeat: no-repeat;
            background-position: -200px 0px;
            transition: all 0.5s;
        }
        
        .style3-button a {
            color: #ffffff;
            text-decoration: none;
            display: block;
            width: 100%;
            height: 100%;
            line-height: 42px; /* Adjusted for border */
            text-align: center;
                      margin-top:3px;
        }
        
        .style3-elong {
            width: 400px;
            position: absolute;
            left: -200px;
            top: 0;
            transition: all 0.5s;
            display: flex; /* Key change for centering */
        }
        
        .style3-first, .style3-second {
            width: 200px;
            text-align: center;
        }
        
        .style3-second a {
            color: #de7421;
            margin-top:3px;
        }
        
        .style3-button:hover, .style3-button:focus {
            background-position: 0px 0px;
        }
        
        .style3-button:hover .style3-elong, .style3-button:focus .style3-elong {
            left: 0px;
        }



/* Wrapper around the entire form */
.form-wrapper {
  padding: 20px;
}

/* Headings inside each form */
.form-heading {
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Custom input styling */
.custom-form-input {
  border-radius: 50px;
  padding: 12px 20px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 16px;
}

/* Center placeholder text */
.custom-form-input::placeholder,
.custom-form-textarea::placeholder {
  text-align: center;
  color: #999;
  font-size: 14px;
}

/* Custom textarea styling */
.custom-form-textarea {
  border-radius: 30px;
  padding: 15px 20px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 16px;
  resize: none;
  min-height: 120px;
}

/* Custom send buttons */
.send-btn-orange {
  background-color: #E87B26;
  color: white;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.send-btn-olive {
  background-color: #676730;
  color: white;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.send-btn-orange:hover,
.send-btn-olive:hover {
  opacity: 0.85;
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}



/* Base tab button style */
.custom-tab-button {
  border-radius: 100px;
  padding: 10px 25px;
  font-weight: bold;
  border: none;
  color: white;
  transition: all 0.3s ease-in-out;
  background-color: #ccc; /* default inactive color */
}

/* Olive tab */
.custom-tab-olive {
  background-color: #676730;
}

.custom-tab-olive.active,
#pills-franchise-tab.nav-link.active {
  background-color: #4f4f24;
}

/* Orange tab */
.custom-tab-orange {
  background-color: #E87B26;
}

.custom-tab-orange.active,
#pills-sayhello-tab.nav-link.active {
  background-color: #c9651c;
}

/* Optional: hover effects */
.custom-tab-button:hover {
  opacity: 0.9;
  transform: scale(1.03);
}
.magic-btn-container {
  text-align: center;
}

/* Base button (default = orange) */
.magic-btn {
  background-color: #c9651c; /* orange */
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* OLIVE variant modifier */
.magic-btn-olive {
  background-color: #676730;
  box-shadow: 0 8px 20px rgba(100, 100, 50, 0.3);
}

.magic-btn-olive .magic-btn-trail {
  background: #555522;
}

/* Icon styling */
.magic-btn-icon {
  font-size: 18px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  position: relative;
  z-index: 2;
}

/* Label styling */
.magic-btn-label {
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* Trail element */
.magic-btn-trail {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  width: 100px;
  height: 20px;
  background: #b85b19; /* default orange trail */
  border-radius: 50px;
  filter: blur(4px);
  opacity: 0;
  z-index: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* STEP 1: Hide label */
.hide-label .magic-btn-label {
  opacity: 0;
}

/* STEP 2: Rotate icon */
.rotate-icon .magic-btn-icon {
  transform: rotate(30deg);
}

/* STEP 3: Animate trail + fly out */
.fly-icon .magic-btn-icon {
  transform: translateX(150px);
  opacity: 0;
}
.fly-icon .magic-btn-trail {
  transform: translateY(-50%) scaleX(1.8);
  opacity: 1;
}

/* STEP 4: Reset all */
.reset-animation .magic-btn-icon,
.reset-animation .magic-btn-label {
  transform: none;
  opacity: 1;
}
.reset-animation .magic-btn-trail {
  transform: translateY(-50%) scaleX(0);
  opacity: 0;
}