.container {
  max-width: 1480px !important;
  width: 100%;
}
.btnHero {
  transition: all 0.3s;
}
.btnHero:hover {
  --tw-scale-x: 105%;
  --tw-scale-y: 105%;
  --tw-scale-z: 105%;
  scale: var(--tw-scale-x) var(--tw-scale-y);
}
#menu-icon-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* ============================================
   FLOATING RADIAL MENU
   ============================================ */

.radial-menu-container {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 64px;
  height: 64px;
}

.radial-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.3);
}

.radial-menu-lines {
  position: absolute;
  width: 800px;
  height: 800px;
  left: 32px;
  top: 32px;
  transform: translate(-400px, -400px);
  overflow: visible;
  pointer-events: none;
  z-index: 10;
}

.radial-menu-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
}

.radial-menu-item {
  position: absolute;
  left: 32px;
  top: 32px;
  width: 12rem;
  height: 3rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transform: translate(-50%, -50%);
  z-index: 20;
  background: linear-gradient(90deg, #14b8a6 0%, #06b6d4 50%, #5eead4 100%);
  transition: all 0.2s ease;
  animation: menuItemAppear 0.4s ease-out forwards;
  opacity: 0;
}

.radial-menu-item.highlight {
  background: linear-gradient(90deg, #fb7185 0%, #f97316 100%);
}

.radial-menu-item:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.radial-menu-item:active {
  transform: translate(-50%, -50%) scale(0.95);
}

/* Position menu items in vertical line */
.radial-menu-item:nth-child(1) {
  animation-delay: 0s;
}
.radial-menu-item:nth-child(2) {
  animation-delay: 0.04s;
}
.radial-menu-item:nth-child(3) {
  animation-delay: 0.08s;
}
.radial-menu-item:nth-child(4) {
  animation-delay: 0.12s;
}
.radial-menu-item:nth-child(5) {
  animation-delay: 0.16s;
}
.radial-menu-item:nth-child(6) {
  animation-delay: 0.2s;
}
.radial-menu-item:nth-child(7) {
  animation-delay: 0.24s;
}
.radial-menu-item:nth-child(8) {
  animation-delay: 0.28s;
}
.radial-menu-item:nth-child(9) {
  animation-delay: 0.32s;
}
.radial-menu-item:nth-child(10) {
  animation-delay: 0.36s;
}
.radial-menu-item:nth-child(11) {
  animation-delay: 0.4s;
}
.radial-menu-item:nth-child(12) {
  animation-delay: 0.44s;
}

@keyframes menuItemAppear {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.radial-menu-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 50%, #0d9488 100%);
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 30;
  border: 4px solid white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.radial-menu-button:hover {
  transform: scale(1.1);
}

.radial-menu-button:active {
  transform: scale(0.95);
}

.radial-menu-icon-menu,
.radial-menu-icon-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.radial-menu-text {
  font-size: 9px;
  font-weight: 700;
  margin-top: 2px;
  line-height: 1;
}

/* ============================================
   FLOATING CONTACT ICONS
   ============================================ */

#floating-contact-icons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

.floating-icons-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  border: none;
  position: relative;
  transition: all 0.3s ease;
}

.floating-icon:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.whatsapp-icon:hover {
  box-shadow: 0 25px 50px -12px rgba(74, 222, 128, 0.5);
}

.whatsapp-icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

.call-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.call-icon:hover {
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.5);
}

.call-icon svg {
  animation: wiggle 1s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
}

.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 1rem;
  height: 1rem;
  background: #ef4444;
  border-radius: 50%;
}

.tooltip {
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #1f2937;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.floating-icon:hover .tooltip {
  opacity: 1;
}

/* WhatsApp Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 8rem;
  right: 1.5rem;
  z-index: 60;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whatsapp-popup-content {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
  width: 20rem;
  border: 4px solid #22c55e;
  position: relative;
}

.whatsapp-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: #9ca3af;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.whatsapp-popup-close:hover {
  color: #4b5563;
}

.whatsapp-popup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.whatsapp-icon-large {
  width: 3rem;
  height: 3rem;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon-large svg {
  width: 1.75rem;
  height: 1.75rem;
}

.whatsapp-popup-header h3 {
  font-weight: 700;
  color: #1f2937;
  font-size: 1.125rem;
  margin: 0;
}

.whatsapp-popup-header p {
  font-size: 0.875rem;
  color: #4b5563;
  margin: 0;
}

.whatsapp-popup-message {
  color: #374151;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.whatsapp-start-btn {
  width: 100%;
  background: #22c55e;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
}

.whatsapp-start-btn:hover {
  background: #16a34a;
}

.whatsapp-start-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.whatsapp-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #22c55e;
  border-radius: 50%;
}

.whatsapp-status span:last-child {
  font-size: 0.75rem;
  color: #4b5563;
}

.whatsapp-response-time {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
  margin-bottom: 0;
}
.rotBx {
  transition: transform 1s ease;
}
.rotBx:hover {
  transform: rotate(360deg);
}
.shadow-lg {
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.175) !important;
  transition: transform 1s ease;
}
.shadow-lg:hover {
  box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.alignText {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}
.playful-shadow-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #edfefd;
}
.w-20_h-20 {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.from-purple-500 {
  background: linear-gradient(135deg, #c54be4 0%, #e441b6 100%);
}
.py-sp {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.playful-shadow-hover:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px #14b8a640,
    0 0 0 1px #14b8a61a;
}
/* Dropdown Menu Fix */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 14px !important;
  left: 0;
  margin-top: 0.5rem;
  background: white;
  border-radius: 0 0 0.75rem 0.75rem !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(20, 184, 166, 0.1);
  min-width: 200px;
  overflow: hidden;
  z-index: 1000;
  border-top: 0 !important;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(20, 184, 166, 0.1);
  color: #0d9488;
}

.dropdown-item.active {
  background: linear-gradient(90deg, #0d9488 0%, #06b6d4 100%);
  color: white;
}

@media screen and (max-width: 767px) {
  .padMobs {
    padding-top: 0 !important;
  }
  h1.hero-h1.text-white.mb-4.fw-bold {
    font-size: 2.5rem !important;
  }
  h2.section-title.fw-bold.mb-3 {
    font-size: 2rem !important;
  }
  .p-5.campBoxs {
    padding: 2rem 1rem !important;
  }
  .bg-gradient-teal .text-center .alignText {
    gap: 5px;
    flex-direction: column;
  }
  .titleNew {
    font-size: 2rem !important;
  }
  .padSpc.p-5 {
    padding: 2rem !important;
  }
  .partnersWraps .p-5.rounded-4.shadow-2xl.position-relative.overflow-hidden {
    padding: 15px !important;
  }
  .partnersWraps
    .p-5.rounded-4.shadow-2xl.position-relative.overflow-hidden
    .p-5 {
    padding: 2rem 1rem !important;
  }
}
@media screen and (max-width: 480px) {
  .enqSpc {
    padding: 2rem 1rem !important;
  }
  .social-btn {
    width: 100%;
  }
  .aligBtns {
    display: flex;
    flex-direction: column;
  }
}
