/* Import fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');


/* Container for the reCAPTCHA badge */
.grecaptcha-badge {
display: none;
}


/* Apply fonts to elements */
body {
  font-family: 'Inter', sans-serif;
}

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

/* Example usage */
h1 {
  font-weight: 700;
}

h2 {
  font-weight: 600;
}

.blogpost h2, .blogpost h3, .blogpost h4 {
    margin-top: 15px;
}

.blogpost p {
    margin-bottom: 15px;
}

p {
  font-weight: 400;
}

body {
    overflow-x: hidden;
}

[data-aos] {
    overflow: hidden;
}

.typewriter span {
    border-right: .1em solid #fff;
    white-space: nowrap;
    overflow: hidden;
}

.dropdown-menu {
    display: none;
}

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

/* Keyframes for animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.75; }
}

@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); }
}

/* General animations */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

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

/* Custom gradients and buttons */
.bg-gradient-custom {
    background: linear-gradient(135deg, #7c3aed, #db2777);
}

.futuristic-button {
    background-color: #7c3aed;
    color: white;
    padding: 0.50rem 1.0rem;
    border-radius: 9999px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

.futuristic-button:hover {
    background-color: #6d28d9;
    transform: translateY(-2px);
}

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

.futuristic-button-outline {
    background-color: transparent;
    color: white;
    border: 2px solid #7c3aed;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: bold;
    transition: all 0.3s;
}

.futuristic-button-outline:hover {
    background-color: rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
}

img.h-16.mb-6.invert-img {
    filter: invert(1) brightness(1000);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column-reverse;
    }
    .md\:w-1/2 {
        width: 100%;
    }
    .md\:justify-end {
        justify-content: center;
    }
}




.blogpost article h1 {
    line-height: 1.3;
}