
@keyframes plinkoBounce {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(20vw, 10vh); }
  20%  { transform: translate(40vw, 0vh); }
  30%  { transform: translate(60vw, 20vh); }
  40%  { transform: translate(80vw, 10vh); }
  50%  { transform: translate(60vw, 30vh); }
  60%  { transform: translate(40vw, 50vh); }
  70%  { transform: translate(20vw, 30vh); }
  80%  { transform: translate(0vw, 60vh); }
  90%  { transform: translate(20vw, 80vh); }
  100% { transform: translate(0, 0); }
}

@keyframes fireGlow {
  0%   { text-shadow: 0 0 6px #ff6600, 0 0 10px #ff3300, 0 0 16px #ff0000; }
  25%  { text-shadow: 0 0 8px #ff9900, 0 0 12px #ff6600, 0 0 18px #ff3300; }
  50%  { text-shadow: 0 0 10px #ffcc00, 0 0 14px #ff9900, 0 0 20px #ff6600; }
  75%  { text-shadow: 0 0 8px #ff9900, 0 0 12px #ff6600, 0 0 18px #ff3300; }
  100% { text-shadow: 0 0 6px #ff6600, 0 0 10px #ff3300, 0 0 16px #ff0000; }
}

#cornerMessage {
  position: fixed;
  top: 0;
  left: 0;
  font-size: 2.4rem;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  font-weight: bold;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 16px 28px;
  border-radius: 18px;
  z-index: 9999;
  display: none;
  pointer-events: none;
  animation: plinkoBounce 10s linear infinite, fireGlow 2s ease-in-out infinite;
}

.dropdown {
  max-width: 300px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%) scale(0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 20px 20px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 3;
}
body {
  background: url('images/clouds.jpg') no-repeat center center fixed;
  background-size: cover;
}


body, html {
  margin: 0;
  padding: 0;
  font-family: Cambria, Georgia, serif;
  height: 100%;
  overflow: hidden;

  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;}

.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}




.logo.magic {
  animation: fire-pulse 1.4s ease-in-out;
  will-change: transform, filter;
}





  50% {
    transform: translate(-50%, -50%) scale(1.15);
    filter: drop-shadow(0 0 20px rgba(255, 150, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 80, 0, 0.6));
  }
  100% {
    transform: translate(-50%, -45%) scale(1);
    filter: drop-shadow(0 0 4px rgba(255, 100, 0, 0.5));
  }
}



.mac-close-btn:hover {
  background-color: #c0c0c0;
  transform: scale(1.15);
}



.dropdown.show {
  transform: translate(-50%, -45%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.dropdown.hide {
  opacity: 0;
  pointer-events: none;
}

.dropdown a {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dropdown a:hover {
  background-color: rgba(0, 119, 204, 0.25);
  color: #003366;
  transform: scale(1.05);
}

.panel {
  overflow: hidden;
  backface-visibility: hidden;
  perspective: 1000px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  height: 80%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  
  flex-direction: column;
  z-index: 4;

  will-change: transform, opacity;}


.panel.show {
  display: flex;
  animation: swipeUpOpen 0.5s ease-in-out;
  transition: transform 0.3s ease, opacity 0.3s ease;
}



.scroll-content {
  overflow-x: hidden;
  padding: 1.5rem;
  overflow-y: scroll;
  scroll-behavior: smooth;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
  to { opacity: 1; transform: translate(-50%, -45%) scale(1); }
}

.dropdown a {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  transition: all 0.3s ease;
}

.dropdown a:hover {
  background-color: rgba(0, 119, 204, 0.15);
  color: #0077cc;
  transform: scale(1.05);
}

.dropdown a:active {
  background-color: #0077cc;
  color: white;
  transform: scale(0.97);
}

.section h2 {
  background: rgba(200, 230, 255, 0.9);
  backdrop-filter: blur(6px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-size: 1.8rem;
  color: #003366;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: Cambria, Georgia, serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

body, html {
  font-family: Cambria, Georgia, serif;

  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;}


.panel.hide {
  animation: swipeDownClose 0.5s ease-in-out forwards;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.dropdown.hide {
  animation: fadeOutMenu 0.25s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    pointer-events: none;
  }
}

@keyframes fadeOutMenu {
  to {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.95);
    pointer-events: none;
  }
}

.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Improve scrollbar look */
.scroll-content::-webkit-scrollbar {
  width: 14px;
}

.scroll-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.scroll-content::-webkit-scrollbar-thumb {
  background: rgba(0, 119, 204, 0.6);
  border-radius: 4px;
}

.scroll-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 119, 204, 0.8);
}

/* Optional: thicker underline for close button "X" if it's underlined */




.mac-close-btn:hover {
  background-color: #cc0000;
  color: white;
  transform: rotate(15deg) scale(1.15);
}

/* Footer styling */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  z-index: 5;
}

#clock {
  position: fixed;
  top: 16px;
  right: 16px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  background: linear-gradient(45deg, red, orange, yellow, green, cyan, blue, violet);
  background-size: 400% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  padding: 12px 20px;
  border-radius: 10px;
  animation: rainbowShift 4s linear infinite;
  z-index: 10;
  transition: filter 0.2s ease-in-out;
}
@keyframes rainbowShift {
  to {
    background-position: 200% center;
  }
}
@keyframes rainbowShift {
  to {
    background-position: 200% center;
  }
}

/* Improve mobile panel sizing */
@media (max-width: 600px) {
  .panel {
  overflow: hidden;
  backface-visibility: hidden;
  perspective: 1000px;
    width: 95%;
    height: 85%;
    max-width: none;
    padding: 0;
  
  will-change: transform, opacity;}

  .scroll-content {
  overflow-x: hidden;
    padding: 1rem;
  }

  

  .dropdown a {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 1.1rem;
    padding: 14px 0;
  }

  

  footer {
    font-size: 0.85rem;
    padding: 0.8rem;
  }

  #clock {
  position: fixed;
  top: 16px;
  right: 16px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  background: linear-gradient(45deg, red, orange, yellow, green, cyan, blue, violet);
  background-size: 400% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  padding: 12px 20px;
  border-radius: 10px;
  animation: rainbowShift 4s linear infinite;
  z-index: 10;
  transition: filter 0.2s ease-in-out;
}
@keyframes rainbowShift {
  to {
    background-position: 200% center;
  }
}
@keyframes rainbowShift {
  to {
    background-position: 200% center;
  }
}
}

.panel,
.dropdown,


.panel {
  overflow: hidden;
  backface-visibility: hidden;
  perspective: 1000px;
  transition: transform 0.3s ease, opacity 0.3s ease;

  will-change: transform, opacity;}





.close-home {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 18px;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.close-home:hover {
  color: #cc0000;
  transform: scale(1.2);
  text-shadow: 0 0 8px rgba(255, 50, 50, 0.6);
}

.scroll-content {
  overflow-x: hidden;
  padding: 1.5rem;
}

.section {
  margin-bottom: 2rem;
}


/* Dropdown rolodex scroll */



.dropdown a {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  scroll-snap-align: start;
}


/* Custom dropdown scrollbar */

.dropdown::-webkit-scrollbar {
  width: 14px;
}
.dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.dropdown::-webkit-scrollbar-thumb {
  background: rgba(0, 119, 204, 0.7);
  border-radius: 4px;
}
.dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 119, 204, 1);
}

#logo:focus {
  outline: none;
  box-shadow: none;
}


.panel p { font-weight: 500; }


.close-home-mac {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  line-height: 36px;
  text-align: center;
  color: white;
  background: linear-gradient(145deg, #ff5f57, #ff1f1f);
  border: none;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: fadeInX 0.4s ease-out;
}

.close-home-mac:hover {
  background: linear-gradient(145deg, #ff3b30, #ff1a1a);
  transform: scale(1.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}



@keyframes fadeInX {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.close-home-mac {
  animation: fadeInX 0.4s ease-out;
}



.swipe-hint {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 0.85rem;
  color: #222;
  opacity: 0.7;
  font-weight: 500;
  z-index: 9;
  pointer-events: none;
  animation: fadeInHint 1s ease 1.2s forwards;
  opacity: 0;
}

@keyframes fadeInHint {
  to { opacity: 0.7; }
}



.faq-answer {
  display: none;
  padding: 16px;
  background-color: #f0f8ff;
  border-left: 4px solid #0077cc;
  border-radius: 0 0 8px 8px;
  margin-bottom: 12px;
}

.faq-item.open .faq-answer {
  display: block;
}



.faq-question {
  background: rgba(255, 255, 255, 0.85);
  color: #003366;
  font-family: Cambria, Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
  margin-bottom: 12px;
}

.faq-question:hover {
  background: rgba(235, 245, 255, 1);
  transform: translateY(-1px);
}

.faq-answer {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  padding: 18px 24px;
  border-left: 4px solid #0077cc;
  border-radius: 0 0 12px 12px;
  margin-top: -10px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #222;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Pricing Bullet Points */
.pricing-points {
  list-style: disc;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.pricing-points li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Payment Logo Button Style */


.payment-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@keyframes logo-bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}



.payment-logo:hover {
  box-shadow: 0 0 12px rgba(0, 119, 204, 0.8), 0 4px 14px rgba(0,0,0,0.15);
  transform: scale(1.05);
}

.section h3 {
  text-align: center;
  font-size: 1.3rem;
  color: #003366;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}



.payment-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 119, 204, 0.3);
}

.payment-logo:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.contact-button {
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-button:hover {
  background-color: #005fa3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

#lightning-effect {
  position: fixed;
  width: 100px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(0,255,255,0.9) 0%, rgba(0,153,255,0.6) 40%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 20;
  opacity: 0;
  transform: scale(0.8);
  transition: none;
}

#lightning-effect.active {
  animation: lightning-burst 0.4s ease-out;
}

@keyframes lightning-burst {
  0% {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px #00ffff) brightness(2);
  }
  50% {
    opacity: 0.6;
    transform: scale(1);
    filter: drop-shadow(0 0 35px #00ccff);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

/* Welding lightning sparks */
#lightning-effect {
  position: fixed;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 99;
  opacity: 0;
  transform: translate(-50%, -50%);
}

#lightning-effect.active::before,
#lightning-effect.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 10%, rgba(0,255,255,0.4) 30%, transparent 70%);
  animation: spark-flash 0.4s ease-out;
  filter: drop-shadow(0 0 15px #00ffff) drop-shadow(0 0 25px #00ccff);
}

#lightning-effect.active::after {
  background: radial-gradient(circle, rgba(255,255,255,0.5) 5%, rgba(255,255,0,0.3) 40%, transparent 70%);
  transform: rotate(45deg);
  animation-delay: 0.05s;
}

@keyframes spark-flash {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(2);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}


.mac-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: #cc0000;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;

  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: #cc0000;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.payment-logo {
  height: 50px;
  padding: 10px 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


@keyframes swipeDownClose {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 80%) scale(0.9);
  }
}

@keyframes swipeUpOpen {
  0% {
    opacity: 0;
    transform: translate(-50%, 80%) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}



@keyframes fire-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 0 2px rgba(255, 100, 0, 0.3));
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    filter: drop-shadow(0 0 20px rgba(255, 150, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 80, 0, 0.6));
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 0 2px rgba(255, 100, 0, 0.3));
  }
}


.logo:hover {
  transform: translate(-50%, -50%) scale(1.05);
  filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.6)) drop-shadow(0 0 16px rgba(0, 191, 255, 0.4));
}





.logo:hover {
  transform: translate(-50%, -50%) scale(1.05);
  filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.6)) drop-shadow(0 0 16px rgba(0, 191, 255, 0.4));
}


.logo {
  position: fixed;
  top: calc(50% + 50px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease;
  filter: none;
}


.payment-box {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 123, 255, 0.2);
  margin: 2rem auto;
  text-align: center;
  max-width: 600px;
}

.payment-details p {
  font-size: 1rem;
  color: #003366;
  margin: 0.5rem 0;
  font-weight: 500;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}


.payment-details p {
  font-size: 1rem;
  color: #003366;
  margin: 0.75rem 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
}

.payment-icons a {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.payment-icons a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.payment-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.payment-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  background: white;
  color: #003366;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  max-width: 300px;
  width: 100%;
  justify-content: center;
}

.payment-button img {
  height: 28px;
  border-radius: 6px;
}

.payment-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.3);
}

.payment-button.venmo:hover {
  background: #3D95CE;
  color: white;
}
.payment-button.zelle:hover {
  background: #7030A0;
  color: white;
}
.payment-button.paypal:hover {
  background: #00457C;
  color: white;
}

#floating-contact-button {
  display: block !important;
  opacity: 1 !important;
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #0077cc;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease;
}

#floating-contact-button:hover {
  background-color: #005fa3;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Floating Contact Button Enhancements */
#floating-contact-button {
  display: block !important;
  opacity: 1 !important;
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #0077cc;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounceIn 0.8s ease forwards;
  opacity: 0;
}

/* Show after slight delay */
@keyframes bounceIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

#floating-contact-button:hover {
  background-color: #005fa3;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Hide button on screens wider than 768px */


@media (max-width: 768px) {
  #floating-contact-button {
  display: block !important;
  opacity: 1 !important;
    display: block !important;
    opacity: 1 !important;
  }
}


#floating-contact-button {
  display: block !important;
  opacity: 1 !important;
  width: 60px;
  height: 60px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
  padding: 0;
  border-radius: 50%;
}




@keyframes subtleBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

#floating-contact-button {
  display: block !important;
  opacity: 1 !important;
  animation: subtleBounce 2.4s infinite ease-in-out;
}


@keyframes subtleBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

#floating-contact-button {
  animation: subtleBounce 2.4s infinite ease-in-out;
}

textarea { resize: none; }


/* Improved form aesthetics */
.styled-form {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(240, 240, 255, 0.95));
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  max-width: 720px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: slideFadeIn 0.7s ease both;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.styled-form label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #003366;
  font-size: 1rem;
}

.styled-form input,
.styled-form textarea,
.styled-form select {
  padding: 0.85rem 1rem;
  border: 1px solid #bbb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.styled-form input:focus,
.styled-form textarea:focus,
.styled-form select:focus {
  outline: none;
  border-color: #0077cc;
  box-shadow: 0 0 5px rgba(0, 119, 204, 0.5);
}

.contact-button {
  padding: 14px 24px;
  font-size: 1.1rem;
  font-weight: bold;
  background: linear-gradient(to right, #0077cc, #005fa3);
  color: white;
  border: none;
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  width: fit-content;
  align-self: flex-start;
}

.contact-button:hover {
  background: linear-gradient(to right, #005fa3, #004080);
  transform: scale(1.03);
}

/* Subtle panel entrance */
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure scrolling content */
.panel .scroll-content {
  overflow-y: auto;
  max-height: 100%;
  padding: 1.5rem;



.logo.active {
  transform: translate(-50%, -50%) scale(1.15);
  filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.8)) drop-shadow(0 0 40px rgba(0, 191, 255, 0.6));



@keyframes slideIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}

#clock {
  position: fixed;
  top: 16px;
  right: 16px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  background: linear-gradient(45deg, red, orange, yellow, green, cyan, blue, violet);
  background-size: 400% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  padding: 12px 20px;
  border-radius: 10px;
  animation: rainbowShift 4s linear infinite;
  z-index: 10;
  transition: filter 0.2s ease-in-out;
}
@keyframes rainbowShift {
  to {
    background-position: 200% center;
  }
}
@keyframes rainbowShift {
  to {
    background-position: 200% center;
  }
}


@keyframes cornerBounce {
  0%   { top: 0; left: 0; }
  25%  { top: 0; right: 0; left: auto; }
  50%  { bottom: 0; right: 0; top: auto; }
  75%  { bottom: 0; left: 0; right: auto; }
  100% { top: 0; left: 0; bottom: auto; right: auto; }
}

#cornerMessage {
  position: fixed;
  font-size: 1.25rem;
  font-weight: bold;
  color: yellow;
  background: rgba(0, 0, 0, 0.6);
  padding: 12px 18px;
  border-radius: 12px;
  z-index: 50;
  animation: cornerBounce 20s linear infinite;
  pointer-events: none;
}
