@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #0F3057 0%, #00587A 100%);
}

.section-transition {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.section-transition::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, transparent 49.5%, white 50%);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #008891;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.active::after {
    width: 100%;
}

.process-step {
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.02);
}

.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Mobile call button */
.call-now-button {
    display: none;
}

@media (max-width: 768px) {
    .call-now-button {
        display: flex;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 50;
    }
}

@media (min-width: 769px) {
    .call-now-button {
        display: none !important;
    }
}

.mobile-nav-link::after {
    display: none !important;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Image loading animation */
.image-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, transparent 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}
