/* Shared Components CSS */

/* Hero Image Enhanced Styling */
.hero-image-wrapper {
  position: relative;
  margin: 0;
}

.image-container {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 8px;
  width: 500px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px -12px rgba(0, 0, 0, 0.35);
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: float 6s ease-in-out infinite;
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-icon:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.floating-icon i {
  font-size: 28px;
  color: #6b46c1;
}

.floating-icon-1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.floating-icon-2 {
  top: 50%;
  left: 10%;
  animation-delay: 2s;
}

.floating-icon-3 {
  bottom: 25%;
  right: 20%;
  animation-delay: 4s;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(-10px) rotate(-3deg);
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .image-container {
    margin: 0 auto;
    max-width: 450px;
    height: 300px;
  }

  .floating-icon {
    width: 50px;
    height: 50px;
  }

  .floating-icon i {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .image-container {
    max-width: 350px;
    height: 250px;
  }

  .floating-icon {
    width: 45px;
    height: 45px;
  }

  .floating-icon i {
    font-size: 22px;
  }

  .floating-icon-1 {
    top: 15%;
    right: 10%;
  }

  .floating-icon-2 {
    top: 45%;
    left: 8%;
  }

  .floating-icon-3 {
    bottom: 20%;
    right: 15%;
  }
}

/* Glow Effect */
.image-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover::before {
  opacity: 1;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 20px rgba(107, 70, 193, 0.5);
  }
  to {
    box-shadow: 0 0 30px rgba(107, 70, 193, 0.8);
  }
}

/* Pulse Effect for Icons */
.floating-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(107, 70, 193, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Common Styles */
.font-inter {
  font-family: "Inter", sans-serif;
}

.animate-blob {
  animation: blob 7s infinite;
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

/* UI/UX Design Specific Styles */
.uiux-hero-image-wrapper {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content Marketing Specific Styles */
.content-hero-image-wrapper {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About Us Specific Styles */
.about-hero-image-wrapper {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4f46e5, #8b5cf6);
  border-radius: 20px;
  overflow: hidden;
}

.about-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.about-floating-icon {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-floating-icon-1 {
  top: 20%;
  left: 20%;
  width: 80px;
  height: 80px;
  animation: about-float 6s ease-in-out infinite;
}

.about-floating-icon-2 {
  top: 60%;
  right: 25%;
  width: 60px;
  height: 60px;
  animation: about-float 8s ease-in-out infinite reverse;
}

.about-floating-icon-3 {
  bottom: 20%;
  left: 30%;
  width: 70px;
  height: 70px;
  animation: about-float 7s ease-in-out infinite;
}

@keyframes about-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive Design for About Us Hero */
@media (max-width: 991.98px) {
  .about-hero-image-wrapper {
    height: 350px;
  }

  .about-floating-icon {
    font-size: 1.5rem;
  }

  .about-floating-icon-1 {
    width: 70px;
    height: 70px;
  }

  .about-floating-icon-2 {
    width: 50px;
    height: 50px;
  }

  .about-floating-icon-3 {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 767.98px) {
  .about-hero-image-wrapper {
    height: 300px;
  }

  .about-floating-icon {
    font-size: 1.25rem;
  }

  .about-floating-icon-1 {
    width: 60px;
    height: 60px;
  }

  .about-floating-icon-2 {
    width: 45px;
    height: 45px;
  }

  .about-floating-icon-3 {
    width: 50px;
    height: 50px;
  }
}

.content-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-radius: 20px;
  overflow: hidden;
}

.content-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.content-floating-icon {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-floating-icon-1 {
  top: 20%;
  left: 20%;
  width: 80px;
  height: 80px;
  animation: content-float 6s ease-in-out infinite;
}

.content-floating-icon-2 {
  top: 60%;
  right: 25%;
  width: 60px;
  height: 60px;
  animation: content-float 8s ease-in-out infinite reverse;
}

.content-floating-icon-3 {
  bottom: 20%;
  left: 30%;
  width: 70px;
  height: 70px;
  animation: content-float 7s ease-in-out infinite;
}

@keyframes content-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive Design for Content Marketing Hero */
@media (max-width: 991.98px) {
  .content-hero-image-wrapper {
    height: 350px;
  }

  .content-floating-icon {
    font-size: 1.5rem;
  }

  .content-floating-icon-1 {
    width: 70px;
    height: 70px;
  }

  .content-floating-icon-2 {
    width: 50px;
    height: 50px;
  }

  .content-floating-icon-3 {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 767.98px) {
  .content-hero-image-wrapper {
    height: 300px;
  }

  .content-floating-icon {
    font-size: 1.25rem;
  }

  .content-floating-icon-1 {
    width: 60px;
    height: 60px;
  }

  .content-floating-icon-2 {
    width: 45px;
    height: 45px;
  }

  .content-floating-icon-3 {
    width: 50px;
    height: 50px;
  }
}

.uiux-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2dd4bf, #0ea5e9);
  border-radius: 20px;
  overflow: hidden;
}

.uiux-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.uiux-floating-icon {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.uiux-floating-icon-1 {
  top: 20%;
  left: 20%;
  width: 80px;
  height: 80px;
  animation: uiux-float 6s ease-in-out infinite;
}

.uiux-floating-icon-2 {
  top: 60%;
  right: 25%;
  width: 60px;
  height: 60px;
  animation: uiux-float 8s ease-in-out infinite reverse;
}

.uiux-floating-icon-3 {
  bottom: 20%;
  left: 30%;
  width: 70px;
  height: 70px;
  animation: uiux-float 7s ease-in-out infinite;
}

@keyframes uiux-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive Design for UI/UX Hero */
@media (max-width: 991.98px) {
  .uiux-hero-image-wrapper {
    height: 350px;
  }

  .uiux-floating-icon {
    font-size: 1.5rem;
  }

  .uiux-floating-icon-1 {
    width: 70px;
    height: 70px;
  }

  .uiux-floating-icon-2 {
    width: 50px;
    height: 50px;
  }

  .uiux-floating-icon-3 {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 767.98px) {
  .uiux-hero-image-wrapper {
    height: 300px;
  }

  .uiux-floating-icon {
    font-size: 1.25rem;
  }

  .uiux-floating-icon-1 {
    width: 60px;
    height: 60px;
  }

  .uiux-floating-icon-2 {
    width: 45px;
    height: 45px;
  }

  .uiux-floating-icon-3 {
    width: 50px;
    height: 50px;
  }
}

/* Additional decorative elements */
.image-container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: background-pulse 4s ease-in-out infinite;
}

@keyframes background-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

/* Additional shared component styles can be added here */

/* Team Avatar Styles */
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-avatar:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.team-avatar-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  font-family: "Inter", sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Team Avatar */
@media (max-width: 767.98px) {
  .team-avatar {
    width: 100px;
    height: 100px;
  }

  .team-avatar-text {
    font-size: 2rem;
  }
}

/* Contact Us Page Specific Styles */
.contact-hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.contact-image-container {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.contact-floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.contact-floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: contact-float 6s ease-in-out infinite;
}

.contact-floating-icon i {
  font-size: 24px;
  color: white;
}

.contact-floating-icon-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.contact-floating-icon-2 {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.contact-floating-icon-3 {
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes contact-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Contact Form Styles */
.contact-form .form-floating {
  margin-bottom: 1rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.contact-form .form-floating > label {
  padding: 1rem 1.25rem;
  color: #6b7280;
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.contact-form .form-floating > .form-select ~ label {
  color: #3b82f6;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Contact Form Select Styling */
.contact-form .form-select {
  color: #495057;
  background-color: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-select:focus,
.contact-form .form-select-wrapper .form-select:focus {
  color: #495057;
  background-color: #fff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.contact-form .form-select option {
  color: #495057;
  background-color: #fff;
}

.contact-form .form-select option:checked {
  background-color: #3b82f6;
  color: #fff;
}

/* --- FIXED SELECT DROPDOWN HEIGHT AND VISIBILITY --- */
.contact-form .form-select-wrapper {
  position: relative;
  display: block;
  width: 100%;
}

.contact-form .form-select-wrapper .form-select {
  width: 100%;
  min-height: 48px;
  height: auto;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background-color: #eaf1ff; /* Match input background */
  color: #495057;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  line-height: 1.5;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.contact-form .form-select-wrapper::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #6b7280;
  pointer-events: none;
  z-index: 1;
}

.contact-form .form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.contact-form .form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Ensure selected value is visible */
.contact-form .form-select:not([value=""]) {
  color: #495057;
}

.contact-form .form-select:invalid {
  color: #6c757d;
}

/* Form validation styling */
.contact-form .form-select {
  min-height: 48px;
  height: auto;
  line-height: 1.5;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background-color: #eaf1ff;
  color: #495057;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.contact-form .form-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
  outline: none;
}

.contact-form .form-control.is-valid,
.contact-form .form-select.is-valid,
.contact-form .form-select-wrapper .form-select.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='m2.3 6.73.94-.94 3.06-3.06-1.06-1.06-2 2L3.36 4.34l-1.06-1.06L2.3 4.34l.94-.94 1.06 1.06L2.3 6.73z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  min-height: 48px;
  height: auto;
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid,
.contact-form .form-select-wrapper .form-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 1.4 1.4m0-1.4-1.4 1.4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  min-height: 48px;
  height: auto;
}

.contact-form .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.contact-form .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.contact-form .form-control.is-valid ~ .valid-feedback,
.contact-form .form-select.is-valid ~ .valid-feedback,
.contact-form .form-select-wrapper.is-valid ~ .valid-feedback {
  display: block;
}

.contact-form .form-control.is-invalid ~ .invalid-feedback,
.contact-form .form-select.is-invalid ~ .invalid-feedback,
.contact-form .form-select-wrapper.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Ensure form-select maintains proper height after validation */
.contact-form .form-select.is-invalid,
.contact-form .form-select.is-valid,
.contact-form .form-select-wrapper .form-select.is-invalid,
.contact-form .form-select-wrapper .form-select.is-valid {
  min-height: 48px !important;
  height: auto !important;
  line-height: 1.5 !important;
  padding: 0.75rem 1.25rem !important;
  font-size: 1rem !important;
  border-radius: 12px !important;
  box-sizing: border-box !important;
  display: block !important;
  width: 100% !important;
}

/* Override any Bootstrap form-select height issues */
.contact-form .form-select,
.contact-form .form-select-wrapper .form-select {
  min-height: 48px !important;
  height: auto !important;
  max-height: none !important;
}

.contact-form .form-check-input.is-valid ~ .valid-feedback {
  display: block;
}

.contact-form .form-check-input.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Responsive Contact Hero */
@media (max-width: 991.98px) {
  .contact-hero-image-wrapper {
    height: 350px;
  }

  .contact-floating-icon {
    width: 50px;
    height: 50px;
  }

  .contact-floating-icon i {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .contact-hero-image-wrapper {
    height: 300px;
  }

  .contact-floating-icon {
    width: 45px;
    height: 45px;
  }

  .contact-floating-icon i {
    font-size: 18px;
  }
}

/* WhatsApp Floating Button - Right Center */
.whatsapp-float-btn {
  position: fixed;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  z-index: 1050;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.whatsapp-float-btn:hover {
  background: #128c7e;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

/* WhatsApp Chatbox - Right Center */
.whatsapp-chatbox {
  position: fixed;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  width: 320px;
  max-width: 90vw;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  z-index: 1060;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  display: none;
  animation: whatsapp-fade-in 0.2s;
}
@keyframes whatsapp-fade-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.whatsapp-chatbox-header {
  background: #25d366;
  color: #fff;
  padding: 16px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}
.whatsapp-chatbox-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 12px;
}
.whatsapp-chatbox-body {
  padding: 20px;
  font-size: 1rem;
  color: #222;
}
.whatsapp-chatbox-body .btn-success {
  background: #25d366;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.whatsapp-chatbox-body .btn-success:hover {
  background: #128c7e;
}

@media (max-width: 600px) {
  .whatsapp-float-btn {
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .whatsapp-chatbox {
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    width: 95vw;
    min-width: 0;
    border-radius: 12px;
  }
  .whatsapp-chatbox-header,
  .whatsapp-chatbox-body {
    padding: 12px 10px;
  }
}
