@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&display=swap');

* {
    font-family: "Baloo Bhaijaan 2", sans-serif;
    font-size: 1rem;
    background-color: rgb (248, 240, 255);
    color:rgb(75, 115, 170) ;
    direction: rtl;
     background-color:rgb(240,248,255);

} body {
            font-family: 'Baloo Bhaijaan 2', sans-serif;
            background-color: #f0f6fc; /* لون الخلفية الأزرق الفاتح جداً */
            padding: 10px;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
        .container {
            max-width: 800px;
            width: 100%;
            text-align: center;
        }
        h1 {
            color: #466289; /* لون العنوان الأزرق الداكن */
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        h2 {
            color: #466289; /* لون العنوان الأزرق الداكن */
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .subtitle {
            color: #6a829a; /* لون النص الرمادي المزرق */
            font-size: 18px;
            margin-bottom: 30px;
        }
        textarea {
            width: 100%;
            height: 140px;
            padding: 20px;
            font-size: 17px;
            border-radius: 12px; /* حواف دائرية أنيقة */
            border: 1px solid #d1dce8; /* لون إطار خفيف */
            background-color: #ffffff;
            resize: none;
            margin-bottom: 25px;
            box-sizing: border-box;
            color: #333;
            line-height: 1.6;
        }
        textarea::placeholder {
            color: #9cb1c4; /* لون النص التوضيحي */
        }
        textarea:focus {
            outline: none;
            border-color: #5196e8;
            box-shadow: 0 0 0 3px rgba(81, 150, 232, 0.15);
        }
        .main-btn {
            background-color: #4a90e2; /* لون الزر الأزرق الزاهي */
            color: white;
            padding: 16px 25px;
            border: none;
            border-radius: 10px; /* حواف الزر المقوسة */
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s ease;
        }
        .main-btn:hover {
            background-color: #357abd;
        }
        .main-btn:disabled {
            background-color: #a0b2c1;
            cursor: not-allowed;
        }
        #loading {
            display: none;
            color: #6a829a;
            font-style: italic;
            margin-top: 20px;
            font-size: 16px;
        }
        .result-box {
            display: none;
            margin-top: 30px;
            padding: 30px;
            background-color: #ffffff;
            border-right: 5px solid #4a90e2;
            border-radius: 12px;
            text-align: right;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        .support-text {
            font-size: 18px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 25px;
        }
        .action-btn {
            background-color: rgb(55, 115, 170);;
            color: white;
            display: inline-block;
            text-decoration: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 16px;
            transition: 0.3s;
           
        }
        .action-btn:hover {
            background-color:rgb(55, 115, 170);;
        }