.about-hero {
  background: linear-gradient(135deg, #ff6a00, #ff7e27, #ff9e42, #ffb347); 
  background-size: 300% 300%;
  animation: warmFlow 12s ease infinite;
  position: relative;
  color: #fff;
  overflow: hidden;
  text-align: center;

  padding-top: 15rem;
  padding-bottom: 9rem;
}



/* Glassy Content Card */
.about-hero .hero-content {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  max-width: 650px;
  margin: 0 auto;
}

/* Title */
.about-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Underline */
.about-hero .underline {
  width: 70px;
  height: 4px;
  background: #fff;
  margin: 0 auto 1.25rem;
  border-radius: 2px;
  animation: expand 1.5s ease forwards;
}

@keyframes expand {
  from { width: 0; }
  to { width: 70px; }
}

/* Subtitle */
.about-hero .hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.95;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
  max-width: 90%;
  margin: 0 auto;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .about-hero {
    padding-top: 14rem;
    padding-bottom: 5rem;
  }

  .about-hero .hero-content {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    max-width: 90%;
  }

  .about-hero .hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }

  .about-hero .underline {
    width: 50px;
    height: 3px;
    margin-bottom: 1rem;
  }

  .about-hero .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .about-hero .hero-title {
    font-size: 1.6rem;
  }
  .about-hero .hero-subtitle {
    font-size: 0.9rem;
  }
}



/* Floating Button Base */
.floating-order-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(to right, #f97316, #ef4444);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  z-index: 999;
  white-space: nowrap;
  padding: 8px 16px; /* smaller size */
  height: 45px; 
  font-size: 0.95rem;
}

/* Icon */
.floating-order-btn .icon i {
  font-size: 1.2rem;
  color: #fff;
  transition: transform 0.3s ease-in-out;
}

/* Button Text */
.floating-order-btn .btn-text {
  margin-left: 8px;
}

/* Hover Animation */
.floating-order-btn:hover {
  transform: scale(1.05); /* subtle zoom */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.floating-order-btn:hover .icon i {
  transform: rotate(20deg); /* small playful tilt */
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .floating-order-btn {
    font-size: 0.85rem;
    padding: 7px 14px;
    bottom: 20px;
    right: 20px;
    height: auto;
  }

  .floating-order-btn .icon i {
    font-size: 1rem;
  }
}
