@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html {
scroll-behavior: smooth;
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.animate-fadeIn {
animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.backdrop-blur-xl {
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
}
.backdrop-blur-md {
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.glass-effect {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.gradient-teal-cyan {
background: linear-gradient(135deg, #14B8A6 0%, #06B6D4 100%);
}
.gradient-slate-teal {
background: linear-gradient(to bottom right, #0f172a 0%, #134e4a 50%, #0f172a 100%);
}
.text-gradient-teal {
background: linear-gradient(to right, #14B8A6, #06B6D4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.nav-active::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(to right, #14B8A6, #06B6D4);
border-radius: 9999px;
}
.mobile-menu {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-in-out;
}
.mobile-menu.active {
max-height: 500px;
}
.form-input:focus {
outline: none;
border-color: #14B8A6;
box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}
.btn-primary {
background: linear-gradient(135deg, #14B8A6 0%, #06B6D4 100%);
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: scale(1.05);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-8px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.rotate-on-hover {
transition: transform 0.5s ease;
}
.rotate-on-hover:hover {
transform: rotate(0deg) !important;
}
.stat-card {
background: linear-gradient(to bottom right, #f9fafb 0%, #d1fae5 100%);
}
.service-card-img {
transition: transform 0.5s ease;
}
.service-card-img:hover {
transform: rotate(0deg);
}
@media (max-width: 768px) {
.hero-title {
font-size: 3rem;
}
.section-title {
font-size: 2.5rem;
}
}