
        /* Custom CSS for animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        
        /* Animation for the modal */
       
        .modal-animate {
            animation: fadeIn 0.3s ease-out forwards;
        }
        
        .modal-overlay {
            background-color: rgba(0, 0, 0, 0.6);
        }
    
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

       
        /* Animation for modal */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-fade-in {
            animation: fadeIn 0.3s ease-out forwards;
        }
        
        /* Custom scrollbar for modal content */
        .overflow-y-auto::-webkit-scrollbar {
            width: 6px;
        }
        .overflow-y-auto::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        .overflow-y-auto::-webkit-scrollbar-thumb {
            background: #cbd5e0;
            border-radius: 10px;
        }
        .overflow-y-auto::-webkit-scrollbar-thumb:hover {
            background: #a0aec0;
        }


        
        .nav-link::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #2F24B6;
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .active-nav::after {
            width: 100%;
        }
    
         /* Custom clip-path for arrow shapes */
         .clip-path-chevron-right,
        .clip-path-chevron-both,
        .clip-path-chevron-left {
            clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
           
            .clip-path-chevron-right,
            .clip-path-chevron-both,
            .clip-path-chevron-left {
                clip-path: none;
            }
        }