/* Popup overlay */
        .czpopup-overlay {
            display: flex;
            justify-content: center;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9999;
        }

        /* Popup content box */
        .czpopup-content {
            width: 90%;
            max-width: 600px;
            background-color: #5c5d78;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-align: center;
            color: #000;
            position: relative;
        }

        /* Close button styling */
        .czclose-button {
            position: absolute;
            top: 10px;
            right: 15px;
            width: 30px;
            height: 30px;
            background-color: #d32f2f;
            border: none;
            border-radius: 50%;
            font-size: 18px;
            font-weight: bold;
            color: white;
            text-align: center;
            line-height: 30px;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease, background-color 0.3s ease;
        }

        .czclose-button:hover {
            background-color: #b71c1c;
            transform: scale(1.1);
        }

        /* Popup inner content with image-like styling */
        .czpopup-content-inner {
            background-color: #f1b44c;
            padding: 20px;
            border-radius: 8px;
        }

        /* Title styles */
        .czpopup-content-inner h1 {
            font-size: 22px;
            font-weight: bold;
            color: #cf2635;
            
        }

        /* Admission details styling */
        .czpopup-content-inner p {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
        }

        /* Helpline styling */
        .czpopup-content-inner .helpline {
            font-size: 18px;
            font-weight: bold;
            margin-top: 10px;
        }

        /* Link buttons container */
        .czczpopup-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 20px;
        }

        /* Button styling */
        .czpopup-button {
            background-color: #d32f2f;
            color: white;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            text-align: center;
        }

        .czpopup-button:hover {
            background-color: #b71c1c;
        }
		.helpline a{
			color:#000!important;
		}

          /* Responsive styling for smaller screens */
        @media (max-width: 500px) {
            .czpopup-content-inner h1, .czpopup-content-inner h2 {
                font-size: 1.2rem;
            }
            .czpopup-content-inner p {
                font-size: 0.9rem;
            }
            .czpopup-button {
                width: 100%; /* Make buttons take full width */
            }
        }