/* Custom styles to apply the Inter font */
body, html {
    font-family: 'Inter', sans-serif;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom gradient text */
.gradient-text {
    background: linear-gradient(90deg, #818cf8, #d8b4fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Subtle background glow effect for hero section */
.hero-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, rgba(167, 139, 250, 0) 70%);
    z-index: -1;
    pointer-events: none;
}



/* Mobile Navigation */
@media (max-width: 767px) { /* Small screens */
    /* Style for the mobile menu when open */
    .mobile-menu-open {
        display: flex !important; /* Show mobile navigation */
        flex-direction: column;
        /* Add other mobile menu styling here */
    }
}

/* Team Section Styles */
#team .text-center > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

#team .text-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonial Section Styles */
/* Pulse animation for how-it-works circles */
@keyframes pulse-sm {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}


.max-w-4xl .ubyx-name {
 width: 30rem; /* Adjust as needed for granular control of the image size */
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 600px; /* Limit the form width */
    margin: 2rem auto; /* Center the form and add vertical space */
    padding: 2rem;
    background-color: #1f2937; /* Dark background */
    border-radius: 0.5rem; /* Rounded corners */
    color: #e5e7eb; /* Light text color */
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
}

.contact-form-container label {
    display: block; /* Labels on their own line */
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container select {
    width: 100%; /* Full width */
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #4b5563; /* Darker border */
    border-radius: 0.25rem;
    background-color: #374151; /* Slightly lighter dark background */
    color: #e5e7eb; /* Light text color */
}

.contact-form-container textarea {
 width: 100%; /* Full width */
 padding: 0.75rem;
 margin-bottom: 1.5rem;
 border: 1px solid #4b5563; /* Darker border */
 border-radius: 0.25rem;
 background-color: #374151; /* Slightly lighter dark background */
 color: #e5e7eb; /* Light text color */
}

/* Style for the submit button */
.contact-form-container button[type="submit"] {
    display: block; /* Button on its own line */
    width: 100%; /* Full width */
    padding: 0.75rem;
    background-color: #6366f1; /* Primary button color (indigo) */
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out; /* Smooth hover effect */
}

.contact-form-container button[type="submit"]:hover {
    background-color: #4f46e5; /* Darker indigo on hover */
}

/* Style for success/error messages */
.form-message {
    text-align: center;
    margin-top: 1rem;
}

.form-message.success {
    color: #34d399; /* Green for success */
}

.form-message.error {
    color: #f87171; /* Red for error */
}