    .rd {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        padding: 25px 20px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease-in-out;
    }

    .rd h3 a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .rd h3 a:hover {
        color: #0f216e;
    }

    .rd p {
        margin: 5px 0;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .rd:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .btn-view {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 15px;
        color: #fff;
        border: 1px solid #0f216e;
        border-radius: 5px;
        text-decoration: none;
        transition: 0.3s;
    }

    .btn-view:hover {
        background: linear-gradient(to right, #0f216d, #000000);
        color: #fff;
            }

            
             /* --- Overlay --- */
        .modal-overlay {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            animation: fadeIn 0.3s ease;
            overflow-y: auto;
            padding: 20px;
        }

        /* --- Modal Box --- */
        .modal-content {
            background-color: #fff;
            margin: 50px auto;
            padding: 30px 25px;
            border-radius: 12px;
            max-width: 450px;
            width: 100%;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: slideIn 0.3s ease;
        }

        /* --- Title --- */
        .modal-title {
            text-align: center;
            font-size: 24px;
            color: #0f216e;
            margin-bottom: 25px;
        }

        /* --- Close Button --- */
        .modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            font-size: 28px;
            color: #999;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: #0f216e;
        }

        /* --- Inputs --- */
        #brochureForm input {
            width: 100%;
            padding: 12px 14px;
            margin-bottom: 16px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.2s;
        }

        #brochureForm input:focus {
            border-color: #0f216e;
            outline: none;
        }

        /* --- Submit Button --- */
        #brochureForm button[type="submit"] {
            width: 100%;
            padding: 12px;
            background-color: #0f216e;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        #brochureForm button[type="submit"]:hover {
            background-color: #0c1a57;
        }

        /* --- Animations --- */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-30px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* --- Responsive --- */
        @media (max-width: 480px) {
            .modal-content {
                margin: 60px auto;
                padding: 25px 20px;
            }

            .modal-title {
                font-size: 20px;
            }

            #brochureForm input,
            #brochureForm button[type="submit"] {
                font-size: 15px;
            }
        }