@media (max-width: 768px) {
    .mobile-menu-link {
        margin: 10px 0px;
    }
}

h1 h2 h3 h4 h5 h6 {
    font-family: 'Instrument Sans', sans-serif;
}

@keyframes slow-drift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(-10px, -40px) rotate(180deg);
    }

    75% {
        transform: translate(-30px, -10px) rotate(270deg);
    }
}

@keyframes slow-drift-reverse {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-20px, 20px) rotate(-90deg);
    }

    50% {
        transform: translate(10px, 40px) rotate(-180deg);
    }

    75% {
        transform: translate(30px, 10px) rotate(-270deg);
    }
}

.animate-slow-drift {
    animation: slow-drift 20s ease-in-out infinite;
}

.animate-slow-drift-reverse {
    animation: slow-drift-reverse 25s ease-in-out infinite;
}

.footer-copilot-text {
    font-size: clamp(3.5rem, 12vw, 10.5rem);
    background: linear-gradient(358.4deg, #141414 25.17%, #7C7C7C 89.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
}

@media only screen and (max-width: 480px) {
    .footer-copilot-text {
        font-size: clamp(2.8rem, 12vw, 10.5rem);
    }
}

.wpcf7-not-valid-tip {
    font-size: 12px;
}

.animate-float {
    animation: float-vertical 10s ease-in-out infinite;
}

@keyframes float-vertical {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-20px);
        /* Up */
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(15px);
        /* Down */
    }

    100% {
        transform: translateY(0);
    }
}

/* For Webkit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background: #293145;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #293145;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #293145 #0d0d0d;
}

.custom-submit-button {
  position: relative;
  width: 100%;
  background-image: linear-gradient(to right, #dc2626, #b91c1c); /* from-red-600 to-red-700 */
  color: white;
  padding: 0.75rem 1rem; /* py-3 px-4 */
  border-radius: 0.75rem; /* rounded-xl */
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: scale(1);
  font-size: 0.875rem; /* text-sm */
}

.custom-submit-button:hover {
  background-image: linear-gradient(to right, #ef4444, #dc2626); /* hover:from-red-500 to-red-600 */
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.25); /* red-500/25 */
}

.custom-submit-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transform: skewX(-12deg) translateX(-100%);
  transition: transform 0.7s ease-in-out;
}

.custom-submit-button:hover::before {
  transform: skewX(-12deg) translateX(100%);
}

.custom-submit-button span {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
}

.custom-submit-button svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.custom-submit-button:hover svg {
  transform: translateX(0.25rem);
}
.wpcf7-spinner {
    visibility: visible;
    display: none;
}

.blog-cta-url {
    text-decoration: none !important;
    color: #fff !important;
}
.post-content a { 
    text-decoration: none !important;
}
