/* Custom Styles and Resets */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar for a more premium feel */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f5f4; 
}

::-webkit-scrollbar-thumb {
    background: #d6d3d1; 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a29e; 
}

/* Simple fade-in animation utility */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Updates for New Pages */

/* Timeline styling for Group Coaching */
.timeline-line {
    /* Ensures line stays centered or left aligned properly */
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 2rem; /* Align with icons on mobile */
        transform: none;
    }
}

/* Pricing Card Hover Effect */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
