
/* Navbar styles */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Custom scroll behavior */
html {
    scroll-behavior: smooth;
}
/* Custom hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Links styling */
a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}
/* Section spacing */
section {
    scroll-margin-top: 100px;
}

/* Process section alignment */
#process .relative > div {
    position: relative;
    z-index: 1;
}

#process .md\:grid-cols-2 > div {
    min-height: 140px;
}
/* Form input styling */
input::placeholder {
    color: #a1a1aa;
    opacity: 1;
}

/* Custom shadow for cards */
.custom-shadow {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}