body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
.serif {
    font-family: 'Merriweather', serif;
}

.hero-bg {
    background-image: linear-gradient(rgba(11, 25, 44, 0.85), rgba(11, 25, 44, 0.95)),
        url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Button Animations */
@keyframes shine {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    50%,
    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 100%
    );
    animation: shine 3s infinite;
}

 /* Grid background pattern for the modal interior */
        .modal-bg-pattern {
            background-size: 30px 30px;
            background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                              linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        }
        
        /* Modal Animation Classes */
        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-content.active {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

 .custom-scrollbar::-webkit-scrollbar {
            width: 8px;
        }
        .custom-scrollbar::-webkit-scrollbar-track {
            background: rgba(11, 27, 54, 0.5);
            border-radius: 4px;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: rgba(198, 156, 85, 0.3);
            border-radius: 4px;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: rgba(198, 156, 85, 0.6);
        }


       .modal-bg-patternb {
            background-size: 30px 30px;
            background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                              linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
        }

 /* Checkmark path animation preparation */
        .check-path {
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            animation: drawCheck 0.8s ease-out forwards;
            animation-delay: 0.3s;
        }