
        /* Popup Modal Overlay */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease-out;
        }

        .popup-overlay.active {
            display: flex;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Popup Content */
        .popup-content {
            position: relative;
            margin: 0 auto;
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            background: white;
            /*border-radius: 20px;*/
            animation: slideUp 0.4s ease-out;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Close Button */
        .popup-close {
            position: absolute;
            top: 6px;
            right: 4px;
            background: #ef4444;
            border: none;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .popup-close:hover {
            background: #dc2626;
            transform: rotate(90deg);
        }

        /* Popup Image Section */
        .popup-image-section {
            position: relative;
            height: 550px;
            margin: 30px 0 0 0;
            /* background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); */
            /* border-radius: 20px 20px 0 0; */
            /* overflow: hidden; */
            padding: 7px 0px 0px 7px;
        }

        .popup-image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }

        .popup-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
        }

        .popup-title {
            color: white;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .popup-subtitle {
            color: white;
            font-size: 1.1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* Form Section */
        .popup-form-section {
            padding: 0px;
        }

        .form-heading {
            font-size: 1.8rem;
            font-weight: bold;
            color: #1e3a8a;
            margin-bottom: 0px;
            text-align: center;
            margin-top: 5px;
        }

        .form-subheading {
            font-size: 1rem;
            color: #6b7280;
            margin-bottom: 30px;
            text-align: center;
        }

        /* Form Controls */
        .form-label {
            font-weight: 600;
            color: #374151;
            margin-bottom: 16px;
        }

        .form-group {
    margin-bottom: 10px;
}

        .form-control,
        .form-select {
            padding: 12px 15px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
            outline: none;
        }

        textarea.form-control {
            min-height: 80px;
            resize: vertical;
        }

        /* Submit Button */
        .btn-submit {
            width: 92%;
            margin: 0 auto;
            padding: 15px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
        }

        .btn-submit i {
            font-size: 1.2rem;
        }

        /* Info Boxes */
        .info-boxes {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 2px solid #e5e7eb;
        }

        .info-box {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f9fafb;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .info-box:hover {
            background: #e0f2fe;
            transform: translateX(5px);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .info-text h6 {
            font-size: 0.9rem;
            color: #6b7280;
            margin-bottom: 5px;
        }

        .info-text p {
            font-size: 1rem;
            font-weight: 600;
            color: #1e3a8a;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .popup-content {
                width: 95%;
                max-height: 95vh;
            }

            .popup-form-section {
                padding: 30px 20px;
            }

            .popup-image-section {
                height: 200px;
            }

            .popup-title {
                font-size: 1.5rem;
            }

            .popup-subtitle {
                font-size: 0.95rem;
            }

            .info-boxes {
                grid-template-columns: 1fr;
            }
        }

        /* Demo Button (Remove in actual implementation) */
        .demo-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            padding: 15px 30px;
            background: linear-gradient(135deg, #338b1f 0%, #228349 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
            z-index: 1000;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
  button.btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: #fff;
    opacity: 1;
    width: 36px;
    border-radius: 100%;
    height: 36px;
    z-index: 99999;
}

.info{color:#dc2626;}