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

body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #000815 0%, #012035 110%);
    min-height: 100vh;
    margin: 0;
}

.title-font {
    font-family: 'Montserrat', serif;
}


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

.service-card:hover {
       transform: translateY(-7px) scale(1.02);
       box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
       background: rgba(26, 70, 100, 0.2)
}


.poem-line {
    position: relative;
}

.service-feature {
    font-size: 1rem;
    color: #d1d5db;
}

.service-best-for {
    font-size: 0.85rem;
    color: #d1d5db;
}

.hero-text {
    font-weight: 700;
    font-stretch: condensed;
    letter-spacing: -0.025em;
}

.glass-button {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.glass-button-blue {
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(16px);
    color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-button-blue:hover {
    background: rgba(59, 130, 246, 0.25);
    transform: translateY(-1px);
}

.nav-link {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white;
}

/* Fade-in animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(10px);
}

.fade-in-delay-1 {
    transition-delay: 0.2s;
}

.fade-in-delay-2 {
    transition-delay: 0.4s;
}

.fade-in-delay-3 {
    transition-delay: 0.6s;
}

/* Hero section animations (immediate on page load) */
.hero-section .fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.hero-section .fade-in-delay-1 {
    animation-delay: 0.2s;
}

.hero-section .fade-in-delay-2 {
    animation-delay: 0.4s;
}

